diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..beed8ea --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: ~ + pull_request: ~ + schedule: + - cron: '0 12 * * *' + +jobs: + test: + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: npm ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - name: Run Playwright tests + run: npm test + - uses: actions/upload-artifact@v3 + if: always() + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 diff --git a/.gitignore b/.gitignore index db7f137..138c28d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,7 @@ !package.json !npm-shrinkwrap.json !README.adoc +!test/ +test/output/ +!playwright.config.ts +!.github/ \ No newline at end of file diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 1a21f58..f3b74f7 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -19,6 +19,11 @@ "bin": { "decktape": "decktape.js" }, + "devDependencies": { + "@playwright/test": "1.28.1", + "koa": "2.14.1", + "koa-static": "5.0.0" + }, "engines": { "node": ">=12.20" } @@ -39,11 +44,27 @@ "pako": "^1.0.10" } }, + "node_modules/@playwright/test": { + "version": "1.28.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.28.1.tgz", + "integrity": "sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "playwright-core": "1.28.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==", - "optional": true + "devOptional": true }, "node_modules/@types/yauzl": { "version": "2.10.0", @@ -62,6 +83,19 @@ "node": ">=10.0.0" } }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", @@ -147,6 +181,19 @@ "node": "*" } }, + "node_modules/cache-content-type": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", + "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", + "dev": true, + "dependencies": { + "mime-types": "^2.1.18", + "ylru": "^1.2.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/chalk": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", @@ -163,11 +210,55 @@ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "dev": true, + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/cross-fetch": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", @@ -192,11 +283,57 @@ } } }, + "node_modules/deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", + "dev": true + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, "node_modules/devtools-protocol": { "version": "0.0.1045489", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz", "integrity": "sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ==" }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", @@ -205,6 +342,12 @@ "once": "^1.4.0" } }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, "node_modules/extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", @@ -240,6 +383,15 @@ "@xmldom/xmldom": "^0.8.3" } }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", @@ -283,6 +435,71 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/http-assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", + "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", + "dev": true, + "dependencies": { + "deep-equal": "~1.0.1", + "http-errors": "~1.8.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -328,6 +545,152 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "dev": true, + "dependencies": { + "tsscmp": "1.0.6" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/koa": { + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.14.1.tgz", + "integrity": "sha512-USJFyZgi2l0wDgqkfD27gL4YGno7TfUkcmOe6UOLFOVuN+J7FwnNu4Dydl4CUQzraM1lBAiGed0M9OVJoT0Kqw==", + "dev": true, + "dependencies": { + "accepts": "^1.3.5", + "cache-content-type": "^1.0.0", + "content-disposition": "~0.5.2", + "content-type": "^1.0.4", + "cookies": "~0.8.0", + "debug": "^4.3.2", + "delegates": "^1.0.0", + "depd": "^2.0.0", + "destroy": "^1.0.4", + "encodeurl": "^1.0.2", + "escape-html": "^1.0.3", + "fresh": "~0.5.2", + "http-assert": "^1.3.0", + "http-errors": "^1.6.3", + "is-generator-function": "^1.0.7", + "koa-compose": "^4.1.0", + "koa-convert": "^2.0.0", + "on-finished": "^2.3.0", + "only": "~0.0.2", + "parseurl": "^1.3.2", + "statuses": "^1.5.0", + "type-is": "^1.6.16", + "vary": "^1.1.2" + }, + "engines": { + "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" + } + }, + "node_modules/koa-compose": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", + "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", + "dev": true + }, + "node_modules/koa-convert": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", + "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", + "dev": true, + "dependencies": { + "co": "^4.6.0", + "koa-compose": "^4.1.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/koa-send": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", + "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "http-errors": "^1.7.3", + "resolve-path": "^1.4.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/koa-static": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", + "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", + "dev": true, + "dependencies": { + "debug": "^3.1.0", + "koa-send": "^5.0.0" + }, + "engines": { + "node": ">= 7.6.0" + } + }, + "node_modules/koa-static/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -349,6 +712,15 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", @@ -368,6 +740,18 @@ } } }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -376,11 +760,26 @@ "wrappy": "1" } }, + "node_modules/only": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", + "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==", + "dev": true + }, "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -405,6 +804,18 @@ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" }, + "node_modules/playwright-core": { + "version": "1.28.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.28.1.tgz", + "integrity": "sha512-3PixLnGPno0E8rSBJjtwqTwJe3Yw72QwBBBxNoukIj3lEeBNXwbNiKrNuB1oyQgTBw5QHUhNO3SteEtHaMK6ag==", + "dev": true, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -475,6 +886,55 @@ "node": ">= 6" } }, + "node_modules/resolve-path": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", + "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", + "dev": true, + "dependencies": { + "http-errors": "~1.6.2", + "path-is-absolute": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/resolve-path/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/resolve-path/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/resolve-path/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/resolve-path/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", @@ -508,6 +968,21 @@ } ] }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -547,6 +1022,15 @@ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -557,6 +1041,28 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, + "node_modules/tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "dev": true, + "engines": { + "node": ">=0.6.x" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", @@ -576,6 +1082,15 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -623,6 +1138,15 @@ "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } + }, + "node_modules/ylru": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.3.2.tgz", + "integrity": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } } }, "dependencies": { @@ -642,11 +1166,21 @@ "pako": "^1.0.10" } }, + "@playwright/test": { + "version": "1.28.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.28.1.tgz", + "integrity": "sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ==", + "dev": true, + "requires": { + "@types/node": "*", + "playwright-core": "1.28.1" + } + }, "@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==", - "optional": true + "devOptional": true }, "@types/yauzl": { "version": "2.10.0", @@ -662,6 +1196,16 @@ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.6.tgz", "integrity": "sha512-uRjjusqpoqfmRkTaNuLJ2VohVr67Q5YwDATW3VU7PfzTj6IRaihGrYI7zckGZjxQPBIp63nfvJbM+Yu5ICh0Bg==" }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, "agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", @@ -713,6 +1257,16 @@ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" }, + "cache-content-type": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", + "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", + "dev": true, + "requires": { + "mime-types": "^2.1.18", + "ylru": "^1.2.0" + } + }, "chalk": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", @@ -723,11 +1277,42 @@ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "dev": true, + "requires": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + } + }, "cross-fetch": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", @@ -744,11 +1329,47 @@ "ms": "2.1.2" } }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, "devtools-protocol": { "version": "0.0.1045489", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz", "integrity": "sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ==" }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, "end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", @@ -757,6 +1378,12 @@ "once": "^1.4.0" } }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, "extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", @@ -784,6 +1411,12 @@ "@xmldom/xmldom": "^0.8.3" } }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, "fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", @@ -815,6 +1448,52 @@ "path-is-absolute": "^1.0.0" } }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "http-assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", + "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", + "dev": true, + "requires": { + "deep-equal": "~1.0.1", + "http-errors": "~1.8.0" + } + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + } + } + }, "https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -843,6 +1522,124 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "dev": true, + "requires": { + "tsscmp": "1.0.6" + } + }, + "koa": { + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.14.1.tgz", + "integrity": "sha512-USJFyZgi2l0wDgqkfD27gL4YGno7TfUkcmOe6UOLFOVuN+J7FwnNu4Dydl4CUQzraM1lBAiGed0M9OVJoT0Kqw==", + "dev": true, + "requires": { + "accepts": "^1.3.5", + "cache-content-type": "^1.0.0", + "content-disposition": "~0.5.2", + "content-type": "^1.0.4", + "cookies": "~0.8.0", + "debug": "^4.3.2", + "delegates": "^1.0.0", + "depd": "^2.0.0", + "destroy": "^1.0.4", + "encodeurl": "^1.0.2", + "escape-html": "^1.0.3", + "fresh": "~0.5.2", + "http-assert": "^1.3.0", + "http-errors": "^1.6.3", + "is-generator-function": "^1.0.7", + "koa-compose": "^4.1.0", + "koa-convert": "^2.0.0", + "on-finished": "^2.3.0", + "only": "~0.0.2", + "parseurl": "^1.3.2", + "statuses": "^1.5.0", + "type-is": "^1.6.16", + "vary": "^1.1.2" + } + }, + "koa-compose": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", + "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", + "dev": true + }, + "koa-convert": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", + "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", + "dev": true, + "requires": { + "co": "^4.6.0", + "koa-compose": "^4.1.0" + } + }, + "koa-send": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", + "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "http-errors": "^1.7.3", + "resolve-path": "^1.4.0" + } + }, + "koa-static": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", + "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", + "dev": true, + "requires": { + "debug": "^3.1.0", + "koa-send": "^5.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -861,6 +1658,12 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, "node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", @@ -869,6 +1672,15 @@ "whatwg-url": "^5.0.0" } }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -877,11 +1689,23 @@ "wrappy": "1" } }, + "only": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", + "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==", + "dev": true + }, "pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -903,6 +1727,12 @@ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" }, + "playwright-core": { + "version": "1.28.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.28.1.tgz", + "integrity": "sha512-3PixLnGPno0E8rSBJjtwqTwJe3Yw72QwBBBxNoukIj3lEeBNXwbNiKrNuB1oyQgTBw5QHUhNO3SteEtHaMK6ag==", + "dev": true + }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -960,6 +1790,48 @@ "util-deprecate": "^1.0.1" } }, + "resolve-path": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", + "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", + "dev": true, + "requires": { + "http-errors": "~1.6.2", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", @@ -973,6 +1845,18 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + }, "string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -1009,6 +1893,12 @@ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -1019,6 +1909,22 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, + "tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, "unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", @@ -1038,6 +1944,12 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, "webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -1071,6 +1983,12 @@ "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } + }, + "ylru": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.3.2.tgz", + "integrity": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==", + "dev": true } } } diff --git a/package.json b/package.json index fda1e75..bdd0e83 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,9 @@ "decktape": "decktape.js" }, "scripts": { - "start": "node decktape.js" + "start": "node decktape.js", + "test-prepare-pdfs": "node test/run-decktape.js", + "test": "playwright test" }, "repository": { "type": "git", @@ -30,5 +32,10 @@ }, "engines": { "node": ">=12.20" + }, + "devDependencies": { + "koa": "2.14.1", + "koa-static": "5.0.0", + "@playwright/test": "1.28.1" } } diff --git a/playwright.config.ts b/playwright.config.ts new file mode 100644 index 0000000..734375f --- /dev/null +++ b/playwright.config.ts @@ -0,0 +1,55 @@ +import type { PlaywrightTestConfig } from '@playwright/test'; +import { devices } from '@playwright/test'; + +const port = 3010; + +/** + * See https://playwright.dev/docs/test-configuration. + */ +const config: PlaywrightTestConfig = { + testDir: './test', + timeout: 30 * 1000, + expect: { + /** + * Maximum time expect() should wait for the condition to be met. + * For example in `await expect(locator).toHaveText();` + */ + timeout: 5000 + }, + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 2 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: 'html', + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */ + actionTimeout: 0, + /* Base URL to use in actions like `await page.goto('/')`. */ + + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: 'on-first-retry', + baseURL: `http://localhost:${port}` + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: 'firefox', + use: devices['Desktop Firefox'], + } + ], + + /* Run your local dev server before starting the tests */ + webServer: { + command: `node test/run-server.js ${port}`, + port, + }, +}; + +export default config; diff --git a/test/e2e.spec.ts b/test/e2e.spec.ts new file mode 100644 index 0000000..19aebf4 --- /dev/null +++ b/test/e2e.spec.ts @@ -0,0 +1,21 @@ +import { test, expect } from "@playwright/test"; +import fs from "fs"; + +test.describe("e2e", () => { + const inputDirectories = fs.readdirSync(new URL("./input", import.meta.url)); + + inputDirectories.forEach((input) => { + test(`should have no visual regression for ${input}`, async ({ page }) => { + await page.goto(`/show-pdf.html?file=${input}`); + await page.waitForFunction(() => typeof deck === "object"); + const theCanvas = page.locator("#the-canvas"); + const numberOfPages = await page.evaluate(async () => deck.numPages); + for (let i = 0; i < numberOfPages; i++) { + expect(await theCanvas.screenshot()).toMatchSnapshot({ + name: `${input}-${i}.png`, + }); + await page.evaluate(() => deck.nextPage()); + } + }); + }); +}); diff --git a/test/globals.d.ts b/test/globals.d.ts new file mode 100644 index 0000000..91d54cd --- /dev/null +++ b/test/globals.d.ts @@ -0,0 +1,5 @@ +interface GlobalDeck { + numPages: number; + nextPage(): Promise; +} +declare const deck: GlobalDeck; diff --git a/test/input/revealjs-demo/index.html b/test/input/revealjs-demo/index.html new file mode 100644 index 0000000..b0be468 --- /dev/null +++ b/test/input/revealjs-demo/index.html @@ -0,0 +1,666 @@ + + + + + + Demo | reveal.js + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

The HTML Presentation Framework

+

+ Created by + Hakim El Hattab and + contributors +

+
+ Sponsored by + +
+
+
+

Hello There

+

+ reveal.js enables you to create beautiful interactive slide decks + using HTML. This presentation will show you examples of what it can + do. +

+
+
+
+

Vertical Slides

+

Slides can be nested inside of each other.

+

Use the Space key to navigate through all slides.

+
Down arrow +
+
+

Basement Level 1

+

+ Nested slides are useful for adding additional detail underneath a + high level horizontal slide. +

+
+
+

Basement Level 2

+

That's it, time to go back up.

+
Up arrow +
+
+
+

Slides

+

+ Not a coder? Not a problem. There's a fully-featured visual editor + for authoring these, try it out at + https://slides.com. +

+
+
+

Pretty Code

+

+                import React, { useState } from 'react';
+
+                function Example() {
+                  const [count, setCount] = useState(0);
+
+                  return (
+                    ...
+                  );
+                }
+            
+

+ Code syntax highlighting courtesy of + highlight.js. +

+
+
+

Even Prettier Animations

+

+                import React, { useState } from 'react';
+
+                function Example() {
+                  const [count, setCount] = useState(0);
+
+                  return (
+                    <div>
+                      <p>You clicked {count} times</p>
+                      <button onClick={() => setCount(count + 1)}>
+                        Click me
+                      </button>
+                    </div>
+                  );
+                }
+
+                function SecondExample() {
+                  const [count, setCount] = useState(0);
+
+                  return (
+                    <div>
+                      <p>You clicked {count} times</p>
+                      <button onClick={() => setCount(count + 1)}>
+                        Click me
+                      </button>
+                    </div>
+                  );
+                }
+            
+
+
+

Point of View

+

Press ESC to enter the slide overview.

+

+ Hold down the alt key (ctrl in + Linux) and click on any element to zoom towards it using + zoom.js. Click again to + zoom back out. +

+

(NOTE: Use ctrl + click in Linux.)

+
+
+

Auto-Animate

+

+ Automatically animate matching elements across slides with + Auto-Animate. +

+
+
+
+
+
+
+
+
+
+
+
+
+

Auto-Animate

+
+
+
+
+
+
+
+

Auto-Animate

+
+
+

Touch Optimized

+

+ Presentations look great on touch devices, like mobile phones and + tablets. Simply swipe through your slides. +

+
+
+ +
+
+

Add the r-fit-text class to auto-size text

+

FIT TEXT

+
+
+
+

Fragments

+

Hit the next arrow...

+

... to step through ...

+

+ ... a + fragmented + slide. +

+ +
+
+

Fragment Styles

+

There's different types of fragments, like:

+

grow

+

shrink

+

fade-out

+

+ fade-right, up, down, left +

+

fade-in-then-out

+

fade-in-then-semi-out

+

+ Highlight red + blue + green +

+
+
+
+

Transition Styles

+

+ You can select from different transitions, like:
None + - Fade - + Slide - + Convex - + Concave - + Zoom +

+
+
+
+

Slide Backgrounds

+

+ Set data-background="#dddddd" on a slide to change + the background color. All CSS color formats are supported. +

+ Down arrow +
+
+

Image Backgrounds

+
<section data-background="image.png">
+
+
+

Tiled Backgrounds

+
<section data-background="image.png" data-background-repeat="repeat" data-background-size="100px">
+
+
+
+

Video Backgrounds

+
<section data-background-video="video.mp4,video.webm">
+
+
+
+

... and GIFs!

+
+
+
+

Background Transitions

+

+ Different background transitions are available via the + backgroundTransition option. This one's called "zoom". +

+
Reveal.configure({ backgroundTransition: 'zoom' })
+
+
+

Background Transitions

+

You can override background transitions per-slide.

+
<section data-background-transition="zoom">
+
+
+
+

Iframe Backgrounds

+

+ Since reveal.js runs on the web, you can easily embed other web + content. Try interacting with the page in the background. +

+
+
+
+

Marvelous List

+
    +
  • No order here
  • +
  • Or here
  • +
  • Or here
  • +
  • Or here
  • +
+
+
+

Fantastic Ordered List

+
    +
  1. One is smaller than...
  2. +
  3. Two is smaller than...
  4. +
  5. Three!
  6. +
+
+
+

Tabular Tables

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ItemValueQuantity
Apples$17
Lemonade$218
Bread$32
+
+
+

Clever Quotes

+

+ These guys come in two forms, inline: + The nice thing about standards is that there are so many to + choose from + and block: +

+
+ “For years there has been a theory that millions of monkeys + typing at random on millions of typewriters would reproduce the + entire works of Shakespeare. The Internet has proven this theory to + be untrue.” +
+
+
+

Intergalactic Interconnections

+

+ You can link between slides internally, + like this. +

+
+
+

Speaker View

+

+ There's a + speaker view. It + includes a timer, preview of the upcoming slide as well as your + speaker notes. +

+

Press the S key to try it out.

+ +
+
+

Export to PDF

+

+ Presentations can be + exported to PDF, + here's an example: +

+ +
+
+

Global State

+

+ Set data-state="something" on a slide and + "something" will be added as a class to the document + element when the slide is open. This lets you apply broader style + changes, like switching the page background. +

+
+
+

State Events

+

+ Additionally custom events can be triggered on a per slide basis by + binding to the data-state name. +

+

+Reveal.on( 'customevent', function() {
+  console.log( '"customevent" has fired' );
+} );
+            
+
+
+

Take a Moment

+

+ Press B or . on your keyboard to pause the presentation. This is + helpful when you're on stage and want to take distracting slides off + the screen. +

+
+
+

Much more

+ +
+
+

THE END

+

+ - Try the online editor
- + Source code & documentation +

+
+
+
+ + + diff --git a/test/input/revealjs-demo/main.css b/test/input/revealjs-demo/main.css new file mode 100644 index 0000000..631802d --- /dev/null +++ b/test/input/revealjs-demo/main.css @@ -0,0 +1,202154 @@ +@charset "UTF-8"; + +/*! +* reveal.js 4.4.0 +* https://revealjs.com +* MIT licensed +* +* Copyright (C) 2011-2022 Hakim El Hattab, https://hakim.se +*/ + +.reveal .r-stretch, .reveal .stretch { + max-width: none; + max-height: none; +} + +.reveal pre.r-stretch code, .reveal pre.stretch code { + height: 100%; + max-height: 100%; + box-sizing: border-box; +} + +.reveal .r-fit-text { + display: inline-block; + white-space: nowrap; +} + +.reveal .r-stack { + display: grid; +} + +.reveal .r-stack > * { + grid-area: 1/1; + margin: auto; +} + +.reveal .r-hstack, .reveal .r-vstack { + display: flex; +} + +.reveal .r-hstack img, .reveal .r-hstack video, .reveal .r-vstack img, .reveal .r-vstack video { + min-width: 0; + min-height: 0; + -o-object-fit: contain; + object-fit: contain; +} + +.reveal .r-vstack { + flex-direction: column; + align-items: center; + justify-content: center; +} + +.reveal .r-hstack { + flex-direction: row; + align-items: center; + justify-content: center; +} + +.reveal .items-stretch { + align-items: stretch; +} + +.reveal .items-start { + align-items: flex-start; +} + +.reveal .items-center { + align-items: center; +} + +.reveal .items-end { + align-items: flex-end; +} + +.reveal .justify-between { + justify-content: space-between; +} + +.reveal .justify-around { + justify-content: space-around; +} + +.reveal .justify-start { + justify-content: flex-start; +} + +.reveal .justify-center { + justify-content: center; +} + +.reveal .justify-end { + justify-content: flex-end; +} + +html.reveal-full-page { + width: 100%; + height: 100%; + height: 100vh; + height: calc(var(--vh, 1vh) * 100); + overflow: hidden; +} + +.reveal-viewport { + height: 100%; + overflow: hidden; + position: relative; + line-height: 1; + margin: 0; + background-color: #fff; + color: #000; +} + +.reveal-viewport:-webkit-full-screen { + top: 0 !important; + left: 0 !important; + width: 100% !important; + height: 100% !important; + transform: none !important; +} + +.reveal-viewport:-ms-fullscreen { + top: 0 !important; + left: 0 !important; + width: 100% !important; + height: 100% !important; + transform: none !important; +} + +.reveal-viewport:fullscreen { + top: 0 !important; + left: 0 !important; + width: 100% !important; + height: 100% !important; + transform: none !important; +} + +.reveal .slides section .fragment { + opacity: 0; + visibility: hidden; + transition: all 0.2s ease; + will-change: opacity; +} + +.reveal .slides section .fragment.visible { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.disabled { + transition: none; +} + +.reveal .slides section .fragment.grow { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.grow.visible { + transform: scale(1.3); +} + +.reveal .slides section .fragment.shrink { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.shrink.visible { + transform: scale(0.7); +} + +.reveal .slides section .fragment.zoom-in { + transform: scale(0.1); +} + +.reveal .slides section .fragment.zoom-in.visible { + transform: none; +} + +.reveal .slides section .fragment.fade-out { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.fade-out.visible { + opacity: 0; + visibility: hidden; +} + +.reveal .slides section .fragment.semi-fade-out { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.semi-fade-out.visible { + opacity: 0.5; + visibility: inherit; +} + +.reveal .slides section .fragment.strike { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.strike.visible { + text-decoration: line-through; +} + +.reveal .slides section .fragment.fade-up { + transform: translate(0, 40px); +} + +.reveal .slides section .fragment.fade-up.visible { + transform: translate(0, 0); +} + +.reveal .slides section .fragment.fade-down { + transform: translate(0, -40px); +} + +.reveal .slides section .fragment.fade-down.visible { + transform: translate(0, 0); +} + +.reveal .slides section .fragment.fade-right { + transform: translate(-40px, 0); +} + +.reveal .slides section .fragment.fade-right.visible { + transform: translate(0, 0); +} + +.reveal .slides section .fragment.fade-left { + transform: translate(40px, 0); +} + +.reveal .slides section .fragment.fade-left.visible { + transform: translate(0, 0); +} + +.reveal .slides section .fragment.current-visible, .reveal .slides section .fragment.fade-in-then-out { + opacity: 0; + visibility: hidden; +} + +.reveal .slides section .fragment.current-visible.current-fragment, .reveal .slides section .fragment.fade-in-then-out.current-fragment { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.fade-in-then-semi-out { + opacity: 0; + visibility: hidden; +} + +.reveal .slides section .fragment.fade-in-then-semi-out.visible { + opacity: 0.5; + visibility: inherit; +} + +.reveal .slides section .fragment.fade-in-then-semi-out.current-fragment { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.highlight-blue, .reveal .slides section .fragment.highlight-current-blue, .reveal .slides section .fragment.highlight-current-green, .reveal .slides section .fragment.highlight-current-red, .reveal .slides section .fragment.highlight-green, .reveal .slides section .fragment.highlight-red { + opacity: 1; + visibility: inherit; +} + +.reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d; +} + +.reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; +} + +.reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; +} + +.reveal .slides section .fragment.highlight-current-red.current-fragment { + color: #ff2c2d; +} + +.reveal .slides section .fragment.highlight-current-green.current-fragment { + color: #17ff2e; +} + +.reveal .slides section .fragment.highlight-current-blue.current-fragment { + color: #1b91ff; +} + +.reveal:after { + content: ""; + font-style: italic; +} + +.reveal iframe { + z-index: 1; +} + +.reveal a { + position: relative; +} + +@-webkit-keyframes bounce-right { + 0%, 10%, 25%, 40%, 50% { + transform: translateX(0); + } + + 20% { + transform: translateX(10px); + } + + 30% { + transform: translateX(-5px); + } +} + +@keyframes bounce-right { + 0%, 10%, 25%, 40%, 50% { + transform: translateX(0); + } + + 20% { + transform: translateX(10px); + } + + 30% { + transform: translateX(-5px); + } +} + +@-webkit-keyframes bounce-left { + 0%, 10%, 25%, 40%, 50% { + transform: translateX(0); + } + + 20% { + transform: translateX(-10px); + } + + 30% { + transform: translateX(5px); + } +} + +@keyframes bounce-left { + 0%, 10%, 25%, 40%, 50% { + transform: translateX(0); + } + + 20% { + transform: translateX(-10px); + } + + 30% { + transform: translateX(5px); + } +} + +@-webkit-keyframes bounce-down { + 0%, 10%, 25%, 40%, 50% { + transform: translateY(0); + } + + 20% { + transform: translateY(10px); + } + + 30% { + transform: translateY(-5px); + } +} + +@keyframes bounce-down { + 0%, 10%, 25%, 40%, 50% { + transform: translateY(0); + } + + 20% { + transform: translateY(10px); + } + + 30% { + transform: translateY(-5px); + } +} + +.reveal .controls { + display: none; + position: absolute; + top: auto; + bottom: 12px; + right: 12px; + left: auto; + z-index: 11; + color: #000; + pointer-events: none; + font-size: 10px; +} + +.reveal .controls button { + position: absolute; + padding: 0; + background-color: transparent; + border: 0; + outline: 0; + cursor: pointer; + color: currentColor; + transform: scale(0.9999); + transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; + z-index: 2; + pointer-events: auto; + font-size: inherit; + visibility: hidden; + opacity: 0; + -webkit-appearance: none; + -webkit-tap-highlight-color: transparent; +} + +.reveal .controls .controls-arrow:after, .reveal .controls .controls-arrow:before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 2.6em; + height: 0.5em; + border-radius: 0.25em; + background-color: currentColor; + transition: all 0.15s ease, background-color 0.8s ease; + transform-origin: 0.2em 50%; + will-change: transform; +} + +.reveal .controls .controls-arrow { + position: relative; + width: 3.6em; + height: 3.6em; +} + +.reveal .controls .controls-arrow:before { + transform: translateX(0.5em) translateY(1.55em) rotate(45deg); +} + +.reveal .controls .controls-arrow:after { + transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); +} + +.reveal .controls .controls-arrow:hover:before { + transform: translateX(0.5em) translateY(1.55em) rotate(40deg); +} + +.reveal .controls .controls-arrow:hover:after { + transform: translateX(0.5em) translateY(1.55em) rotate(-40deg); +} + +.reveal .controls .controls-arrow:active:before { + transform: translateX(0.5em) translateY(1.55em) rotate(36deg); +} + +.reveal .controls .controls-arrow:active:after { + transform: translateX(0.5em) translateY(1.55em) rotate(-36deg); +} + +.reveal .controls .navigate-left { + right: 6.4em; + bottom: 3.2em; + transform: translateX(-10px); +} + +.reveal .controls .navigate-left.highlight { + -webkit-animation: bounce-left 2s 50 both ease-out; + animation: bounce-left 2s 50 both ease-out; +} + +.reveal .controls .navigate-right { + right: 0; + bottom: 3.2em; + transform: translateX(10px); +} + +.reveal .controls .navigate-right .controls-arrow { + transform: rotate(180deg); +} + +.reveal .controls .navigate-right.highlight { + -webkit-animation: bounce-right 2s 50 both ease-out; + animation: bounce-right 2s 50 both ease-out; +} + +.reveal .controls .navigate-up { + right: 3.2em; + bottom: 6.4em; + transform: translateY(-10px); +} + +.reveal .controls .navigate-up .controls-arrow { + transform: rotate(90deg); +} + +.reveal .controls .navigate-down { + right: 3.2em; + bottom: -1.4em; + padding-bottom: 1.4em; + transform: translateY(10px); +} + +.reveal .controls .navigate-down .controls-arrow { + transform: rotate(-90deg); +} + +.reveal .controls .navigate-down.highlight { + -webkit-animation: bounce-down 2s 50 both ease-out; + animation: bounce-down 2s 50 both ease-out; +} + +.reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled { + opacity: 0.3; +} + +.reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled:hover { + opacity: 1; +} + +.reveal .controls[data-controls-back-arrows=hidden] .navigate-up.enabled { + opacity: 0; + visibility: hidden; +} + +.reveal .controls .enabled { + visibility: visible; + opacity: 0.9; + cursor: pointer; + transform: none; +} + +.reveal .controls .enabled.fragmented { + opacity: 0.5; +} + +.reveal .controls .enabled.fragmented:hover, .reveal .controls .enabled:hover { + opacity: 1; +} + +.reveal:not(.rtl) .controls[data-controls-back-arrows=faded] .navigate-left.enabled { + opacity: 0.3; +} + +.reveal:not(.rtl) .controls[data-controls-back-arrows=faded] .navigate-left.enabled:hover { + opacity: 1; +} + +.reveal:not(.rtl) .controls[data-controls-back-arrows=hidden] .navigate-left.enabled { + opacity: 0; + visibility: hidden; +} + +.reveal.rtl .controls[data-controls-back-arrows=faded] .navigate-right.enabled { + opacity: 0.3; +} + +.reveal.rtl .controls[data-controls-back-arrows=faded] .navigate-right.enabled:hover { + opacity: 1; +} + +.reveal.rtl .controls[data-controls-back-arrows=hidden] .navigate-right.enabled { + opacity: 0; + visibility: hidden; +} + +.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-down, .reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-up { + display: none; +} + +.reveal:not(.has-vertical-slides) .controls .navigate-left, .reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-left { + bottom: 1.4em; + right: 5.5em; +} + +.reveal:not(.has-vertical-slides) .controls .navigate-right, .reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-right { + bottom: 1.4em; + right: 0.5em; +} + +.reveal:not(.has-horizontal-slides) .controls .navigate-up { + right: 1.4em; + bottom: 5em; +} + +.reveal:not(.has-horizontal-slides) .controls .navigate-down { + right: 1.4em; + bottom: 0.5em; +} + +.reveal.has-dark-background .controls { + color: #fff; +} + +.reveal.has-light-background .controls { + color: #000; +} + +.reveal.no-hover .controls .controls-arrow:active:before, .reveal.no-hover .controls .controls-arrow:hover:before { + transform: translateX(0.5em) translateY(1.55em) rotate(45deg); +} + +.reveal.no-hover .controls .controls-arrow:active:after, .reveal.no-hover .controls .controls-arrow:hover:after { + transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); +} + +@media screen and (min-width: 500px) { + .reveal .controls[data-controls-layout=edges] { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .reveal .controls[data-controls-layout=edges] .navigate-down, .reveal .controls[data-controls-layout=edges] .navigate-left, .reveal .controls[data-controls-layout=edges] .navigate-right, .reveal .controls[data-controls-layout=edges] .navigate-up { + bottom: auto; + right: auto; + } + + .reveal .controls[data-controls-layout=edges] .navigate-left { + top: 50%; + left: 0.8em; + margin-top: -1.8em; + } + + .reveal .controls[data-controls-layout=edges] .navigate-right { + top: 50%; + right: 0.8em; + margin-top: -1.8em; + } + + .reveal .controls[data-controls-layout=edges] .navigate-up { + top: 0.8em; + left: 50%; + margin-left: -1.8em; + } + + .reveal .controls[data-controls-layout=edges] .navigate-down { + bottom: -0.3em; + left: 50%; + margin-left: -1.8em; + } +} + +.reveal .progress { + position: absolute; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; + background-color: rgba(0, 0, 0, 0.2); + color: #fff; +} + +.reveal .progress:after { + content: ""; + display: block; + position: absolute; + height: 10px; + width: 100%; + top: -10px; +} + +.reveal .progress span { + display: block; + height: 100%; + width: 100%; + background-color: currentColor; + transition: transform 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985); + transform-origin: 0 0; + transform: scaleX(0); +} + +.reveal .slide-number { + position: absolute; + display: block; + right: 8px; + bottom: 8px; + z-index: 31; + font-family: Helvetica, sans-serif; + font-size: 12px; + line-height: 1; + color: #fff; + background-color: rgba(0, 0, 0, 0.4); + padding: 5px; +} + +.reveal .slide-number a { + color: currentColor; +} + +.reveal .slide-number-delimiter { + margin: 0 3px; +} + +.reveal { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + touch-action: pinch-zoom; +} + +.reveal.embedded { + touch-action: pan-y; +} + +.reveal .slides { + position: absolute; + width: 100%; + height: 100%; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + pointer-events: none; + overflow: visible; + z-index: 1; + text-align: center; + perspective: 600px; + perspective-origin: 50% 40%; +} + +.reveal .slides > section { + perspective: 600px; +} + +.reveal .slides > section, .reveal .slides > section > section { + display: none; + position: absolute; + width: 100%; + pointer-events: auto; + z-index: 10; + transform-style: flat; + transition: transform-origin 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985); +} + +.reveal[data-transition-speed=fast] .slides section { + transition-duration: 0.4s; +} + +.reveal[data-transition-speed=slow] .slides section { + transition-duration: 1.2s; +} + +.reveal .slides section[data-transition-speed=fast] { + transition-duration: 0.4s; +} + +.reveal .slides section[data-transition-speed=slow] { + transition-duration: 1.2s; +} + +.reveal .slides > section.stack { + padding-top: 0; + padding-bottom: 0; + pointer-events: none; + height: 100%; +} + +.reveal .slides > section.present, .reveal .slides > section > section.present { + display: block; + z-index: 11; + opacity: 1; +} + +.reveal .slides > section:empty, .reveal .slides > section > section:empty, .reveal .slides > section > section[data-background-interactive], .reveal .slides > section[data-background-interactive] { + pointer-events: none; +} + +.reveal.center, .reveal.center .slides, .reveal.center .slides section { + min-height: 0 !important; +} + +.reveal .slides > section:not(.present), .reveal .slides > section > section:not(.present) { + pointer-events: none; +} + +.reveal.overview .slides > section, .reveal.overview .slides > section > section { + pointer-events: auto; +} + +.reveal .slides > section.future, .reveal .slides > section.future > section, .reveal .slides > section.past, .reveal .slides > section.past > section, .reveal .slides > section > section.future, .reveal .slides > section > section.past { + opacity: 0; +} + +.reveal .slides > section[data-transition=slide].past, .reveal .slides > section[data-transition~=slide-out].past, .reveal.slide .slides > section:not([data-transition]).past { + transform: translate(-150%, 0); +} + +.reveal .slides > section[data-transition=slide].future, .reveal .slides > section[data-transition~=slide-in].future, .reveal.slide .slides > section:not([data-transition]).future { + transform: translate(150%, 0); +} + +.reveal .slides > section > section[data-transition=slide].past, .reveal .slides > section > section[data-transition~=slide-out].past, .reveal.slide .slides > section > section:not([data-transition]).past { + transform: translate(0, -150%); +} + +.reveal .slides > section > section[data-transition=slide].future, .reveal .slides > section > section[data-transition~=slide-in].future, .reveal.slide .slides > section > section:not([data-transition]).future { + transform: translate(0, 150%); +} + +.reveal .slides > section[data-transition=linear].past, .reveal .slides > section[data-transition~=linear-out].past, .reveal.linear .slides > section:not([data-transition]).past { + transform: translate(-150%, 0); +} + +.reveal .slides > section[data-transition=linear].future, .reveal .slides > section[data-transition~=linear-in].future, .reveal.linear .slides > section:not([data-transition]).future { + transform: translate(150%, 0); +} + +.reveal .slides > section > section[data-transition=linear].past, .reveal .slides > section > section[data-transition~=linear-out].past, .reveal.linear .slides > section > section:not([data-transition]).past { + transform: translate(0, -150%); +} + +.reveal .slides > section > section[data-transition=linear].future, .reveal .slides > section > section[data-transition~=linear-in].future, .reveal.linear .slides > section > section:not([data-transition]).future { + transform: translate(0, 150%); +} + +.reveal .slides section[data-transition=default].stack, .reveal.default .slides section.stack { + transform-style: preserve-3d; +} + +.reveal .slides > section[data-transition=default].past, .reveal .slides > section[data-transition~=default-out].past, .reveal.default .slides > section:not([data-transition]).past { + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} + +.reveal .slides > section[data-transition=default].future, .reveal .slides > section[data-transition~=default-in].future, .reveal.default .slides > section:not([data-transition]).future { + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal .slides > section > section[data-transition=default].past, .reveal .slides > section > section[data-transition~=default-out].past, .reveal.default .slides > section > section:not([data-transition]).past { + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); +} + +.reveal .slides > section > section[data-transition=default].future, .reveal .slides > section > section[data-transition~=default-in].future, .reveal.default .slides > section > section:not([data-transition]).future { + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); +} + +.reveal .slides section[data-transition=convex].stack, .reveal.convex .slides section.stack { + transform-style: preserve-3d; +} + +.reveal .slides > section[data-transition=convex].past, .reveal .slides > section[data-transition~=convex-out].past, .reveal.convex .slides > section:not([data-transition]).past { + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} + +.reveal .slides > section[data-transition=convex].future, .reveal .slides > section[data-transition~=convex-in].future, .reveal.convex .slides > section:not([data-transition]).future { + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal .slides > section > section[data-transition=convex].past, .reveal .slides > section > section[data-transition~=convex-out].past, .reveal.convex .slides > section > section:not([data-transition]).past { + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); +} + +.reveal .slides > section > section[data-transition=convex].future, .reveal .slides > section > section[data-transition~=convex-in].future, .reveal.convex .slides > section > section:not([data-transition]).future { + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); +} + +.reveal .slides section[data-transition=concave].stack, .reveal.concave .slides section.stack { + transform-style: preserve-3d; +} + +.reveal .slides > section[data-transition=concave].past, .reveal .slides > section[data-transition~=concave-out].past, .reveal.concave .slides > section:not([data-transition]).past { + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} + +.reveal .slides > section[data-transition=concave].future, .reveal .slides > section[data-transition~=concave-in].future, .reveal.concave .slides > section:not([data-transition]).future { + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} + +.reveal .slides > section > section[data-transition=concave].past, .reveal .slides > section > section[data-transition~=concave-out].past, .reveal.concave .slides > section > section:not([data-transition]).past { + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); +} + +.reveal .slides > section > section[data-transition=concave].future, .reveal .slides > section > section[data-transition~=concave-in].future, .reveal.concave .slides > section > section:not([data-transition]).future { + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); +} + +.reveal .slides section[data-transition=zoom], .reveal.zoom .slides section:not([data-transition]) { + transition-timing-function: ease; +} + +.reveal .slides > section[data-transition=zoom].past, .reveal .slides > section[data-transition~=zoom-out].past, .reveal.zoom .slides > section:not([data-transition]).past { + visibility: hidden; + transform: scale(16); +} + +.reveal .slides > section[data-transition=zoom].future, .reveal .slides > section[data-transition~=zoom-in].future, .reveal.zoom .slides > section:not([data-transition]).future { + visibility: hidden; + transform: scale(0.2); +} + +.reveal .slides > section > section[data-transition=zoom].past, .reveal .slides > section > section[data-transition~=zoom-out].past, .reveal.zoom .slides > section > section:not([data-transition]).past { + transform: scale(16); +} + +.reveal .slides > section > section[data-transition=zoom].future, .reveal .slides > section > section[data-transition~=zoom-in].future, .reveal.zoom .slides > section > section:not([data-transition]).future { + transform: scale(0.2); +} + +.reveal.cube .slides { + perspective: 1300px; +} + +.reveal.cube .slides section { + padding: 30px; + min-height: 700px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + box-sizing: border-box; + transform-style: preserve-3d; +} + +.reveal.center.cube .slides section { + min-height: 0; +} + +.reveal.cube .slides section:not(.stack):before { + content: ""; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + border-radius: 4px; + transform: translateZ(-20px); +} + +.reveal.cube .slides section:not(.stack):after { + content: ""; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: 0 0; + z-index: 1; + border-radius: 4px; + box-shadow: 0 95px 25px rgba(0, 0, 0, 0.2); + transform: translateZ(-90px) rotateX(65deg); +} + +.reveal.cube .slides > section.stack { + padding: 0; + background: 0 0; +} + +.reveal.cube .slides > section.past { + transform-origin: 100% 0; + transform: translate3d(-100%, 0, 0) rotateY(-90deg); +} + +.reveal.cube .slides > section.future { + transform-origin: 0 0; + transform: translate3d(100%, 0, 0) rotateY(90deg); +} + +.reveal.cube .slides > section > section.past { + transform-origin: 0 100%; + transform: translate3d(0, -100%, 0) rotateX(90deg); +} + +.reveal.cube .slides > section > section.future { + transform-origin: 0 0; + transform: translate3d(0, 100%, 0) rotateX(-90deg); +} + +.reveal.page .slides { + perspective-origin: 0 50%; + perspective: 3000px; +} + +.reveal.page .slides section { + padding: 30px; + min-height: 700px; + box-sizing: border-box; + transform-style: preserve-3d; +} + +.reveal.page .slides section.past { + z-index: 12; +} + +.reveal.page .slides section:not(.stack):before { + content: ""; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + transform: translateZ(-20px); +} + +.reveal.page .slides section:not(.stack):after { + content: ""; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: 0 0; + z-index: 1; + border-radius: 4px; + box-shadow: 0 95px 25px rgba(0, 0, 0, 0.2); + -webkit-transform: translateZ(-90px) rotateX(65deg); +} + +.reveal.page .slides > section.stack { + padding: 0; + background: 0 0; +} + +.reveal.page .slides > section.past { + transform-origin: 0 0; + transform: translate3d(-40%, 0, 0) rotateY(-80deg); +} + +.reveal.page .slides > section.future { + transform-origin: 100% 0; + transform: translate3d(0, 0, 0); +} + +.reveal.page .slides > section > section.past { + transform-origin: 0 0; + transform: translate3d(0, -40%, 0) rotateX(80deg); +} + +.reveal.page .slides > section > section.future { + transform-origin: 0 100%; + transform: translate3d(0, 0, 0); +} + +.reveal .slides section[data-transition=fade], .reveal.fade .slides section:not([data-transition]), .reveal.fade .slides > section > section:not([data-transition]) { + transform: none; + transition: opacity 0.5s; +} + +.reveal.fade.overview .slides section, .reveal.fade.overview .slides > section > section { + transition: none; +} + +.reveal .slides section[data-transition=none], .reveal.none .slides section:not([data-transition]) { + transform: none; + transition: none; +} + +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #000; + visibility: hidden; + opacity: 0; + z-index: 100; + transition: all 1s ease; +} + +.reveal .pause-overlay .resume-button { + position: absolute; + bottom: 20px; + right: 20px; + color: #ccc; + border-radius: 2px; + padding: 6px 14px; + border: 2px solid #ccc; + font-size: 16px; + background: 0 0; + cursor: pointer; +} + +.reveal .pause-overlay .resume-button:hover { + color: #fff; + border-color: #fff; +} + +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; +} + +.reveal .no-transition, .reveal .no-transition *, .reveal .slides.disable-slide-transitions section { + transition: none !important; +} + +.reveal .slides.disable-slide-transitions section { + transform: none !important; +} + +.reveal .backgrounds { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + perspective: 600px; +} + +.reveal .slide-background { + display: none; + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + visibility: hidden; + overflow: hidden; + background-color: rgba(0, 0, 0, 0); + transition: all 0.8s cubic-bezier(0.26, 0.86, 0.44, 0.985); +} + +.reveal .slide-background-content { + position: absolute; + width: 100%; + height: 100%; + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; +} + +.reveal .slide-background.stack { + display: block; +} + +.reveal .slide-background.present { + opacity: 1; + visibility: visible; + z-index: 2; +} + +.print-pdf .reveal .slide-background { + opacity: 1 !important; + visibility: visible !important; +} + +.reveal .slide-background video { + position: absolute; + width: 100%; + height: 100%; + max-width: none; + max-height: none; + top: 0; + left: 0; + -o-object-fit: cover; + object-fit: cover; +} + +.reveal .slide-background[data-background-size=contain] video { + -o-object-fit: contain; + object-fit: contain; +} + +.reveal > .backgrounds .slide-background[data-background-transition=none], .reveal[data-background-transition=none] > .backgrounds .slide-background:not([data-background-transition]) { + transition: none; +} + +.reveal > .backgrounds .slide-background[data-background-transition=slide], .reveal[data-background-transition=slide] > .backgrounds .slide-background:not([data-background-transition]) { + opacity: 1; +} + +.reveal > .backgrounds .slide-background.past[data-background-transition=slide], .reveal[data-background-transition=slide] > .backgrounds .slide-background.past:not([data-background-transition]) { + transform: translate(-100%, 0); +} + +.reveal > .backgrounds .slide-background.future[data-background-transition=slide], .reveal[data-background-transition=slide] > .backgrounds .slide-background.future:not([data-background-transition]) { + transform: translate(100%, 0); +} + +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide], .reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past:not([data-background-transition]) { + transform: translate(0, -100%); +} + +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide], .reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future:not([data-background-transition]) { + transform: translate(0, 100%); +} + +.reveal > .backgrounds .slide-background.past[data-background-transition=convex], .reveal[data-background-transition=convex] > .backgrounds .slide-background.past:not([data-background-transition]) { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} + +.reveal > .backgrounds .slide-background.future[data-background-transition=convex], .reveal[data-background-transition=convex] > .backgrounds .slide-background.future:not([data-background-transition]) { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex], .reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past:not([data-background-transition]) { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); +} + +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex], .reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future:not([data-background-transition]) { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); +} + +.reveal > .backgrounds .slide-background.past[data-background-transition=concave], .reveal[data-background-transition=concave] > .backgrounds .slide-background.past:not([data-background-transition]) { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} + +.reveal > .backgrounds .slide-background.future[data-background-transition=concave], .reveal[data-background-transition=concave] > .backgrounds .slide-background.future:not([data-background-transition]) { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} + +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave], .reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past:not([data-background-transition]) { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); +} + +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave], .reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future:not([data-background-transition]) { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); +} + +.reveal > .backgrounds .slide-background[data-background-transition=zoom], .reveal[data-background-transition=zoom] > .backgrounds .slide-background:not([data-background-transition]) { + transition-timing-function: ease; +} + +.reveal > .backgrounds .slide-background.past[data-background-transition=zoom], .reveal[data-background-transition=zoom] > .backgrounds .slide-background.past:not([data-background-transition]) { + opacity: 0; + visibility: hidden; + transform: scale(16); +} + +.reveal > .backgrounds .slide-background.future[data-background-transition=zoom], .reveal[data-background-transition=zoom] > .backgrounds .slide-background.future:not([data-background-transition]) { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom], .reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past:not([data-background-transition]) { + opacity: 0; + visibility: hidden; + transform: scale(16); +} + +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom], .reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future:not([data-background-transition]) { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + +.reveal[data-transition-speed=fast] > .backgrounds .slide-background { + transition-duration: 0.4s; +} + +.reveal[data-transition-speed=slow] > .backgrounds .slide-background { + transition-duration: 1.2s; +} + +.reveal [data-auto-animate-target^=unmatched] { + will-change: opacity; +} + +.reveal section[data-auto-animate]:not(.stack):not([data-auto-animate=running]) [data-auto-animate-target^=unmatched] { + opacity: 0; +} + +.reveal.overview { + perspective-origin: 50% 50%; + perspective: 700px; +} + +.reveal.overview .slides { + -moz-transform-style: preserve-3d; +} + +.reveal.overview .slides section { + height: 100%; + top: 0 !important; + opacity: 1 !important; + overflow: hidden; + visibility: visible !important; + cursor: pointer; + box-sizing: border-box; +} + +.reveal.overview .slides section.present, .reveal.overview .slides section:hover { + outline: 10px solid rgba(150, 150, 150, 0.4); + outline-offset: 10px; +} + +.reveal.overview .slides section .fragment { + opacity: 1; + transition: none; +} + +.reveal.overview .slides section:after, .reveal.overview .slides section:before { + display: none !important; +} + +.reveal.overview .slides > section.stack { + padding: 0; + top: 0 !important; + background: 0 0; + outline: 0; + overflow: visible; +} + +.reveal.overview .backgrounds { + perspective: inherit; + -moz-transform-style: preserve-3d; +} + +.reveal.overview .backgrounds .slide-background { + opacity: 1; + visibility: visible; + outline: 10px solid rgba(150, 150, 150, 0.1); + outline-offset: 10px; +} + +.reveal.overview .backgrounds .slide-background.stack { + overflow: visible; +} + +.reveal.overview .slides section, .reveal.overview-deactivating .slides section { + transition: none; +} + +.reveal.overview .backgrounds .slide-background, .reveal.overview-deactivating .backgrounds .slide-background { + transition: none; +} + +.reveal.rtl .slides, .reveal.rtl .slides h1, .reveal.rtl .slides h2, .reveal.rtl .slides h3, .reveal.rtl .slides h4, .reveal.rtl .slides h5, .reveal.rtl .slides h6 { + direction: rtl; + font-family: sans-serif; +} + +.reveal.rtl code, .reveal.rtl pre { + direction: ltr; +} + +.reveal.rtl ol, .reveal.rtl ul { + text-align: right; +} + +.reveal.rtl .progress span { + transform-origin: 100% 0; +} + +.reveal.has-parallax-background .backgrounds { + transition: all 0.8s ease; +} + +.reveal.has-parallax-background[data-transition-speed=fast] .backgrounds { + transition-duration: 0.4s; +} + +.reveal.has-parallax-background[data-transition-speed=slow] .backgrounds { + transition-duration: 1.2s; +} + +.reveal > .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + background: rgba(0, 0, 0, 0.9); + transition: all 0.3s ease; +} + +.reveal > .overlay .spinner { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + z-index: 10; + background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D); + visibility: visible; + opacity: 0.6; + transition: all 0.3s ease; +} + +.reveal > .overlay header { + position: absolute; + left: 0; + top: 0; + width: 100%; + padding: 5px; + z-index: 2; + box-sizing: border-box; +} + +.reveal > .overlay header a { + display: inline-block; + width: 40px; + height: 40px; + line-height: 36px; + padding: 0 10px; + float: right; + opacity: 0.6; + box-sizing: border-box; +} + +.reveal > .overlay header a:hover { + opacity: 1; +} + +.reveal > .overlay header a .icon { + display: inline-block; + width: 20px; + height: 20px; + background-position: 50% 50%; + background-size: 100%; + background-repeat: no-repeat; +} + +.reveal > .overlay header a.close .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); +} + +.reveal > .overlay header a.external .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); +} + +.reveal > .overlay .viewport { + position: absolute; + display: flex; + top: 50px; + right: 0; + bottom: 0; + left: 0; +} + +.reveal > .overlay.overlay-preview .viewport iframe { + width: 100%; + height: 100%; + max-width: 100%; + max-height: 100%; + border: 0; + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; +} + +.reveal > .overlay.overlay-preview.loaded .viewport iframe { + opacity: 1; + visibility: visible; +} + +.reveal > .overlay.overlay-preview.loaded .viewport-inner { + position: absolute; + z-index: -1; + left: 0; + top: 45%; + width: 100%; + text-align: center; + letter-spacing: normal; +} + +.reveal > .overlay.overlay-preview .x-frame-error { + opacity: 0; + transition: opacity 0.3s ease 0.3s; +} + +.reveal > .overlay.overlay-preview.loaded .x-frame-error { + opacity: 1; +} + +.reveal > .overlay.overlay-preview.loaded .spinner { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + +.reveal > .overlay.overlay-help .viewport { + overflow: auto; + color: #fff; +} + +.reveal > .overlay.overlay-help .viewport .viewport-inner { + width: 600px; + margin: auto; + padding: 20px 20px 80px 20px; + text-align: center; + letter-spacing: normal; +} + +.reveal > .overlay.overlay-help .viewport .viewport-inner .title { + font-size: 20px; +} + +.reveal > .overlay.overlay-help .viewport .viewport-inner table { + border: 1px solid #fff; + border-collapse: collapse; + font-size: 16px; +} + +.reveal > .overlay.overlay-help .viewport .viewport-inner table td, .reveal > .overlay.overlay-help .viewport .viewport-inner table th { + width: 200px; + padding: 14px; + border: 1px solid #fff; + vertical-align: middle; +} + +.reveal > .overlay.overlay-help .viewport .viewport-inner table th { + padding-top: 20px; + padding-bottom: 20px; +} + +.reveal .playback { + position: absolute; + left: 15px; + bottom: 20px; + z-index: 30; + cursor: pointer; + transition: all 0.4s ease; + -webkit-tap-highlight-color: transparent; +} + +.reveal.overview .playback { + opacity: 0; + visibility: hidden; +} + +.reveal .hljs { + min-height: 100%; +} + +.reveal .hljs table { + margin: initial; +} + +.reveal .hljs-ln-code, .reveal .hljs-ln-numbers { + padding: 0; + border: 0; +} + +.reveal .hljs-ln-numbers { + opacity: 0.6; + padding-right: 0.75em; + text-align: right; + vertical-align: top; +} + +.reveal .hljs.has-highlights tr:not(.highlight-line) { + opacity: 0.4; +} + +.reveal .hljs:not(:first-child).fragment { + position: absolute; + top: 0; + left: 0; + width: 100%; + box-sizing: border-box; +} + +.reveal pre[data-auto-animate-target] { + overflow: hidden; +} + +.reveal pre[data-auto-animate-target] code { + height: 100%; +} + +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + vertical-align: top; + perspective: 400px; + perspective-origin: 50% 50%; +} + +.reveal .roll:hover { + background: 0 0; + text-shadow: none; +} + +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + pointer-events: none; + transition: all 0.4s ease; + transform-origin: 50% 0; + transform-style: preserve-3d; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} + +.reveal .roll:hover span { + background: rgba(0, 0, 0, 0.5); + transform: translate3d(0, 0, -45px) rotateX(90deg); +} + +.reveal .roll span:after { + content: attr(data-title); + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transform-origin: 50% 0; + transform: translate3d(0, 110%, 0) rotateX(-90deg); +} + +.reveal aside.notes { + display: none; +} + +.reveal .speaker-notes { + display: none; + position: absolute; + width: 33.3333333333%; + height: 100%; + top: 0; + left: 100%; + padding: 14px 18px 14px 18px; + z-index: 1; + font-size: 18px; + line-height: 1.4; + border: 1px solid rgba(0, 0, 0, 0.05); + color: #222; + background-color: #f5f5f5; + overflow: auto; + box-sizing: border-box; + text-align: left; + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; +} + +.reveal .speaker-notes .notes-placeholder { + color: #ccc; + font-style: italic; +} + +.reveal .speaker-notes:focus { + outline: 0; +} + +.reveal .speaker-notes:before { + content: "Speaker notes"; + display: block; + margin-bottom: 10px; + opacity: 0.5; +} + +.reveal.show-notes { + max-width: 75%; + overflow: visible; +} + +.reveal.show-notes .speaker-notes { + display: block; +} + +@media screen and (min-width: 1600px) { + .reveal .speaker-notes { + font-size: 20px; + } +} + +@media screen and (max-width: 1024px) { + .reveal.show-notes { + border-left: 0; + max-width: none; + max-height: 70%; + max-height: 70vh; + overflow: visible; + } + + .reveal.show-notes .speaker-notes { + top: 100%; + left: 0; + width: 100%; + height: 30vh; + border: 0; + } +} + +@media screen and (max-width: 600px) { + .reveal.show-notes { + max-height: 60%; + max-height: 60vh; + } + + .reveal.show-notes .speaker-notes { + top: 100%; + height: 40vh; + } + + .reveal .speaker-notes { + font-size: 14px; + } +} + +.zoomed .reveal *, .zoomed .reveal :after, .zoomed .reveal :before { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +.zoomed .reveal .controls, .zoomed .reveal .progress { + opacity: 0; +} + +.zoomed .reveal .roll span { + background: 0 0; +} + +.zoomed .reveal .roll span:after { + visibility: hidden; +} + +html.print-pdf * { + -webkit-print-color-adjust: exact; +} + +html.print-pdf { + width: 100%; + height: 100%; + overflow: visible; +} + +html.print-pdf body { + margin: 0 auto !important; + border: 0; + padding: 0; + float: none !important; + overflow: visible; +} + +html.print-pdf .nestedarrow, html.print-pdf .reveal .controls, html.print-pdf .reveal .playback, html.print-pdf .reveal .progress, html.print-pdf .reveal.overview, html.print-pdf .state-background { + display: none !important; +} + +html.print-pdf .reveal pre code { + overflow: hidden !important; + font-family: Courier, "Courier New", monospace !important; +} + +html.print-pdf .reveal { + width: auto !important; + height: auto !important; + overflow: hidden !important; +} + +html.print-pdf .reveal .slides { + position: static; + width: 100% !important; + height: auto !important; + zoom: 1 !important; + pointer-events: initial; + left: auto; + top: auto; + margin: 0 !important; + padding: 0 !important; + overflow: visible; + display: block; + perspective: none; + perspective-origin: 50% 50%; +} + +html.print-pdf .reveal .slides .pdf-page { + position: relative; + overflow: hidden; + z-index: 1; + page-break-after: always; +} + +html.print-pdf .reveal .slides section { + visibility: visible !important; + display: block !important; + position: absolute !important; + margin: 0 !important; + padding: 0 !important; + box-sizing: border-box !important; + min-height: 1px; + opacity: 1 !important; + transform-style: flat !important; + transform: none !important; +} + +html.print-pdf .reveal section.stack { + position: relative !important; + margin: 0 !important; + padding: 0 !important; + page-break-after: avoid !important; + height: auto !important; + min-height: auto !important; +} + +html.print-pdf .reveal img { + box-shadow: none; +} + +html.print-pdf .reveal .backgrounds { + display: none; +} + +html.print-pdf .reveal .slide-background { + display: block !important; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: auto !important; +} + +html.print-pdf .reveal.show-notes { + max-width: none; + max-height: none; +} + +html.print-pdf .reveal .speaker-notes-pdf { + display: block; + width: 100%; + height: auto; + max-height: none; + top: auto; + right: auto; + bottom: auto; + left: auto; + z-index: 100; +} + +html.print-pdf .reveal .speaker-notes-pdf[data-layout=separate-page] { + position: relative; + color: inherit; + background-color: transparent; + padding: 20px; + page-break-after: always; + border: 0; +} + +html.print-pdf .reveal .slide-number-pdf { + display: block; + position: absolute; + font-size: 14px; +} + +html.print-pdf .aria-status { + display: none; +} + +@media print { + html:not(.print-pdf) { + background: #fff; + width: auto; + height: auto; + overflow: visible; + } + + html:not(.print-pdf) body { + background: #fff; + font-size: 20pt; + width: auto; + height: auto; + border: 0; + margin: 0 5%; + padding: 0; + overflow: visible; + float: none !important; + } + + html:not(.print-pdf) .controls, html:not(.print-pdf) .fork-reveal, html:not(.print-pdf) .nestedarrow, html:not(.print-pdf) .reveal .backgrounds, html:not(.print-pdf) .reveal .progress, html:not(.print-pdf) .reveal .slide-number, html:not(.print-pdf) .share-reveal, html:not(.print-pdf) .state-background { + display: none !important; + } + + html:not(.print-pdf) body, html:not(.print-pdf) li, html:not(.print-pdf) p, html:not(.print-pdf) td { + font-size: 20pt !important; + color: #000; + } + + html:not(.print-pdf) h1, html:not(.print-pdf) h2, html:not(.print-pdf) h3, html:not(.print-pdf) h4, html:not(.print-pdf) h5, html:not(.print-pdf) h6 { + color: #000 !important; + height: auto; + line-height: normal; + text-align: left; + letter-spacing: normal; + } + + html:not(.print-pdf) h1 { + font-size: 28pt !important; + } + + html:not(.print-pdf) h2 { + font-size: 24pt !important; + } + + html:not(.print-pdf) h3 { + font-size: 22pt !important; + } + + html:not(.print-pdf) h4 { + font-size: 22pt !important; + font-variant: small-caps; + } + + html:not(.print-pdf) h5 { + font-size: 21pt !important; + } + + html:not(.print-pdf) h6 { + font-size: 20pt !important; + font-style: italic; + } + + html:not(.print-pdf) a:link, html:not(.print-pdf) a:visited { + color: #000 !important; + font-weight: 700; + text-decoration: underline; + } + + html:not(.print-pdf) div, html:not(.print-pdf) ol, html:not(.print-pdf) p, html:not(.print-pdf) ul { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: 0; + text-align: left !important; + } + + html:not(.print-pdf) .reveal pre, html:not(.print-pdf) .reveal table { + margin-left: 0; + margin-right: 0; + } + + html:not(.print-pdf) .reveal pre code { + padding: 20px; + } + + html:not(.print-pdf) .reveal blockquote { + margin: 20px 0; + } + + html:not(.print-pdf) .reveal .slides { + position: static !important; + width: auto !important; + height: auto !important; + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 0 !important; + zoom: 1 !important; + transform: none !important; + overflow: visible !important; + display: block !important; + text-align: left !important; + perspective: none; + perspective-origin: 50% 50%; + } + + html:not(.print-pdf) .reveal .slides section { + visibility: visible !important; + position: static !important; + width: auto !important; + height: auto !important; + display: block !important; + overflow: visible !important; + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 60px 20px !important; + z-index: auto !important; + opacity: 1 !important; + page-break-after: always !important; + transform-style: flat !important; + transform: none !important; + transition: none !important; + } + + html:not(.print-pdf) .reveal .slides section.stack { + padding: 0 !important; + } + + html:not(.print-pdf) .reveal section:last-of-type { + page-break-after: avoid !important; + } + + html:not(.print-pdf) .reveal section .fragment { + opacity: 1 !important; + visibility: visible !important; + transform: none !important; + } + + html:not(.print-pdf) .reveal .r-fit-text { + white-space: normal !important; + } + + html:not(.print-pdf) .reveal section img { + display: block; + margin: 15px 0; + background: #fff; + border: 1px solid #666; + box-shadow: none; + } + + html:not(.print-pdf) .reveal section small { + font-size: 0.8em; + } + + html:not(.print-pdf) .reveal .hljs { + max-height: 100%; + white-space: pre-wrap; + word-wrap: break-word; + word-break: break-word; + font-size: 15pt; + } + + html:not(.print-pdf) .reveal .hljs .hljs-ln-numbers { + white-space: nowrap; + } + + html:not(.print-pdf) .reveal .hljs td { + font-size: inherit !important; + color: inherit !important; + } +} + +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By Hakim El Hattab, http://hakim.se + */ + +section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { + color: #222; +} + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +:root { + --background-color: #191919; + --main-font: Source Sans Pro, Helvetica, sans-serif; + --main-font-size: 42px; + --main-color: #fff; + --block-margin: 20px; + --heading-margin: 0 0 20px 0; + --heading-font: Source Sans Pro, Helvetica, sans-serif; + --heading-color: #fff; + --heading-line-height: 1.2; + --heading-letter-spacing: normal; + --heading-text-transform: uppercase; + --heading-text-shadow: none; + --heading-font-weight: 600; + --heading1-text-shadow: none; + --heading1-size: 2.5em; + --heading2-size: 1.6em; + --heading3-size: 1.3em; + --heading4-size: 1em; + --code-font: monospace; + --link-color: #42affa; + --link-color-hover: #8dcffc; + --selection-background-color: #bee4fd; + --selection-color: #fff; +} + +.reveal-viewport { + background: #191919; + background-color: #191919; +} + +.reveal { + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-size: 42px; + font-weight: normal; + color: #fff; +} + +.reveal ::-moz-selection { + color: #fff; + background: #bee4fd; + text-shadow: none; +} + +.reveal ::selection { + color: #fff; + background: #bee4fd; + text-shadow: none; +} + +.reveal ::-moz-selection { + color: #fff; + background: #bee4fd; + text-shadow: none; +} + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; +} + +/********************************************* + * HEADERS + *********************************************/ + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #fff; + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-weight: 600; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; +} + +.reveal h1 { + font-size: 2.5em; +} + +.reveal h2 { + font-size: 1.6em; +} + +.reveal h3 { + font-size: 1.3em; +} + +.reveal h4 { + font-size: 1em; +} + +.reveal h1 { + text-shadow: none; +} + +/********************************************* + * OTHER + *********************************************/ + +.reveal p { + margin: 20px 0; + line-height: 1.3; +} + +/* Ensure certain elements are never larger than the slide itself */ + +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; +} + +.reveal strong, +.reveal b { + font-weight: bold; +} + +.reveal em { + font-style: italic; +} + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; +} + +.reveal ol { + list-style-type: decimal; +} + +.reveal ul { + list-style-type: disc; +} + +.reveal ul ul { + list-style-type: square; +} + +.reveal ul ul ul { + list-style-type: circle; +} + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; +} + +.reveal dt { + font-weight: bold; +} + +.reveal dd { + margin-left: 40px; +} + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); +} + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; +} + +.reveal q { + font-style: italic; +} + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); +} + +.reveal code { + font-family: monospace; + text-transform: none; +} + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; +} + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; +} + +.reveal table th { + font-weight: bold; +} + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; +} + +.reveal table th[align=center], +.reveal table td[align=center] { + text-align: center; +} + +.reveal table th[align=right], +.reveal table td[align=right] { + text-align: right; +} + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; +} + +.reveal sup { + vertical-align: super; + font-size: smaller; +} + +.reveal sub { + vertical-align: sub; + font-size: smaller; +} + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; +} + +.reveal small * { + vertical-align: top; +} + +.reveal img { + margin: 20px 0; +} + +/********************************************* + * LINKS + *********************************************/ + +.reveal a { + color: #42affa; + text-decoration: none; + transition: color 0.15s ease; +} + +.reveal a:hover { + color: #8dcffc; + text-shadow: none; + border: none; +} + +.reveal .roll span:after { + color: #fff; + background: #068de9; +} + +/********************************************* + * Frame helper + *********************************************/ + +.reveal .r-frame { + border: 4px solid #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); +} + +.reveal a .r-frame { + transition: all 0.15s linear; +} + +.reveal a:hover .r-frame { + border-color: #42affa; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); +} + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ + +.reveal .controls { + color: #42affa; +} + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #42affa; +} + +/********************************************* + * PRINT BACKGROUND + *********************************************/ + +@media print { + .backgrounds { + background-color: #191919; + } +} + +/* + +Dracula Theme v1.2.0 + +https://github.com/zenorocha/dracula-theme + +Copyright 2015, All rights reserved + +Code licensed under the MIT license +http://zenorocha.mit-license.org + +@author Éverton Ribeiro +@author Zeno Rocha + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + background: #282a36; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-literal, +.hljs-section, +.hljs-link { + color: #8be9fd; +} + +.hljs-function .hljs-keyword { + color: #ff79c6; +} + +.hljs, +.hljs-subst { + color: #f8f8f2; +} + +.hljs-string, +.hljs-title, +.hljs-name, +.hljs-type, +.hljs-attribute, +.hljs-symbol, +.hljs-bullet, +.hljs-addition, +.hljs-variable, +.hljs-template-tag, +.hljs-template-variable { + color: #f1fa8c; +} + +.hljs-comment, +.hljs-quote, +.hljs-deletion, +.hljs-meta { + color: #6272a4; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-literal, +.hljs-title, +.hljs-section, +.hljs-doctag, +.hljs-type, +.hljs-name, +.hljs-strong { + font-weight: bold; +} + +.hljs-emphasis { + font-style: italic; +} + +/** + * Dracula Theme originally by Zeno Rocha [@zenorocha] + * https://draculatheme.com/ + * + * Ported for PrismJS by Albert Vallverdu [@byverdu] + */ + +code[class*=language-], +pre[class*=language-] { + color: #f8f8f2; + background: none; + text-shadow: 0 1px rgba(0, 0, 0, 0.3); + font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + -webkit-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +/* Code blocks */ + +pre[class*=language-] { + padding: 1em; + margin: 0.5em 0; + overflow: auto; + border-radius: 0.3em; +} + +:not(pre) > code[class*=language-], +pre[class*=language-] { + background: #282a36; +} + +/* Inline code */ + +:not(pre) > code[class*=language-] { + padding: 0.1em; + border-radius: 0.3em; + white-space: normal; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: #6272a4; +} + +.token.punctuation { + color: #f8f8f2; +} + +.namespace { + opacity: 0.7; +} + +.token.property, +.token.tag, +.token.constant, +.token.symbol, +.token.deleted { + color: #ff79c6; +} + +.token.boolean, +.token.number { + color: #bd93f9; +} + +.token.selector, +.token.attr-name, +.token.string, +.token.char, +.token.builtin, +.token.inserted { + color: #50fa7b; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string, +.token.variable { + color: #f8f8f2; +} + +.token.atrule, +.token.attr-value, +.token.function, +.token.class-name { + color: #f1fa8c; +} + +.token.keyword { + color: #8be9fd; +} + +.token.regex, +.token.important { + color: #ffb86c; +} + +.token.important, +.token.bold { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.token.entity { + cursor: help; +} + +/* purgecss start ignore */ + +/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com +*/ + +/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ + +/* +Document +======== +*/ + +/** +Use a better box model (opinionated). +*/ + +*, +::before, +::after { + box-sizing: border-box; +} + +/** +Use a more readable tab size (opinionated). +*/ + +html { + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; +} + +/** +1. Correct the line height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +*/ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* +Sections +======== +*/ + +/** +Remove the margin in all browsers. +*/ + +body { + margin: 0; +} + +/** +Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +*/ + +body { + font-family: + system-ui, + -apple-system, /* Firefox supports this but not yet `system-ui` */ + 'Segoe UI', + Roboto, + Helvetica, + Arial, + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji'; +} + +/* +Grouping content +================ +*/ + +/** +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) +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ +} + +/* +Text-level semantics +==================== +*/ + +/** +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/** +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/** +1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +2. Correct the odd 'em' font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: + ui-monospace, + SFMono-Regular, + Consolas, + 'Liberation Mono', + Menlo, + monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** +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; +} + +/* +Tabular data +============ +*/ + +/** +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) +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ +} + +/* +Forms +===== +*/ + +/** +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** +Remove the inheritance of text transform in Edge and Firefox. +1. Remove the inheritance of text transform in Firefox. +*/ + +button, +select { /* 1 */ + text-transform: none; +} + +/** +Correct the inability to style clickable types in iOS and Safari. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** +Remove the inner border and padding in Firefox. +*/ + +::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** +Restore the focus styles unset by the previous rule. +*/ + +:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** +Remove the additional ':invalid' styles in Firefox. +See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/** +Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. +*/ + +legend { + padding: 0; +} + +/** +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 */ +} + +/* +Interactive +=========== +*/ + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/** + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base + * A thin layer on top of normalize.css that provides a starting point more + * suitable for web applications. + */ + +/** + * Removes the default spacing and border for appropriate elements. + */ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +button { + background-color: transparent; + background-image: none; +} + +fieldset { + margin: 0; + padding: 0; +} + +ol, +ul { + list-style: none; + margin: 0; + padding: 0; +} + +/** + * Tailwind custom reset styles + */ + +/** + * 1. Use the user's configured `sans` font-family (with Tailwind's default + * sans-serif font stack as a fallback) as a sane default. + * 2. Use Tailwind's default "normal" line-height so the user isn't forced + * to override it to ensure consistency even when using the default theme. + */ + +html { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */ + line-height: 1.5; /* 2 */ +} + +/** + * Inherit font-family and line-height from `html` so users can set them as + * a class directly on the `html` element. + */ + +body { + font-family: inherit; + line-height: inherit; +} + +/** + * 1. Prevent padding and border from affecting element width. + * + * We used to set this in the html element and inherit from + * the parent element for everything else. This caused issues + * in shadow-dom-enhanced elements like
where the content + * is wrapped by a div with box-sizing set to `content-box`. + * + * https://github.com/mozdevs/cssremedy/issues/4 + * + * + * 2. Allow adding a border to an element by just adding a border-width. + * + * By default, the way the browser specifies that an element should have no + * border is by setting it's border-style to `none` in the user-agent + * stylesheet. + * + * In order to easily add borders to elements by just setting the `border-width` + * property, we change the default border-style for all elements to `solid`, and + * use border-width to hide them instead. This way our `border` utilities only + * need to set the `border-width` property instead of the entire `border` + * shorthand, making our border utilities much more straightforward to compose. + * + * https://github.com/tailwindcss/tailwindcss/pull/116 + */ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: currentColor; /* 2 */ +} + +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-top-width: 1px; +} + +/** + * Undo the `border-style: none` reset that Normalize applies to images so that + * our `border-{width}` utilities have the expected effect. + * + * The Normalize reset is unnecessary for us since we default the border-width + * to 0 on all elements. + * + * https://github.com/tailwindcss/tailwindcss/issues/362 + */ + +img { + border-style: solid; +} + +textarea { + resize: vertical; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + color: #cbd5e0; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + opacity: 1; + color: #cbd5e0; +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + color: #cbd5e0; +} + +button, +[role="button"] { + cursor: pointer; +} + +/** + * Override legacy focus reset from Normalize with modern Firefox focus styles. + * + * This is actually an improvement over the new defaults in Firefox in our testing, + * as it triggers the better focus styles even for links, which still use a dotted + * outline in Firefox by default. + */ + +:-moz-focusring { + outline: auto; +} + +table { + border-collapse: collapse; +} + +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; +} + +/** + * Reset form element properties that are easy to forget to + * style explicitly so you don't inadvertently introduce + * styles that deviate from your design system. These styles + * supplement a partial reset that is already applied by + * normalize.css. + */ + +button, +input, +optgroup, +select, +textarea { + padding: 0; + line-height: inherit; + color: inherit; +} + +/** + * Use the configured 'mono' font family for elements that + * are expected to be rendered with a monospace font, falling + * back to the system monospace stack if there is no configured + * 'mono' font family. + */ + +pre, +code, +kbd, +samp { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/** + * 1. Make replaced elements `display: block` by default as that's + * the behavior you want almost all of the time. Inspired by + * CSS Remedy, with `svg` added as well. + * + * https://github.com/mozdevs/cssremedy/issues/14 + * + * 2. Add `vertical-align: middle` to align replaced elements more + * sensibly by default when overriding `display` by adding a + * utility like `inline`. + * + * This can trigger a poorly considered linting error in some + * tools but is included by design. + * + * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210 + */ + +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; +} + +/** + * Ensure the default browser behavior of the `hidden` attribute. + */ + +[hidden] { + display: none; +} + +*, ::before, ::after{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +html { + font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, sans-serif; + font-size: 16px; +} + +:target { + scroll-margin-top: 6rem; +} + +a, button { + touch-action: manipulation !important; + -webkit-tap-highlight-color: #b8ccdf; +} + +.no-transition, +.no-transition * { + transition: none !important; +} + +.nav-link { + display: inline-block; + width: 100%; + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.nav-link:hover { + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.nav-link.selected { + border-radius: 0.25rem; + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.exernal-link-icon { + margin-left: 0.25rem; + display: inline-block; + vertical-align: text-bottom; + opacity: 0.75; +} + +.exernal-link-icon svg { + height: 1rem; +} + +.exernal-link-icon path { + fill: currentColor; +} + +#carbonads { + width: 100%; + border: 1px solid rgba(255, 255, 255, 0.2); + z-index: 10; + text-align: left; + font-size: 0.875rem; + line-height: 1.25rem; +} + +#carbonads .carbon-img img { + width: 130px; + height: 100px; + margin: 0 0 10px 0; + border: 0; + box-shadow: none; +} + +#carbonads .carbon-text { + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +#carbonads .carbon-poweredby { + display: block; + margin-top: 10px; + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.r-anchor { + position: relative; +} + +.r-anchor-label { + position: relative; + z-index: 2; +} + +.r-anchor-background { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 0; + pointer-events: none; + visibility: hidden; + border-radius: 0.25rem; + z-index: -1; + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); +} + +.r-anchor.hover .r-anchor-background { + opacity: 1; + transform: none !important; + visibility: visible; + transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); +} + +.search-result .r-anchor-background { + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.homepage-promotion { + display: flex; + align-items: center; + position: absolute; + bottom: 2rem; + left: 2rem; + padding: 0.5rem 0.5rem 0.5rem 0.75rem; + border: 1px solid rgba(255, 255, 255, 0.75); + border-radius: 100px; + color: #fff; +} + +.homepage-promotion span { + background: #fff; + color: #000; + border-radius: 100px; + margin-left: 0.75rem; + font-size: 0.8em; + padding: 0.25rem 0.5rem; +} + +.reveal-demo { + position: relative; + height: 65vh; + max-height: 900px; +} + +.highlight-demo .reveal-demo .reveal { + position: relative; + z-index: 100; +} + +.highlight-demo .reveal-demo:after { + content: "The header is a live demo. Scroll to access docs."; + position: fixed; + display: grid; + place-items: center; + z-index: 99; + top: 65vh; + left: 0; + right: 0; + bottom: 0; + color: #eee; + font-weight: 600; + padding: 0 1rem; + background: rgba(0, 0, 0, 0.9); + -webkit-backdrop-filter: blur(4px); + backdrop-filter: blur(4px); +} + +.reveal { + font-size: 36px; + background-color: #1a1626; +} + +.reveal a, .reveal .controls button, .reveal .progress span{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.reveal .progress { + height: 6px; +} + +.reveal h1, h2, h3, h4, p, ul { + font-family: "Inter", sans-serif !important; +} + +.reveal iframe { + margin-left: auto; + margin-right: auto; +} + +.reveal img { + display: inline-block; +} + +.header a, +.header button { + -webkit-tap-highlight-color: transparent; +} + +.header-logo-wrapper { + position: relative; +} + +.header-logo { + transform: translateY(-20px); + opacity: 0; + visibility: hidden; +} + +.logo-visible .header-logo, +.menu-visible .header-logo { + transform: none; + transition: all 0.2s ease; + opacity: 1; + visibility: visible; +} + +.header-cta { + position: absolute !important; + transition: all 0.2s ease; + top: 0; +} + +.logo-visible .header-cta, +.menu-visible .header-cta { + opacity: 0; + transform: translateY(20px); + visibility: hidden; +} + +@media (max-width: 1024px) { + .header-logo { + transform: none; + opacity: 1; + visibility: visible; + } + + .header-cta { + opacity: 0; + visibility: hidden; + } +} + +.menu-visible .header-logo, +.menu-visible .header-cta { + transition: none; +} + +.menu-visible header { + position: fixed; +} + +.menu-toggle .line1, +.menu-toggle .line2 { + transition: all 0.3s ease; + transform-origin: 8px 12px; +} + +.menu-visible .menu-toggle .line1 { + transform: rotate(45deg); +} + +.menu-visible .menu-toggle .line2 { + transform: rotate(-45deg); +} + +.header-nav path { + fill: currentColor; +} + +.search-results { + display: none; +} + +.search-visible .search-results[data-state=no-results], +.search-visible .search-results[data-state=has-results], +.search-visible .search-results[data-state=loading-error] { + display: block; +} + +.search-visible .search-results[data-state=no-results] { + padding: 1rem; +} + +.search-results .excerpt { + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + white-space: pre-wrap; + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; +} + +.search-results mark { + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.divider:last-child { + display: none; +} + +.article h1, .article h2, .article h3, .article h4 { + margin-top: 1.5rem; + margin-bottom: 0.5rem; + font-weight: 600; + line-height: 1.25; +} + +.article h1 { + margin-bottom: 1rem; + font-size: 1.875rem; + line-height: 2.25rem; +} + +.article h2 { + margin-bottom: 0.75rem; + font-size: 1.5rem; + line-height: 2rem; +} + +.article h3 { + margin-bottom: 0.75rem; + font-size: 1.25rem; + line-height: 1.75rem; +} + +.article h4 { + margin-bottom: 0.25rem; + font-size: 1.125rem; + line-height: 1.75rem; +} + +.article h1:first-child { + margin-top: 0px; +} + +.article > a, .article a:not([class]){ + overflow-wrap: break-word; + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + text-decoration: none; +} + +.article > a:hover, .article a:not([class]):hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.article b, .article strong { + font-weight: 600; +} + +.article p, .article ol, .article ul, .article picture { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +.article ol { + list-style-type: decimal; + padding-left: 1rem; +} + +.article ul { + list-style-type: disc; + padding-left: 1rem; +} + +.article li { + margin-bottom: 0.5rem; +} + +.article li p { + margin-top: 0px; + margin-bottom: 0px; + display: inline-block; +} + +.article picture { + margin-left: -1rem; + margin-right: -1rem; + display: block; + overflow: hidden; + border-radius: 0.25rem; +} + +.article .r-version-badge { + float: right; + padding: 1px; + font-size: 0.75rem; + line-height: 1rem; + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.article .r-version-badge.new:before { + content: "Added in "; +} + +.article .r-version-badge.deprecated:before { + content: "Deprecated in "; +} + +.article .r-var-type { + margin-left: 0.5rem; + border-radius: 0.125rem; + border-width: 1px; + padding: 1px; + padding-left: 0.25rem; + padding-right: 0.25rem; + font-size: 0.875rem; + line-height: 1.25rem; + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.article pre[class*=language-] { + margin-left: 1rem; + margin-right: 1rem; + margin-left: -1rem; + margin-right: -1rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + padding: 1rem; + max-height: 50vh; +} + +.article ol pre[class*=language-], .article li pre[class*=language-]{ + margin-left: -2rem; +} + +.article code:not([class*=language-]):not(.hljs) { + border-radius: 0.25rem; + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + padding: 0.25rem; + padding-top: 1px; + padding-bottom: 1px; + line-height: 1.625; + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.article pre mark { + background: transparent; + color: currentColor; +} + +.article code:not(.hljs) .highlight-line { + opacity: 0.4; +} + +.article code:not(.hljs) .highlight-line-active { + opacity: 1; +} + +.article > table { + display: block; + overflow: auto; + margin: 1rem; + margin-left: -1rem; + margin-right: -1rem; + border-radius: 0.25rem; + border-width: 1px; + font-size: 1rem; + line-height: 1.5rem; +} + +.article > table th { + border-bottom-width: 1px; + padding: 1rem; + vertical-align: top; + font-weight: 500; +} + +.article > table td { + border-width: 0px; + padding: 1rem; + vertical-align: top; +} + +.article > table tr { + background-color: #fff; +} + +.article > table tr:nth-child(2n) { + background-color: transparent; +} + +.article > table.full-width { + display: table; +} + +.article > table.nowrap-1st th:first-child, .article > table.nowrap-1st td:first-child, .article > table.nowrap-2nd th:nth-child(2), .article > table.nowrap-2nd td:nth-child(2), .article > table.key-value th:first-child, .article > table.key-value td:first-child, .article > table.toc th:first-child { + white-space: nowrap; +} + +.article > table.key-value td:nth-child(2) { + width: 100%; +} + +.article > table.toc td:nth-child(1) { + width: 100%; +} + +.article > table.toc strong { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.article > table.hide-header th { + display: none; +} + +.article > form, .article > iframe{ + margin-top: 1rem; + margin-bottom: 1rem; +} + +.article .reveal-example { + height: 280px; + box-sizing: content-box; + margin-left: -1rem; + margin-right: -1rem; + margin-top: 1rem; + margin-bottom: 1rem; + border-radius: 0.25rem; + border-top-width: 1px; + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + padding: 1rem; +} + +.article .reveal-example h1, .article .reveal-example h2, .article .reveal-example h3 { + margin-top: 0; + line-height: 1.25; +} + +.article .reveal-example pre { + font-size: 28px; + width: 100%; +} + +.article .reveal-example a { + border-style: none; + text-decoration: none; +} + +.article pre + .reveal-example { + margin-top: -0.5rem; + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +.article .reveal-example-wrapper pre[class*=language-] { + margin-bottom: 0px; + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; +} + +.article .reveal-example-wrapper .reveal-example { + margin-top: 0px; + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +.article .reveal-example.focused:before { + content: ""; + pointer-events: none; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + display: block; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-width: 2px; + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.article .reveal h1 { + font-size: 2.5em; +} + +.article .reveal h2 { + font-size: 1.6em; +} + +.article .reveal h3 { + font-size: 1.3em; +} + +.anchorjs-link:after { + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.extras .gumroad-button, +.article .gumroad-button { + display: inline-block !important; + font-family: inherit !important; + background-image: none !important; + box-shadow: none !important; +} + +.extras .gumroad-button, .article .gumroad-button{ + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + border-radius: 0.25rem !important; + --tw-bg-opacity: 1 !important; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)) !important; + padding-left: 1rem !important; + padding-right: 1rem !important; + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + font-size: 1.25rem !important; + line-height: 1.75rem !important; + font-weight: 500 !important; + --tw-text-opacity: 1 !important; + color: rgba(26, 32, 44, var(--tw-text-opacity)) !important; +} + +.extras .gumroad-button:hover, +.article .gumroad-button:hover { + transform: none !important; +} + +.extras .gumroad-button-logo, +.article .gumroad-button-logo, +.extras .gumroad-button .logo-full, +.article .gumroad-button .logo-full { + display: none !important; +} + +.buy-course { + display: flex; + flex-direction: row; + width: 100%; + margin-top: 2rem; + margin-bottom: 2rem; +} + +.buy-course-thumb { + display: flex; + width: 33%; + max-width: 240px; + background: #111; + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.buy-course-action { + display: flex; + flex-shrink: 0; + flex-direction: column; + align-items: center; + justify-content: center; + background-color: #fff; + border-width: 1px; + border-right-width: 0px; + border-left-width: 0px; + padding: 1rem; + padding-top: 0.5rem; + padding-right: 1.25rem; + padding-left: 2.5rem; +} + +.buy-course-price { + font-size: 3.5rem; + line-height: 1.2; +} + +.buy-course-price sup { + font-size: 0.5em; + top: -0.7em; +} + +.buy-course-price .old-price { + position: relative; + font-size: 0.7em; + color: #999; + vertical-align: middle; +} + +.buy-course-price .old-price:before { + content: ""; + position: absolute; + background: #999; + display: block; + height: 3px; + left: -6px; + right: -6px; + top: 45%; +} + +.buy-course-data { + display: flex; + flex-shrink: 0; + flex-direction: column; + align-items: center; + justify-content: center; + background-color: #fff; + border-radius: 0.5rem; + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + border-width: 1px; + border-left-width: 0px; + padding: 1rem; + padding-right: 2.5rem; + padding-left: 1.25rem; +} + +.buy-course-data ul { + list-style: none; +} + +.buy-course-data li:before { + content: ""; + margin-right: 10px; + background-image: url("/images/icons/checkmark.svg"); + background-size: contain; + display: inline-block; + width: 1em; + height: 1em; +} + +@media screen and (max-width: 700px) { + .buy-course-thumb { + display: none; + } + + .buy-course-action { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-left-width: 1px; + } +} + +@media screen and (max-width: 480px) { + .buy-course { + flex-direction: column; + } + + .buy-course-action { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + border-width: 1px; + border-bottom-width: 0px; + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .buy-course-data { + border-top-left-radius: 0px; + border-top-right-radius: 0px; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-width: 1px; + border-top-width: 0px; + padding-left: 1.5rem; + padding-right: 1.5rem; + } +} + +.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; + } +} + +/* purgecss end ignore */ + +.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; +} + +.not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.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: -webkit-sticky; + position: sticky; +} + +.inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; +} + +.inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; +} + +.inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; +} + +.inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; +} + +.inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; +} + +.inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; +} + +.inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; +} + +.inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; +} + +.inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; +} + +.inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; +} + +.inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; +} + +.inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; +} + +.inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; +} + +.inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; +} + +.inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; +} + +.inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; +} + +.inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; +} + +.inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; +} + +.inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; +} + +.inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; +} + +.inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; +} + +.inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; +} + +.inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; +} + +.inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; +} + +.inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; +} + +.inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; +} + +.inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; +} + +.inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; +} + +.inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; +} + +.inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; +} + +.inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; +} + +.inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; +} + +.inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; +} + +.inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; +} + +.inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; +} + +.-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; +} + +.-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; +} + +.-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; +} + +.-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; +} + +.-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; +} + +.-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; +} + +.-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; +} + +.-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; +} + +.-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; +} + +.-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; +} + +.-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; +} + +.-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; +} + +.-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; +} + +.-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; +} + +.-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; +} + +.-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; +} + +.-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; +} + +.-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; +} + +.-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; +} + +.-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; +} + +.-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; +} + +.-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; +} + +.-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; +} + +.-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; +} + +.-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; +} + +.-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; +} + +.-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; +} + +.-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; +} + +.-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; +} + +.-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; +} + +.-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; +} + +.-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; +} + +.-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; +} + +.-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; +} + +.inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; +} + +.inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; +} + +.inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; +} + +.inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; +} + +.inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; +} + +.inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; +} + +.inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; +} + +.-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; +} + +.-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; +} + +.-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; +} + +.-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; +} + +.-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; +} + +.-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; +} + +.-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; +} + +.inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; +} + +.inset-x-0{ + left: 0px; + right: 0px; +} + +.inset-x-1{ + left: 0.25rem; + right: 0.25rem; +} + +.inset-x-2{ + left: 0.5rem; + right: 0.5rem; +} + +.inset-x-3{ + left: 0.75rem; + right: 0.75rem; +} + +.inset-x-4{ + left: 1rem; + right: 1rem; +} + +.inset-x-5{ + left: 1.25rem; + right: 1.25rem; +} + +.inset-x-6{ + left: 1.5rem; + right: 1.5rem; +} + +.inset-x-7{ + left: 1.75rem; + right: 1.75rem; +} + +.inset-x-8{ + left: 2rem; + right: 2rem; +} + +.inset-x-9{ + left: 2.25rem; + right: 2.25rem; +} + +.inset-x-10{ + left: 2.5rem; + right: 2.5rem; +} + +.inset-x-11{ + left: 2.75rem; + right: 2.75rem; +} + +.inset-x-12{ + left: 3rem; + right: 3rem; +} + +.inset-x-14{ + left: 3.5rem; + right: 3.5rem; +} + +.inset-x-16{ + left: 4rem; + right: 4rem; +} + +.inset-x-20{ + left: 5rem; + right: 5rem; +} + +.inset-x-24{ + left: 6rem; + right: 6rem; +} + +.inset-x-28{ + left: 7rem; + right: 7rem; +} + +.inset-x-32{ + left: 8rem; + right: 8rem; +} + +.inset-x-36{ + left: 9rem; + right: 9rem; +} + +.inset-x-40{ + left: 10rem; + right: 10rem; +} + +.inset-x-44{ + left: 11rem; + right: 11rem; +} + +.inset-x-48{ + left: 12rem; + right: 12rem; +} + +.inset-x-52{ + left: 13rem; + right: 13rem; +} + +.inset-x-56{ + left: 14rem; + right: 14rem; +} + +.inset-x-60{ + left: 15rem; + right: 15rem; +} + +.inset-x-64{ + left: 16rem; + right: 16rem; +} + +.inset-x-72{ + left: 18rem; + right: 18rem; +} + +.inset-x-80{ + left: 20rem; + right: 20rem; +} + +.inset-x-96{ + left: 24rem; + right: 24rem; +} + +.inset-x-auto{ + left: auto; + right: auto; +} + +.inset-x-px{ + left: 1px; + right: 1px; +} + +.inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; +} + +.inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; +} + +.inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; +} + +.inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; +} + +.-inset-x-0{ + left: 0px; + right: 0px; +} + +.-inset-x-1{ + left: -0.25rem; + right: -0.25rem; +} + +.-inset-x-2{ + left: -0.5rem; + right: -0.5rem; +} + +.-inset-x-3{ + left: -0.75rem; + right: -0.75rem; +} + +.-inset-x-4{ + left: -1rem; + right: -1rem; +} + +.-inset-x-5{ + left: -1.25rem; + right: -1.25rem; +} + +.-inset-x-6{ + left: -1.5rem; + right: -1.5rem; +} + +.-inset-x-7{ + left: -1.75rem; + right: -1.75rem; +} + +.-inset-x-8{ + left: -2rem; + right: -2rem; +} + +.-inset-x-9{ + left: -2.25rem; + right: -2.25rem; +} + +.-inset-x-10{ + left: -2.5rem; + right: -2.5rem; +} + +.-inset-x-11{ + left: -2.75rem; + right: -2.75rem; +} + +.-inset-x-12{ + left: -3rem; + right: -3rem; +} + +.-inset-x-14{ + left: -3.5rem; + right: -3.5rem; +} + +.-inset-x-16{ + left: -4rem; + right: -4rem; +} + +.-inset-x-20{ + left: -5rem; + right: -5rem; +} + +.-inset-x-24{ + left: -6rem; + right: -6rem; +} + +.-inset-x-28{ + left: -7rem; + right: -7rem; +} + +.-inset-x-32{ + left: -8rem; + right: -8rem; +} + +.-inset-x-36{ + left: -9rem; + right: -9rem; +} + +.-inset-x-40{ + left: -10rem; + right: -10rem; +} + +.-inset-x-44{ + left: -11rem; + right: -11rem; +} + +.-inset-x-48{ + left: -12rem; + right: -12rem; +} + +.-inset-x-52{ + left: -13rem; + right: -13rem; +} + +.-inset-x-56{ + left: -14rem; + right: -14rem; +} + +.-inset-x-60{ + left: -15rem; + right: -15rem; +} + +.-inset-x-64{ + left: -16rem; + right: -16rem; +} + +.-inset-x-72{ + left: -18rem; + right: -18rem; +} + +.-inset-x-80{ + left: -20rem; + right: -20rem; +} + +.-inset-x-96{ + left: -24rem; + right: -24rem; +} + +.-inset-x-px{ + left: -1px; + right: -1px; +} + +.-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; +} + +.-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; +} + +.-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; +} + +.-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; +} + +.inset-x-1\/2{ + left: 50%; + right: 50%; +} + +.inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; +} + +.inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; +} + +.inset-x-1\/4{ + left: 25%; + right: 25%; +} + +.inset-x-2\/4{ + left: 50%; + right: 50%; +} + +.inset-x-3\/4{ + left: 75%; + right: 75%; +} + +.inset-x-full{ + left: 100%; + right: 100%; +} + +.-inset-x-1\/2{ + left: -50%; + right: -50%; +} + +.-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; +} + +.-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; +} + +.-inset-x-1\/4{ + left: -25%; + right: -25%; +} + +.-inset-x-2\/4{ + left: -50%; + right: -50%; +} + +.-inset-x-3\/4{ + left: -75%; + right: -75%; +} + +.-inset-x-full{ + left: -100%; + right: -100%; +} + +.inset-x-5vw{ + left: 5vw; + right: 5vw; +} + +.inset-y-0{ + top: 0px; + bottom: 0px; +} + +.inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; +} + +.inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; +} + +.inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; +} + +.inset-y-4{ + top: 1rem; + bottom: 1rem; +} + +.inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; +} + +.inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; +} + +.inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; +} + +.inset-y-8{ + top: 2rem; + bottom: 2rem; +} + +.inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; +} + +.inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; +} + +.inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; +} + +.inset-y-12{ + top: 3rem; + bottom: 3rem; +} + +.inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; +} + +.inset-y-16{ + top: 4rem; + bottom: 4rem; +} + +.inset-y-20{ + top: 5rem; + bottom: 5rem; +} + +.inset-y-24{ + top: 6rem; + bottom: 6rem; +} + +.inset-y-28{ + top: 7rem; + bottom: 7rem; +} + +.inset-y-32{ + top: 8rem; + bottom: 8rem; +} + +.inset-y-36{ + top: 9rem; + bottom: 9rem; +} + +.inset-y-40{ + top: 10rem; + bottom: 10rem; +} + +.inset-y-44{ + top: 11rem; + bottom: 11rem; +} + +.inset-y-48{ + top: 12rem; + bottom: 12rem; +} + +.inset-y-52{ + top: 13rem; + bottom: 13rem; +} + +.inset-y-56{ + top: 14rem; + bottom: 14rem; +} + +.inset-y-60{ + top: 15rem; + bottom: 15rem; +} + +.inset-y-64{ + top: 16rem; + bottom: 16rem; +} + +.inset-y-72{ + top: 18rem; + bottom: 18rem; +} + +.inset-y-80{ + top: 20rem; + bottom: 20rem; +} + +.inset-y-96{ + top: 24rem; + bottom: 24rem; +} + +.inset-y-auto{ + top: auto; + bottom: auto; +} + +.inset-y-px{ + top: 1px; + bottom: 1px; +} + +.inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; +} + +.inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; +} + +.inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; +} + +.inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; +} + +.-inset-y-0{ + top: 0px; + bottom: 0px; +} + +.-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; +} + +.-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; +} + +.-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; +} + +.-inset-y-4{ + top: -1rem; + bottom: -1rem; +} + +.-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; +} + +.-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; +} + +.-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; +} + +.-inset-y-8{ + top: -2rem; + bottom: -2rem; +} + +.-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; +} + +.-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; +} + +.-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; +} + +.-inset-y-12{ + top: -3rem; + bottom: -3rem; +} + +.-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; +} + +.-inset-y-16{ + top: -4rem; + bottom: -4rem; +} + +.-inset-y-20{ + top: -5rem; + bottom: -5rem; +} + +.-inset-y-24{ + top: -6rem; + bottom: -6rem; +} + +.-inset-y-28{ + top: -7rem; + bottom: -7rem; +} + +.-inset-y-32{ + top: -8rem; + bottom: -8rem; +} + +.-inset-y-36{ + top: -9rem; + bottom: -9rem; +} + +.-inset-y-40{ + top: -10rem; + bottom: -10rem; +} + +.-inset-y-44{ + top: -11rem; + bottom: -11rem; +} + +.-inset-y-48{ + top: -12rem; + bottom: -12rem; +} + +.-inset-y-52{ + top: -13rem; + bottom: -13rem; +} + +.-inset-y-56{ + top: -14rem; + bottom: -14rem; +} + +.-inset-y-60{ + top: -15rem; + bottom: -15rem; +} + +.-inset-y-64{ + top: -16rem; + bottom: -16rem; +} + +.-inset-y-72{ + top: -18rem; + bottom: -18rem; +} + +.-inset-y-80{ + top: -20rem; + bottom: -20rem; +} + +.-inset-y-96{ + top: -24rem; + bottom: -24rem; +} + +.-inset-y-px{ + top: -1px; + bottom: -1px; +} + +.-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; +} + +.-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; +} + +.-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; +} + +.-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; +} + +.inset-y-1\/2{ + top: 50%; + bottom: 50%; +} + +.inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; +} + +.inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; +} + +.inset-y-1\/4{ + top: 25%; + bottom: 25%; +} + +.inset-y-2\/4{ + top: 50%; + bottom: 50%; +} + +.inset-y-3\/4{ + top: 75%; + bottom: 75%; +} + +.inset-y-full{ + top: 100%; + bottom: 100%; +} + +.-inset-y-1\/2{ + top: -50%; + bottom: -50%; +} + +.-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; +} + +.-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; +} + +.-inset-y-1\/4{ + top: -25%; + bottom: -25%; +} + +.-inset-y-2\/4{ + top: -50%; + bottom: -50%; +} + +.-inset-y-3\/4{ + top: -75%; + bottom: -75%; +} + +.-inset-y-full{ + top: -100%; + bottom: -100%; +} + +.inset-y-5vw{ + top: 5vw; + bottom: 5vw; +} + +.top-0{ + top: 0px; +} + +.top-1{ + top: 0.25rem; +} + +.top-2{ + top: 0.5rem; +} + +.top-3{ + top: 0.75rem; +} + +.top-4{ + top: 1rem; +} + +.top-5{ + top: 1.25rem; +} + +.top-6{ + top: 1.5rem; +} + +.top-7{ + top: 1.75rem; +} + +.top-8{ + top: 2rem; +} + +.top-9{ + top: 2.25rem; +} + +.top-10{ + top: 2.5rem; +} + +.top-11{ + top: 2.75rem; +} + +.top-12{ + top: 3rem; +} + +.top-14{ + top: 3.5rem; +} + +.top-16{ + top: 4rem; +} + +.top-20{ + top: 5rem; +} + +.top-24{ + top: 6rem; +} + +.top-28{ + top: 7rem; +} + +.top-32{ + top: 8rem; +} + +.top-36{ + top: 9rem; +} + +.top-40{ + top: 10rem; +} + +.top-44{ + top: 11rem; +} + +.top-48{ + top: 12rem; +} + +.top-52{ + top: 13rem; +} + +.top-56{ + top: 14rem; +} + +.top-60{ + top: 15rem; +} + +.top-64{ + top: 16rem; +} + +.top-72{ + top: 18rem; +} + +.top-80{ + top: 20rem; +} + +.top-96{ + top: 24rem; +} + +.top-auto{ + top: auto; +} + +.top-px{ + top: 1px; +} + +.top-0\.5{ + top: 0.125rem; +} + +.top-1\.5{ + top: 0.375rem; +} + +.top-2\.5{ + top: 0.625rem; +} + +.top-3\.5{ + top: 0.875rem; +} + +.-top-0{ + top: 0px; +} + +.-top-1{ + top: -0.25rem; +} + +.-top-2{ + top: -0.5rem; +} + +.-top-3{ + top: -0.75rem; +} + +.-top-4{ + top: -1rem; +} + +.-top-5{ + top: -1.25rem; +} + +.-top-6{ + top: -1.5rem; +} + +.-top-7{ + top: -1.75rem; +} + +.-top-8{ + top: -2rem; +} + +.-top-9{ + top: -2.25rem; +} + +.-top-10{ + top: -2.5rem; +} + +.-top-11{ + top: -2.75rem; +} + +.-top-12{ + top: -3rem; +} + +.-top-14{ + top: -3.5rem; +} + +.-top-16{ + top: -4rem; +} + +.-top-20{ + top: -5rem; +} + +.-top-24{ + top: -6rem; +} + +.-top-28{ + top: -7rem; +} + +.-top-32{ + top: -8rem; +} + +.-top-36{ + top: -9rem; +} + +.-top-40{ + top: -10rem; +} + +.-top-44{ + top: -11rem; +} + +.-top-48{ + top: -12rem; +} + +.-top-52{ + top: -13rem; +} + +.-top-56{ + top: -14rem; +} + +.-top-60{ + top: -15rem; +} + +.-top-64{ + top: -16rem; +} + +.-top-72{ + top: -18rem; +} + +.-top-80{ + top: -20rem; +} + +.-top-96{ + top: -24rem; +} + +.-top-px{ + top: -1px; +} + +.-top-0\.5{ + top: -0.125rem; +} + +.-top-1\.5{ + top: -0.375rem; +} + +.-top-2\.5{ + top: -0.625rem; +} + +.-top-3\.5{ + top: -0.875rem; +} + +.top-1\/2{ + top: 50%; +} + +.top-1\/3{ + top: 33.333333%; +} + +.top-2\/3{ + top: 66.666667%; +} + +.top-1\/4{ + top: 25%; +} + +.top-2\/4{ + top: 50%; +} + +.top-3\/4{ + top: 75%; +} + +.top-full{ + top: 100%; +} + +.-top-1\/2{ + top: -50%; +} + +.-top-1\/3{ + top: -33.333333%; +} + +.-top-2\/3{ + top: -66.666667%; +} + +.-top-1\/4{ + top: -25%; +} + +.-top-2\/4{ + top: -50%; +} + +.-top-3\/4{ + top: -75%; +} + +.-top-full{ + top: -100%; +} + +.top-5vw{ + top: 5vw; +} + +.right-0{ + right: 0px; +} + +.right-1{ + right: 0.25rem; +} + +.right-2{ + right: 0.5rem; +} + +.right-3{ + right: 0.75rem; +} + +.right-4{ + right: 1rem; +} + +.right-5{ + right: 1.25rem; +} + +.right-6{ + right: 1.5rem; +} + +.right-7{ + right: 1.75rem; +} + +.right-8{ + right: 2rem; +} + +.right-9{ + right: 2.25rem; +} + +.right-10{ + right: 2.5rem; +} + +.right-11{ + right: 2.75rem; +} + +.right-12{ + right: 3rem; +} + +.right-14{ + right: 3.5rem; +} + +.right-16{ + right: 4rem; +} + +.right-20{ + right: 5rem; +} + +.right-24{ + right: 6rem; +} + +.right-28{ + right: 7rem; +} + +.right-32{ + right: 8rem; +} + +.right-36{ + right: 9rem; +} + +.right-40{ + right: 10rem; +} + +.right-44{ + right: 11rem; +} + +.right-48{ + right: 12rem; +} + +.right-52{ + right: 13rem; +} + +.right-56{ + right: 14rem; +} + +.right-60{ + right: 15rem; +} + +.right-64{ + right: 16rem; +} + +.right-72{ + right: 18rem; +} + +.right-80{ + right: 20rem; +} + +.right-96{ + right: 24rem; +} + +.right-auto{ + right: auto; +} + +.right-px{ + right: 1px; +} + +.right-0\.5{ + right: 0.125rem; +} + +.right-1\.5{ + right: 0.375rem; +} + +.right-2\.5{ + right: 0.625rem; +} + +.right-3\.5{ + right: 0.875rem; +} + +.-right-0{ + right: 0px; +} + +.-right-1{ + right: -0.25rem; +} + +.-right-2{ + right: -0.5rem; +} + +.-right-3{ + right: -0.75rem; +} + +.-right-4{ + right: -1rem; +} + +.-right-5{ + right: -1.25rem; +} + +.-right-6{ + right: -1.5rem; +} + +.-right-7{ + right: -1.75rem; +} + +.-right-8{ + right: -2rem; +} + +.-right-9{ + right: -2.25rem; +} + +.-right-10{ + right: -2.5rem; +} + +.-right-11{ + right: -2.75rem; +} + +.-right-12{ + right: -3rem; +} + +.-right-14{ + right: -3.5rem; +} + +.-right-16{ + right: -4rem; +} + +.-right-20{ + right: -5rem; +} + +.-right-24{ + right: -6rem; +} + +.-right-28{ + right: -7rem; +} + +.-right-32{ + right: -8rem; +} + +.-right-36{ + right: -9rem; +} + +.-right-40{ + right: -10rem; +} + +.-right-44{ + right: -11rem; +} + +.-right-48{ + right: -12rem; +} + +.-right-52{ + right: -13rem; +} + +.-right-56{ + right: -14rem; +} + +.-right-60{ + right: -15rem; +} + +.-right-64{ + right: -16rem; +} + +.-right-72{ + right: -18rem; +} + +.-right-80{ + right: -20rem; +} + +.-right-96{ + right: -24rem; +} + +.-right-px{ + right: -1px; +} + +.-right-0\.5{ + right: -0.125rem; +} + +.-right-1\.5{ + right: -0.375rem; +} + +.-right-2\.5{ + right: -0.625rem; +} + +.-right-3\.5{ + right: -0.875rem; +} + +.right-1\/2{ + right: 50%; +} + +.right-1\/3{ + right: 33.333333%; +} + +.right-2\/3{ + right: 66.666667%; +} + +.right-1\/4{ + right: 25%; +} + +.right-2\/4{ + right: 50%; +} + +.right-3\/4{ + right: 75%; +} + +.right-full{ + right: 100%; +} + +.-right-1\/2{ + right: -50%; +} + +.-right-1\/3{ + right: -33.333333%; +} + +.-right-2\/3{ + right: -66.666667%; +} + +.-right-1\/4{ + right: -25%; +} + +.-right-2\/4{ + right: -50%; +} + +.-right-3\/4{ + right: -75%; +} + +.-right-full{ + right: -100%; +} + +.right-5vw{ + right: 5vw; +} + +.bottom-0{ + bottom: 0px; +} + +.bottom-1{ + bottom: 0.25rem; +} + +.bottom-2{ + bottom: 0.5rem; +} + +.bottom-3{ + bottom: 0.75rem; +} + +.bottom-4{ + bottom: 1rem; +} + +.bottom-5{ + bottom: 1.25rem; +} + +.bottom-6{ + bottom: 1.5rem; +} + +.bottom-7{ + bottom: 1.75rem; +} + +.bottom-8{ + bottom: 2rem; +} + +.bottom-9{ + bottom: 2.25rem; +} + +.bottom-10{ + bottom: 2.5rem; +} + +.bottom-11{ + bottom: 2.75rem; +} + +.bottom-12{ + bottom: 3rem; +} + +.bottom-14{ + bottom: 3.5rem; +} + +.bottom-16{ + bottom: 4rem; +} + +.bottom-20{ + bottom: 5rem; +} + +.bottom-24{ + bottom: 6rem; +} + +.bottom-28{ + bottom: 7rem; +} + +.bottom-32{ + bottom: 8rem; +} + +.bottom-36{ + bottom: 9rem; +} + +.bottom-40{ + bottom: 10rem; +} + +.bottom-44{ + bottom: 11rem; +} + +.bottom-48{ + bottom: 12rem; +} + +.bottom-52{ + bottom: 13rem; +} + +.bottom-56{ + bottom: 14rem; +} + +.bottom-60{ + bottom: 15rem; +} + +.bottom-64{ + bottom: 16rem; +} + +.bottom-72{ + bottom: 18rem; +} + +.bottom-80{ + bottom: 20rem; +} + +.bottom-96{ + bottom: 24rem; +} + +.bottom-auto{ + bottom: auto; +} + +.bottom-px{ + bottom: 1px; +} + +.bottom-0\.5{ + bottom: 0.125rem; +} + +.bottom-1\.5{ + bottom: 0.375rem; +} + +.bottom-2\.5{ + bottom: 0.625rem; +} + +.bottom-3\.5{ + bottom: 0.875rem; +} + +.-bottom-0{ + bottom: 0px; +} + +.-bottom-1{ + bottom: -0.25rem; +} + +.-bottom-2{ + bottom: -0.5rem; +} + +.-bottom-3{ + bottom: -0.75rem; +} + +.-bottom-4{ + bottom: -1rem; +} + +.-bottom-5{ + bottom: -1.25rem; +} + +.-bottom-6{ + bottom: -1.5rem; +} + +.-bottom-7{ + bottom: -1.75rem; +} + +.-bottom-8{ + bottom: -2rem; +} + +.-bottom-9{ + bottom: -2.25rem; +} + +.-bottom-10{ + bottom: -2.5rem; +} + +.-bottom-11{ + bottom: -2.75rem; +} + +.-bottom-12{ + bottom: -3rem; +} + +.-bottom-14{ + bottom: -3.5rem; +} + +.-bottom-16{ + bottom: -4rem; +} + +.-bottom-20{ + bottom: -5rem; +} + +.-bottom-24{ + bottom: -6rem; +} + +.-bottom-28{ + bottom: -7rem; +} + +.-bottom-32{ + bottom: -8rem; +} + +.-bottom-36{ + bottom: -9rem; +} + +.-bottom-40{ + bottom: -10rem; +} + +.-bottom-44{ + bottom: -11rem; +} + +.-bottom-48{ + bottom: -12rem; +} + +.-bottom-52{ + bottom: -13rem; +} + +.-bottom-56{ + bottom: -14rem; +} + +.-bottom-60{ + bottom: -15rem; +} + +.-bottom-64{ + bottom: -16rem; +} + +.-bottom-72{ + bottom: -18rem; +} + +.-bottom-80{ + bottom: -20rem; +} + +.-bottom-96{ + bottom: -24rem; +} + +.-bottom-px{ + bottom: -1px; +} + +.-bottom-0\.5{ + bottom: -0.125rem; +} + +.-bottom-1\.5{ + bottom: -0.375rem; +} + +.-bottom-2\.5{ + bottom: -0.625rem; +} + +.-bottom-3\.5{ + bottom: -0.875rem; +} + +.bottom-1\/2{ + bottom: 50%; +} + +.bottom-1\/3{ + bottom: 33.333333%; +} + +.bottom-2\/3{ + bottom: 66.666667%; +} + +.bottom-1\/4{ + bottom: 25%; +} + +.bottom-2\/4{ + bottom: 50%; +} + +.bottom-3\/4{ + bottom: 75%; +} + +.bottom-full{ + bottom: 100%; +} + +.-bottom-1\/2{ + bottom: -50%; +} + +.-bottom-1\/3{ + bottom: -33.333333%; +} + +.-bottom-2\/3{ + bottom: -66.666667%; +} + +.-bottom-1\/4{ + bottom: -25%; +} + +.-bottom-2\/4{ + bottom: -50%; +} + +.-bottom-3\/4{ + bottom: -75%; +} + +.-bottom-full{ + bottom: -100%; +} + +.bottom-5vw{ + bottom: 5vw; +} + +.left-0{ + left: 0px; +} + +.left-1{ + left: 0.25rem; +} + +.left-2{ + left: 0.5rem; +} + +.left-3{ + left: 0.75rem; +} + +.left-4{ + left: 1rem; +} + +.left-5{ + left: 1.25rem; +} + +.left-6{ + left: 1.5rem; +} + +.left-7{ + left: 1.75rem; +} + +.left-8{ + left: 2rem; +} + +.left-9{ + left: 2.25rem; +} + +.left-10{ + left: 2.5rem; +} + +.left-11{ + left: 2.75rem; +} + +.left-12{ + left: 3rem; +} + +.left-14{ + left: 3.5rem; +} + +.left-16{ + left: 4rem; +} + +.left-20{ + left: 5rem; +} + +.left-24{ + left: 6rem; +} + +.left-28{ + left: 7rem; +} + +.left-32{ + left: 8rem; +} + +.left-36{ + left: 9rem; +} + +.left-40{ + left: 10rem; +} + +.left-44{ + left: 11rem; +} + +.left-48{ + left: 12rem; +} + +.left-52{ + left: 13rem; +} + +.left-56{ + left: 14rem; +} + +.left-60{ + left: 15rem; +} + +.left-64{ + left: 16rem; +} + +.left-72{ + left: 18rem; +} + +.left-80{ + left: 20rem; +} + +.left-96{ + left: 24rem; +} + +.left-auto{ + left: auto; +} + +.left-px{ + left: 1px; +} + +.left-0\.5{ + left: 0.125rem; +} + +.left-1\.5{ + left: 0.375rem; +} + +.left-2\.5{ + left: 0.625rem; +} + +.left-3\.5{ + left: 0.875rem; +} + +.-left-0{ + left: 0px; +} + +.-left-1{ + left: -0.25rem; +} + +.-left-2{ + left: -0.5rem; +} + +.-left-3{ + left: -0.75rem; +} + +.-left-4{ + left: -1rem; +} + +.-left-5{ + left: -1.25rem; +} + +.-left-6{ + left: -1.5rem; +} + +.-left-7{ + left: -1.75rem; +} + +.-left-8{ + left: -2rem; +} + +.-left-9{ + left: -2.25rem; +} + +.-left-10{ + left: -2.5rem; +} + +.-left-11{ + left: -2.75rem; +} + +.-left-12{ + left: -3rem; +} + +.-left-14{ + left: -3.5rem; +} + +.-left-16{ + left: -4rem; +} + +.-left-20{ + left: -5rem; +} + +.-left-24{ + left: -6rem; +} + +.-left-28{ + left: -7rem; +} + +.-left-32{ + left: -8rem; +} + +.-left-36{ + left: -9rem; +} + +.-left-40{ + left: -10rem; +} + +.-left-44{ + left: -11rem; +} + +.-left-48{ + left: -12rem; +} + +.-left-52{ + left: -13rem; +} + +.-left-56{ + left: -14rem; +} + +.-left-60{ + left: -15rem; +} + +.-left-64{ + left: -16rem; +} + +.-left-72{ + left: -18rem; +} + +.-left-80{ + left: -20rem; +} + +.-left-96{ + left: -24rem; +} + +.-left-px{ + left: -1px; +} + +.-left-0\.5{ + left: -0.125rem; +} + +.-left-1\.5{ + left: -0.375rem; +} + +.-left-2\.5{ + left: -0.625rem; +} + +.-left-3\.5{ + left: -0.875rem; +} + +.left-1\/2{ + left: 50%; +} + +.left-1\/3{ + left: 33.333333%; +} + +.left-2\/3{ + left: 66.666667%; +} + +.left-1\/4{ + left: 25%; +} + +.left-2\/4{ + left: 50%; +} + +.left-3\/4{ + left: 75%; +} + +.left-full{ + left: 100%; +} + +.-left-1\/2{ + left: -50%; +} + +.-left-1\/3{ + left: -33.333333%; +} + +.-left-2\/3{ + left: -66.666667%; +} + +.-left-1\/4{ + left: -25%; +} + +.-left-2\/4{ + left: -50%; +} + +.-left-3\/4{ + left: -75%; +} + +.-left-full{ + left: -100%; +} + +.left-5vw{ + left: 5vw; +} + +.isolate{ + isolation: isolate; +} + +.isolation-auto{ + isolation: auto; +} + +.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-auto{ + z-index: auto; +} + +.focus-within\:z-0:focus-within{ + z-index: 0; +} + +.focus-within\:z-10:focus-within{ + z-index: 10; +} + +.focus-within\:z-20:focus-within{ + z-index: 20; +} + +.focus-within\:z-30:focus-within{ + z-index: 30; +} + +.focus-within\:z-40:focus-within{ + z-index: 40; +} + +.focus-within\:z-50:focus-within{ + z-index: 50; +} + +.focus-within\:z-auto:focus-within{ + z-index: auto; +} + +.focus\:z-0:focus{ + z-index: 0; +} + +.focus\:z-10:focus{ + z-index: 10; +} + +.focus\:z-20:focus{ + z-index: 20; +} + +.focus\:z-30:focus{ + z-index: 30; +} + +.focus\:z-40:focus{ + z-index: 40; +} + +.focus\:z-50:focus{ + z-index: 50; +} + +.focus\:z-auto:focus{ + z-index: auto; +} + +.order-1{ + order: 1; +} + +.order-2{ + order: 2; +} + +.order-3{ + order: 3; +} + +.order-4{ + order: 4; +} + +.order-5{ + order: 5; +} + +.order-6{ + order: 6; +} + +.order-7{ + order: 7; +} + +.order-8{ + order: 8; +} + +.order-9{ + order: 9; +} + +.order-10{ + order: 10; +} + +.order-11{ + order: 11; +} + +.order-12{ + order: 12; +} + +.order-first{ + order: -9999; +} + +.order-last{ + order: 9999; +} + +.order-none{ + order: 0; +} + +.col-auto{ + grid-column: auto; +} + +.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-4{ + grid-column: span 4 / span 4; +} + +.col-span-5{ + grid-column: span 5 / span 5; +} + +.col-span-6{ + grid-column: span 6 / span 6; +} + +.col-span-7{ + grid-column: span 7 / span 7; +} + +.col-span-8{ + grid-column: span 8 / span 8; +} + +.col-span-9{ + grid-column: span 9 / span 9; +} + +.col-span-10{ + grid-column: span 10 / span 10; +} + +.col-span-11{ + grid-column: span 11 / span 11; +} + +.col-span-12{ + grid-column: span 12 / span 12; +} + +.col-span-full{ + grid-column: 1 / -1; +} + +.col-start-1{ + grid-column-start: 1; +} + +.col-start-2{ + grid-column-start: 2; +} + +.col-start-3{ + grid-column-start: 3; +} + +.col-start-4{ + grid-column-start: 4; +} + +.col-start-5{ + grid-column-start: 5; +} + +.col-start-6{ + grid-column-start: 6; +} + +.col-start-7{ + grid-column-start: 7; +} + +.col-start-8{ + grid-column-start: 8; +} + +.col-start-9{ + grid-column-start: 9; +} + +.col-start-10{ + grid-column-start: 10; +} + +.col-start-11{ + grid-column-start: 11; +} + +.col-start-12{ + grid-column-start: 12; +} + +.col-start-13{ + grid-column-start: 13; +} + +.col-start-auto{ + grid-column-start: auto; +} + +.col-end-1{ + grid-column-end: 1; +} + +.col-end-2{ + grid-column-end: 2; +} + +.col-end-3{ + grid-column-end: 3; +} + +.col-end-4{ + grid-column-end: 4; +} + +.col-end-5{ + grid-column-end: 5; +} + +.col-end-6{ + grid-column-end: 6; +} + +.col-end-7{ + grid-column-end: 7; +} + +.col-end-8{ + grid-column-end: 8; +} + +.col-end-9{ + grid-column-end: 9; +} + +.col-end-10{ + grid-column-end: 10; +} + +.col-end-11{ + grid-column-end: 11; +} + +.col-end-12{ + grid-column-end: 12; +} + +.col-end-13{ + grid-column-end: 13; +} + +.col-end-auto{ + grid-column-end: auto; +} + +.row-auto{ + grid-row: auto; +} + +.row-span-1{ + grid-row: span 1 / span 1; +} + +.row-span-2{ + grid-row: span 2 / span 2; +} + +.row-span-3{ + grid-row: span 3 / span 3; +} + +.row-span-4{ + grid-row: span 4 / span 4; +} + +.row-span-5{ + grid-row: span 5 / span 5; +} + +.row-span-6{ + grid-row: span 6 / span 6; +} + +.row-span-full{ + grid-row: 1 / -1; +} + +.row-start-1{ + grid-row-start: 1; +} + +.row-start-2{ + grid-row-start: 2; +} + +.row-start-3{ + grid-row-start: 3; +} + +.row-start-4{ + grid-row-start: 4; +} + +.row-start-5{ + grid-row-start: 5; +} + +.row-start-6{ + grid-row-start: 6; +} + +.row-start-7{ + grid-row-start: 7; +} + +.row-start-auto{ + grid-row-start: auto; +} + +.row-end-1{ + grid-row-end: 1; +} + +.row-end-2{ + grid-row-end: 2; +} + +.row-end-3{ + grid-row-end: 3; +} + +.row-end-4{ + grid-row-end: 4; +} + +.row-end-5{ + grid-row-end: 5; +} + +.row-end-6{ + grid-row-end: 6; +} + +.row-end-7{ + grid-row-end: 7; +} + +.row-end-auto{ + grid-row-end: auto; +} + +.float-right{ + float: right; +} + +.float-left{ + float: left; +} + +.float-none{ + float: none; +} + +.clear-left{ + clear: left; +} + +.clear-right{ + clear: right; +} + +.clear-both{ + clear: both; +} + +.clear-none{ + clear: none; +} + +.m-0{ + margin: 0px; +} + +.m-1{ + margin: 0.25rem; +} + +.m-2{ + margin: 0.5rem; +} + +.m-3{ + margin: 0.75rem; +} + +.m-4{ + margin: 1rem; +} + +.m-5{ + margin: 1.25rem; +} + +.m-6{ + margin: 1.5rem; +} + +.m-7{ + margin: 1.75rem; +} + +.m-8{ + margin: 2rem; +} + +.m-9{ + margin: 2.25rem; +} + +.m-10{ + margin: 2.5rem; +} + +.m-11{ + margin: 2.75rem; +} + +.m-12{ + margin: 3rem; +} + +.m-14{ + margin: 3.5rem; +} + +.m-16{ + margin: 4rem; +} + +.m-20{ + margin: 5rem; +} + +.m-24{ + margin: 6rem; +} + +.m-28{ + margin: 7rem; +} + +.m-32{ + margin: 8rem; +} + +.m-36{ + margin: 9rem; +} + +.m-40{ + margin: 10rem; +} + +.m-44{ + margin: 11rem; +} + +.m-48{ + margin: 12rem; +} + +.m-52{ + margin: 13rem; +} + +.m-56{ + margin: 14rem; +} + +.m-60{ + margin: 15rem; +} + +.m-64{ + margin: 16rem; +} + +.m-72{ + margin: 18rem; +} + +.m-80{ + margin: 20rem; +} + +.m-96{ + margin: 24rem; +} + +.m-auto{ + margin: auto; +} + +.m-px{ + margin: 1px; +} + +.m-0\.5{ + margin: 0.125rem; +} + +.m-1\.5{ + margin: 0.375rem; +} + +.m-2\.5{ + margin: 0.625rem; +} + +.m-3\.5{ + margin: 0.875rem; +} + +.-m-0{ + margin: 0px; +} + +.-m-1{ + margin: -0.25rem; +} + +.-m-2{ + margin: -0.5rem; +} + +.-m-3{ + margin: -0.75rem; +} + +.-m-4{ + margin: -1rem; +} + +.-m-5{ + margin: -1.25rem; +} + +.-m-6{ + margin: -1.5rem; +} + +.-m-7{ + margin: -1.75rem; +} + +.-m-8{ + margin: -2rem; +} + +.-m-9{ + margin: -2.25rem; +} + +.-m-10{ + margin: -2.5rem; +} + +.-m-11{ + margin: -2.75rem; +} + +.-m-12{ + margin: -3rem; +} + +.-m-14{ + margin: -3.5rem; +} + +.-m-16{ + margin: -4rem; +} + +.-m-20{ + margin: -5rem; +} + +.-m-24{ + margin: -6rem; +} + +.-m-28{ + margin: -7rem; +} + +.-m-32{ + margin: -8rem; +} + +.-m-36{ + margin: -9rem; +} + +.-m-40{ + margin: -10rem; +} + +.-m-44{ + margin: -11rem; +} + +.-m-48{ + margin: -12rem; +} + +.-m-52{ + margin: -13rem; +} + +.-m-56{ + margin: -14rem; +} + +.-m-60{ + margin: -15rem; +} + +.-m-64{ + margin: -16rem; +} + +.-m-72{ + margin: -18rem; +} + +.-m-80{ + margin: -20rem; +} + +.-m-96{ + margin: -24rem; +} + +.-m-px{ + margin: -1px; +} + +.-m-0\.5{ + margin: -0.125rem; +} + +.-m-1\.5{ + margin: -0.375rem; +} + +.-m-2\.5{ + margin: -0.625rem; +} + +.-m-3\.5{ + margin: -0.875rem; +} + +.mx-0{ + margin-left: 0px; + margin-right: 0px; +} + +.mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +.mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; +} + +.mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; +} + +.mx-4{ + margin-left: 1rem; + margin-right: 1rem; +} + +.mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; +} + +.mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; +} + +.mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; +} + +.mx-8{ + margin-left: 2rem; + margin-right: 2rem; +} + +.mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; +} + +.mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; +} + +.mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; +} + +.mx-12{ + margin-left: 3rem; + margin-right: 3rem; +} + +.mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; +} + +.mx-16{ + margin-left: 4rem; + margin-right: 4rem; +} + +.mx-20{ + margin-left: 5rem; + margin-right: 5rem; +} + +.mx-24{ + margin-left: 6rem; + margin-right: 6rem; +} + +.mx-28{ + margin-left: 7rem; + margin-right: 7rem; +} + +.mx-32{ + margin-left: 8rem; + margin-right: 8rem; +} + +.mx-36{ + margin-left: 9rem; + margin-right: 9rem; +} + +.mx-40{ + margin-left: 10rem; + margin-right: 10rem; +} + +.mx-44{ + margin-left: 11rem; + margin-right: 11rem; +} + +.mx-48{ + margin-left: 12rem; + margin-right: 12rem; +} + +.mx-52{ + margin-left: 13rem; + margin-right: 13rem; +} + +.mx-56{ + margin-left: 14rem; + margin-right: 14rem; +} + +.mx-60{ + margin-left: 15rem; + margin-right: 15rem; +} + +.mx-64{ + margin-left: 16rem; + margin-right: 16rem; +} + +.mx-72{ + margin-left: 18rem; + margin-right: 18rem; +} + +.mx-80{ + margin-left: 20rem; + margin-right: 20rem; +} + +.mx-96{ + margin-left: 24rem; + margin-right: 24rem; +} + +.mx-auto{ + margin-left: auto; + margin-right: auto; +} + +.mx-px{ + margin-left: 1px; + margin-right: 1px; +} + +.mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; +} + +.mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; +} + +.mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; +} + +.mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; +} + +.-mx-0{ + margin-left: 0px; + margin-right: 0px; +} + +.-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; +} + +.-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; +} + +.-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; +} + +.-mx-4{ + margin-left: -1rem; + margin-right: -1rem; +} + +.-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; +} + +.-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; +} + +.-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; +} + +.-mx-8{ + margin-left: -2rem; + margin-right: -2rem; +} + +.-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; +} + +.-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; +} + +.-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; +} + +.-mx-12{ + margin-left: -3rem; + margin-right: -3rem; +} + +.-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; +} + +.-mx-16{ + margin-left: -4rem; + margin-right: -4rem; +} + +.-mx-20{ + margin-left: -5rem; + margin-right: -5rem; +} + +.-mx-24{ + margin-left: -6rem; + margin-right: -6rem; +} + +.-mx-28{ + margin-left: -7rem; + margin-right: -7rem; +} + +.-mx-32{ + margin-left: -8rem; + margin-right: -8rem; +} + +.-mx-36{ + margin-left: -9rem; + margin-right: -9rem; +} + +.-mx-40{ + margin-left: -10rem; + margin-right: -10rem; +} + +.-mx-44{ + margin-left: -11rem; + margin-right: -11rem; +} + +.-mx-48{ + margin-left: -12rem; + margin-right: -12rem; +} + +.-mx-52{ + margin-left: -13rem; + margin-right: -13rem; +} + +.-mx-56{ + margin-left: -14rem; + margin-right: -14rem; +} + +.-mx-60{ + margin-left: -15rem; + margin-right: -15rem; +} + +.-mx-64{ + margin-left: -16rem; + margin-right: -16rem; +} + +.-mx-72{ + margin-left: -18rem; + margin-right: -18rem; +} + +.-mx-80{ + margin-left: -20rem; + margin-right: -20rem; +} + +.-mx-96{ + margin-left: -24rem; + margin-right: -24rem; +} + +.-mx-px{ + margin-left: -1px; + margin-right: -1px; +} + +.-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; +} + +.-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; +} + +.-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; +} + +.-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; +} + +.my-0{ + margin-top: 0px; + margin-bottom: 0px; +} + +.my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; +} + +.my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +.my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; +} + +.my-4{ + margin-top: 1rem; + margin-bottom: 1rem; +} + +.my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; +} + +.my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; +} + +.my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; +} + +.my-8{ + margin-top: 2rem; + margin-bottom: 2rem; +} + +.my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; +} + +.my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; +} + +.my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; +} + +.my-12{ + margin-top: 3rem; + margin-bottom: 3rem; +} + +.my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; +} + +.my-16{ + margin-top: 4rem; + margin-bottom: 4rem; +} + +.my-20{ + margin-top: 5rem; + margin-bottom: 5rem; +} + +.my-24{ + margin-top: 6rem; + margin-bottom: 6rem; +} + +.my-28{ + margin-top: 7rem; + margin-bottom: 7rem; +} + +.my-32{ + margin-top: 8rem; + margin-bottom: 8rem; +} + +.my-36{ + margin-top: 9rem; + margin-bottom: 9rem; +} + +.my-40{ + margin-top: 10rem; + margin-bottom: 10rem; +} + +.my-44{ + margin-top: 11rem; + margin-bottom: 11rem; +} + +.my-48{ + margin-top: 12rem; + margin-bottom: 12rem; +} + +.my-52{ + margin-top: 13rem; + margin-bottom: 13rem; +} + +.my-56{ + margin-top: 14rem; + margin-bottom: 14rem; +} + +.my-60{ + margin-top: 15rem; + margin-bottom: 15rem; +} + +.my-64{ + margin-top: 16rem; + margin-bottom: 16rem; +} + +.my-72{ + margin-top: 18rem; + margin-bottom: 18rem; +} + +.my-80{ + margin-top: 20rem; + margin-bottom: 20rem; +} + +.my-96{ + margin-top: 24rem; + margin-bottom: 24rem; +} + +.my-auto{ + margin-top: auto; + margin-bottom: auto; +} + +.my-px{ + margin-top: 1px; + margin-bottom: 1px; +} + +.my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; +} + +.my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; +} + +.my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} + +.my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; +} + +.-my-0{ + margin-top: 0px; + margin-bottom: 0px; +} + +.-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; +} + +.-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; +} + +.-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; +} + +.-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; +} + +.-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; +} + +.-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; +} + +.-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; +} + +.-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; +} + +.-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; +} + +.-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; +} + +.-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; +} + +.-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; +} + +.-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; +} + +.-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; +} + +.-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; +} + +.-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; +} + +.-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; +} + +.-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; +} + +.-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; +} + +.-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; +} + +.-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; +} + +.-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; +} + +.-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; +} + +.-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; +} + +.-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; +} + +.-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; +} + +.-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; +} + +.-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; +} + +.-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; +} + +.-my-px{ + margin-top: -1px; + margin-bottom: -1px; +} + +.-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; +} + +.-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; +} + +.-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; +} + +.-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; +} + +.mt-0{ + margin-top: 0px; +} + +.mt-1{ + margin-top: 0.25rem; +} + +.mt-2{ + margin-top: 0.5rem; +} + +.mt-3{ + margin-top: 0.75rem; +} + +.mt-4{ + margin-top: 1rem; +} + +.mt-5{ + margin-top: 1.25rem; +} + +.mt-6{ + margin-top: 1.5rem; +} + +.mt-7{ + margin-top: 1.75rem; +} + +.mt-8{ + margin-top: 2rem; +} + +.mt-9{ + margin-top: 2.25rem; +} + +.mt-10{ + margin-top: 2.5rem; +} + +.mt-11{ + margin-top: 2.75rem; +} + +.mt-12{ + margin-top: 3rem; +} + +.mt-14{ + margin-top: 3.5rem; +} + +.mt-16{ + margin-top: 4rem; +} + +.mt-20{ + margin-top: 5rem; +} + +.mt-24{ + margin-top: 6rem; +} + +.mt-28{ + margin-top: 7rem; +} + +.mt-32{ + margin-top: 8rem; +} + +.mt-36{ + margin-top: 9rem; +} + +.mt-40{ + margin-top: 10rem; +} + +.mt-44{ + margin-top: 11rem; +} + +.mt-48{ + margin-top: 12rem; +} + +.mt-52{ + margin-top: 13rem; +} + +.mt-56{ + margin-top: 14rem; +} + +.mt-60{ + margin-top: 15rem; +} + +.mt-64{ + margin-top: 16rem; +} + +.mt-72{ + margin-top: 18rem; +} + +.mt-80{ + margin-top: 20rem; +} + +.mt-96{ + margin-top: 24rem; +} + +.mt-auto{ + margin-top: auto; +} + +.mt-px{ + margin-top: 1px; +} + +.mt-0\.5{ + margin-top: 0.125rem; +} + +.mt-1\.5{ + margin-top: 0.375rem; +} + +.mt-2\.5{ + margin-top: 0.625rem; +} + +.mt-3\.5{ + margin-top: 0.875rem; +} + +.-mt-0{ + margin-top: 0px; +} + +.-mt-1{ + margin-top: -0.25rem; +} + +.-mt-2{ + margin-top: -0.5rem; +} + +.-mt-3{ + margin-top: -0.75rem; +} + +.-mt-4{ + margin-top: -1rem; +} + +.-mt-5{ + margin-top: -1.25rem; +} + +.-mt-6{ + margin-top: -1.5rem; +} + +.-mt-7{ + margin-top: -1.75rem; +} + +.-mt-8{ + margin-top: -2rem; +} + +.-mt-9{ + margin-top: -2.25rem; +} + +.-mt-10{ + margin-top: -2.5rem; +} + +.-mt-11{ + margin-top: -2.75rem; +} + +.-mt-12{ + margin-top: -3rem; +} + +.-mt-14{ + margin-top: -3.5rem; +} + +.-mt-16{ + margin-top: -4rem; +} + +.-mt-20{ + margin-top: -5rem; +} + +.-mt-24{ + margin-top: -6rem; +} + +.-mt-28{ + margin-top: -7rem; +} + +.-mt-32{ + margin-top: -8rem; +} + +.-mt-36{ + margin-top: -9rem; +} + +.-mt-40{ + margin-top: -10rem; +} + +.-mt-44{ + margin-top: -11rem; +} + +.-mt-48{ + margin-top: -12rem; +} + +.-mt-52{ + margin-top: -13rem; +} + +.-mt-56{ + margin-top: -14rem; +} + +.-mt-60{ + margin-top: -15rem; +} + +.-mt-64{ + margin-top: -16rem; +} + +.-mt-72{ + margin-top: -18rem; +} + +.-mt-80{ + margin-top: -20rem; +} + +.-mt-96{ + margin-top: -24rem; +} + +.-mt-px{ + margin-top: -1px; +} + +.-mt-0\.5{ + margin-top: -0.125rem; +} + +.-mt-1\.5{ + margin-top: -0.375rem; +} + +.-mt-2\.5{ + margin-top: -0.625rem; +} + +.-mt-3\.5{ + margin-top: -0.875rem; +} + +.mr-0{ + margin-right: 0px; +} + +.mr-1{ + margin-right: 0.25rem; +} + +.mr-2{ + margin-right: 0.5rem; +} + +.mr-3{ + margin-right: 0.75rem; +} + +.mr-4{ + margin-right: 1rem; +} + +.mr-5{ + margin-right: 1.25rem; +} + +.mr-6{ + margin-right: 1.5rem; +} + +.mr-7{ + margin-right: 1.75rem; +} + +.mr-8{ + margin-right: 2rem; +} + +.mr-9{ + margin-right: 2.25rem; +} + +.mr-10{ + margin-right: 2.5rem; +} + +.mr-11{ + margin-right: 2.75rem; +} + +.mr-12{ + margin-right: 3rem; +} + +.mr-14{ + margin-right: 3.5rem; +} + +.mr-16{ + margin-right: 4rem; +} + +.mr-20{ + margin-right: 5rem; +} + +.mr-24{ + margin-right: 6rem; +} + +.mr-28{ + margin-right: 7rem; +} + +.mr-32{ + margin-right: 8rem; +} + +.mr-36{ + margin-right: 9rem; +} + +.mr-40{ + margin-right: 10rem; +} + +.mr-44{ + margin-right: 11rem; +} + +.mr-48{ + margin-right: 12rem; +} + +.mr-52{ + margin-right: 13rem; +} + +.mr-56{ + margin-right: 14rem; +} + +.mr-60{ + margin-right: 15rem; +} + +.mr-64{ + margin-right: 16rem; +} + +.mr-72{ + margin-right: 18rem; +} + +.mr-80{ + margin-right: 20rem; +} + +.mr-96{ + margin-right: 24rem; +} + +.mr-auto{ + margin-right: auto; +} + +.mr-px{ + margin-right: 1px; +} + +.mr-0\.5{ + margin-right: 0.125rem; +} + +.mr-1\.5{ + margin-right: 0.375rem; +} + +.mr-2\.5{ + margin-right: 0.625rem; +} + +.mr-3\.5{ + margin-right: 0.875rem; +} + +.-mr-0{ + margin-right: 0px; +} + +.-mr-1{ + margin-right: -0.25rem; +} + +.-mr-2{ + margin-right: -0.5rem; +} + +.-mr-3{ + margin-right: -0.75rem; +} + +.-mr-4{ + margin-right: -1rem; +} + +.-mr-5{ + margin-right: -1.25rem; +} + +.-mr-6{ + margin-right: -1.5rem; +} + +.-mr-7{ + margin-right: -1.75rem; +} + +.-mr-8{ + margin-right: -2rem; +} + +.-mr-9{ + margin-right: -2.25rem; +} + +.-mr-10{ + margin-right: -2.5rem; +} + +.-mr-11{ + margin-right: -2.75rem; +} + +.-mr-12{ + margin-right: -3rem; +} + +.-mr-14{ + margin-right: -3.5rem; +} + +.-mr-16{ + margin-right: -4rem; +} + +.-mr-20{ + margin-right: -5rem; +} + +.-mr-24{ + margin-right: -6rem; +} + +.-mr-28{ + margin-right: -7rem; +} + +.-mr-32{ + margin-right: -8rem; +} + +.-mr-36{ + margin-right: -9rem; +} + +.-mr-40{ + margin-right: -10rem; +} + +.-mr-44{ + margin-right: -11rem; +} + +.-mr-48{ + margin-right: -12rem; +} + +.-mr-52{ + margin-right: -13rem; +} + +.-mr-56{ + margin-right: -14rem; +} + +.-mr-60{ + margin-right: -15rem; +} + +.-mr-64{ + margin-right: -16rem; +} + +.-mr-72{ + margin-right: -18rem; +} + +.-mr-80{ + margin-right: -20rem; +} + +.-mr-96{ + margin-right: -24rem; +} + +.-mr-px{ + margin-right: -1px; +} + +.-mr-0\.5{ + margin-right: -0.125rem; +} + +.-mr-1\.5{ + margin-right: -0.375rem; +} + +.-mr-2\.5{ + margin-right: -0.625rem; +} + +.-mr-3\.5{ + margin-right: -0.875rem; +} + +.mb-0{ + margin-bottom: 0px; +} + +.mb-1{ + margin-bottom: 0.25rem; +} + +.mb-2{ + margin-bottom: 0.5rem; +} + +.mb-3{ + margin-bottom: 0.75rem; +} + +.mb-4{ + margin-bottom: 1rem; +} + +.mb-5{ + margin-bottom: 1.25rem; +} + +.mb-6{ + margin-bottom: 1.5rem; +} + +.mb-7{ + margin-bottom: 1.75rem; +} + +.mb-8{ + margin-bottom: 2rem; +} + +.mb-9{ + margin-bottom: 2.25rem; +} + +.mb-10{ + margin-bottom: 2.5rem; +} + +.mb-11{ + margin-bottom: 2.75rem; +} + +.mb-12{ + margin-bottom: 3rem; +} + +.mb-14{ + margin-bottom: 3.5rem; +} + +.mb-16{ + margin-bottom: 4rem; +} + +.mb-20{ + margin-bottom: 5rem; +} + +.mb-24{ + margin-bottom: 6rem; +} + +.mb-28{ + margin-bottom: 7rem; +} + +.mb-32{ + margin-bottom: 8rem; +} + +.mb-36{ + margin-bottom: 9rem; +} + +.mb-40{ + margin-bottom: 10rem; +} + +.mb-44{ + margin-bottom: 11rem; +} + +.mb-48{ + margin-bottom: 12rem; +} + +.mb-52{ + margin-bottom: 13rem; +} + +.mb-56{ + margin-bottom: 14rem; +} + +.mb-60{ + margin-bottom: 15rem; +} + +.mb-64{ + margin-bottom: 16rem; +} + +.mb-72{ + margin-bottom: 18rem; +} + +.mb-80{ + margin-bottom: 20rem; +} + +.mb-96{ + margin-bottom: 24rem; +} + +.mb-auto{ + margin-bottom: auto; +} + +.mb-px{ + margin-bottom: 1px; +} + +.mb-0\.5{ + margin-bottom: 0.125rem; +} + +.mb-1\.5{ + margin-bottom: 0.375rem; +} + +.mb-2\.5{ + margin-bottom: 0.625rem; +} + +.mb-3\.5{ + margin-bottom: 0.875rem; +} + +.-mb-0{ + margin-bottom: 0px; +} + +.-mb-1{ + margin-bottom: -0.25rem; +} + +.-mb-2{ + margin-bottom: -0.5rem; +} + +.-mb-3{ + margin-bottom: -0.75rem; +} + +.-mb-4{ + margin-bottom: -1rem; +} + +.-mb-5{ + margin-bottom: -1.25rem; +} + +.-mb-6{ + margin-bottom: -1.5rem; +} + +.-mb-7{ + margin-bottom: -1.75rem; +} + +.-mb-8{ + margin-bottom: -2rem; +} + +.-mb-9{ + margin-bottom: -2.25rem; +} + +.-mb-10{ + margin-bottom: -2.5rem; +} + +.-mb-11{ + margin-bottom: -2.75rem; +} + +.-mb-12{ + margin-bottom: -3rem; +} + +.-mb-14{ + margin-bottom: -3.5rem; +} + +.-mb-16{ + margin-bottom: -4rem; +} + +.-mb-20{ + margin-bottom: -5rem; +} + +.-mb-24{ + margin-bottom: -6rem; +} + +.-mb-28{ + margin-bottom: -7rem; +} + +.-mb-32{ + margin-bottom: -8rem; +} + +.-mb-36{ + margin-bottom: -9rem; +} + +.-mb-40{ + margin-bottom: -10rem; +} + +.-mb-44{ + margin-bottom: -11rem; +} + +.-mb-48{ + margin-bottom: -12rem; +} + +.-mb-52{ + margin-bottom: -13rem; +} + +.-mb-56{ + margin-bottom: -14rem; +} + +.-mb-60{ + margin-bottom: -15rem; +} + +.-mb-64{ + margin-bottom: -16rem; +} + +.-mb-72{ + margin-bottom: -18rem; +} + +.-mb-80{ + margin-bottom: -20rem; +} + +.-mb-96{ + margin-bottom: -24rem; +} + +.-mb-px{ + margin-bottom: -1px; +} + +.-mb-0\.5{ + margin-bottom: -0.125rem; +} + +.-mb-1\.5{ + margin-bottom: -0.375rem; +} + +.-mb-2\.5{ + margin-bottom: -0.625rem; +} + +.-mb-3\.5{ + margin-bottom: -0.875rem; +} + +.ml-0{ + margin-left: 0px; +} + +.ml-1{ + margin-left: 0.25rem; +} + +.ml-2{ + margin-left: 0.5rem; +} + +.ml-3{ + margin-left: 0.75rem; +} + +.ml-4{ + margin-left: 1rem; +} + +.ml-5{ + margin-left: 1.25rem; +} + +.ml-6{ + margin-left: 1.5rem; +} + +.ml-7{ + margin-left: 1.75rem; +} + +.ml-8{ + margin-left: 2rem; +} + +.ml-9{ + margin-left: 2.25rem; +} + +.ml-10{ + margin-left: 2.5rem; +} + +.ml-11{ + margin-left: 2.75rem; +} + +.ml-12{ + margin-left: 3rem; +} + +.ml-14{ + margin-left: 3.5rem; +} + +.ml-16{ + margin-left: 4rem; +} + +.ml-20{ + margin-left: 5rem; +} + +.ml-24{ + margin-left: 6rem; +} + +.ml-28{ + margin-left: 7rem; +} + +.ml-32{ + margin-left: 8rem; +} + +.ml-36{ + margin-left: 9rem; +} + +.ml-40{ + margin-left: 10rem; +} + +.ml-44{ + margin-left: 11rem; +} + +.ml-48{ + margin-left: 12rem; +} + +.ml-52{ + margin-left: 13rem; +} + +.ml-56{ + margin-left: 14rem; +} + +.ml-60{ + margin-left: 15rem; +} + +.ml-64{ + margin-left: 16rem; +} + +.ml-72{ + margin-left: 18rem; +} + +.ml-80{ + margin-left: 20rem; +} + +.ml-96{ + margin-left: 24rem; +} + +.ml-auto{ + margin-left: auto; +} + +.ml-px{ + margin-left: 1px; +} + +.ml-0\.5{ + margin-left: 0.125rem; +} + +.ml-1\.5{ + margin-left: 0.375rem; +} + +.ml-2\.5{ + margin-left: 0.625rem; +} + +.ml-3\.5{ + margin-left: 0.875rem; +} + +.-ml-0{ + margin-left: 0px; +} + +.-ml-1{ + margin-left: -0.25rem; +} + +.-ml-2{ + margin-left: -0.5rem; +} + +.-ml-3{ + margin-left: -0.75rem; +} + +.-ml-4{ + margin-left: -1rem; +} + +.-ml-5{ + margin-left: -1.25rem; +} + +.-ml-6{ + margin-left: -1.5rem; +} + +.-ml-7{ + margin-left: -1.75rem; +} + +.-ml-8{ + margin-left: -2rem; +} + +.-ml-9{ + margin-left: -2.25rem; +} + +.-ml-10{ + margin-left: -2.5rem; +} + +.-ml-11{ + margin-left: -2.75rem; +} + +.-ml-12{ + margin-left: -3rem; +} + +.-ml-14{ + margin-left: -3.5rem; +} + +.-ml-16{ + margin-left: -4rem; +} + +.-ml-20{ + margin-left: -5rem; +} + +.-ml-24{ + margin-left: -6rem; +} + +.-ml-28{ + margin-left: -7rem; +} + +.-ml-32{ + margin-left: -8rem; +} + +.-ml-36{ + margin-left: -9rem; +} + +.-ml-40{ + margin-left: -10rem; +} + +.-ml-44{ + margin-left: -11rem; +} + +.-ml-48{ + margin-left: -12rem; +} + +.-ml-52{ + margin-left: -13rem; +} + +.-ml-56{ + margin-left: -14rem; +} + +.-ml-60{ + margin-left: -15rem; +} + +.-ml-64{ + margin-left: -16rem; +} + +.-ml-72{ + margin-left: -18rem; +} + +.-ml-80{ + margin-left: -20rem; +} + +.-ml-96{ + margin-left: -24rem; +} + +.-ml-px{ + margin-left: -1px; +} + +.-ml-0\.5{ + margin-left: -0.125rem; +} + +.-ml-1\.5{ + margin-left: -0.375rem; +} + +.-ml-2\.5{ + margin-left: -0.625rem; +} + +.-ml-3\.5{ + margin-left: -0.875rem; +} + +.box-border{ + box-sizing: border-box; +} + +.box-content{ + box-sizing: content-box; +} + +.block{ + display: block; +} + +.inline-block{ + display: inline-block; +} + +.inline{ + display: inline; +} + +.flex{ + display: flex; +} + +.inline-flex{ + display: inline-flex; +} + +.table{ + display: table; +} + +.inline-table{ + display: inline-table; +} + +.table-caption{ + display: table-caption; +} + +.table-cell{ + display: table-cell; +} + +.table-column{ + display: table-column; +} + +.table-column-group{ + display: table-column-group; +} + +.table-footer-group{ + display: table-footer-group; +} + +.table-header-group{ + display: table-header-group; +} + +.table-row-group{ + display: table-row-group; +} + +.table-row{ + display: table-row; +} + +.flow-root{ + display: flow-root; +} + +.grid{ + display: grid; +} + +.inline-grid{ + display: inline-grid; +} + +.contents{ + display: contents; +} + +.list-item{ + display: list-item; +} + +.hidden{ + display: none; +} + +.h-0{ + height: 0px; +} + +.h-1{ + height: 0.25rem; +} + +.h-2{ + height: 0.5rem; +} + +.h-3{ + height: 0.75rem; +} + +.h-4{ + height: 1rem; +} + +.h-5{ + height: 1.25rem; +} + +.h-6{ + height: 1.5rem; +} + +.h-7{ + height: 1.75rem; +} + +.h-8{ + height: 2rem; +} + +.h-9{ + height: 2.25rem; +} + +.h-10{ + height: 2.5rem; +} + +.h-11{ + height: 2.75rem; +} + +.h-12{ + height: 3rem; +} + +.h-14{ + height: 3.5rem; +} + +.h-16{ + height: 4rem; +} + +.h-20{ + height: 5rem; +} + +.h-24{ + height: 6rem; +} + +.h-28{ + height: 7rem; +} + +.h-32{ + height: 8rem; +} + +.h-36{ + height: 9rem; +} + +.h-40{ + height: 10rem; +} + +.h-44{ + height: 11rem; +} + +.h-48{ + height: 12rem; +} + +.h-52{ + height: 13rem; +} + +.h-56{ + height: 14rem; +} + +.h-60{ + height: 15rem; +} + +.h-64{ + height: 16rem; +} + +.h-72{ + height: 18rem; +} + +.h-80{ + height: 20rem; +} + +.h-96{ + height: 24rem; +} + +.h-auto{ + height: auto; +} + +.h-px{ + height: 1px; +} + +.h-0\.5{ + height: 0.125rem; +} + +.h-1\.5{ + height: 0.375rem; +} + +.h-2\.5{ + height: 0.625rem; +} + +.h-3\.5{ + height: 0.875rem; +} + +.h-1\/2{ + height: 50%; +} + +.h-1\/3{ + height: 33.333333%; +} + +.h-2\/3{ + height: 66.666667%; +} + +.h-1\/4{ + height: 25%; +} + +.h-2\/4{ + height: 50%; +} + +.h-3\/4{ + height: 75%; +} + +.h-1\/5{ + height: 20%; +} + +.h-2\/5{ + height: 40%; +} + +.h-3\/5{ + height: 60%; +} + +.h-4\/5{ + height: 80%; +} + +.h-1\/6{ + height: 16.666667%; +} + +.h-2\/6{ + height: 33.333333%; +} + +.h-3\/6{ + height: 50%; +} + +.h-4\/6{ + height: 66.666667%; +} + +.h-5\/6{ + height: 83.333333%; +} + +.h-full{ + height: 100%; +} + +.h-screen{ + height: 100vh; +} + +.max-h-0{ + max-height: 0px; +} + +.max-h-1{ + max-height: 0.25rem; +} + +.max-h-2{ + max-height: 0.5rem; +} + +.max-h-3{ + max-height: 0.75rem; +} + +.max-h-4{ + max-height: 1rem; +} + +.max-h-5{ + max-height: 1.25rem; +} + +.max-h-6{ + max-height: 1.5rem; +} + +.max-h-7{ + max-height: 1.75rem; +} + +.max-h-8{ + max-height: 2rem; +} + +.max-h-9{ + max-height: 2.25rem; +} + +.max-h-10{ + max-height: 2.5rem; +} + +.max-h-11{ + max-height: 2.75rem; +} + +.max-h-12{ + max-height: 3rem; +} + +.max-h-14{ + max-height: 3.5rem; +} + +.max-h-16{ + max-height: 4rem; +} + +.max-h-20{ + max-height: 5rem; +} + +.max-h-24{ + max-height: 6rem; +} + +.max-h-28{ + max-height: 7rem; +} + +.max-h-32{ + max-height: 8rem; +} + +.max-h-36{ + max-height: 9rem; +} + +.max-h-40{ + max-height: 10rem; +} + +.max-h-44{ + max-height: 11rem; +} + +.max-h-48{ + max-height: 12rem; +} + +.max-h-52{ + max-height: 13rem; +} + +.max-h-56{ + max-height: 14rem; +} + +.max-h-60{ + max-height: 15rem; +} + +.max-h-64{ + max-height: 16rem; +} + +.max-h-72{ + max-height: 18rem; +} + +.max-h-80{ + max-height: 20rem; +} + +.max-h-96{ + max-height: 24rem; +} + +.max-h-px{ + max-height: 1px; +} + +.max-h-0\.5{ + max-height: 0.125rem; +} + +.max-h-1\.5{ + max-height: 0.375rem; +} + +.max-h-2\.5{ + max-height: 0.625rem; +} + +.max-h-3\.5{ + max-height: 0.875rem; +} + +.max-h-full{ + max-height: 100%; +} + +.max-h-screen{ + max-height: 100vh; +} + +.min-h-0{ + min-height: 0px; +} + +.min-h-full{ + min-height: 100%; +} + +.min-h-screen{ + min-height: 100vh; +} + +.w-0{ + width: 0px; +} + +.w-1{ + width: 0.25rem; +} + +.w-2{ + width: 0.5rem; +} + +.w-3{ + width: 0.75rem; +} + +.w-4{ + width: 1rem; +} + +.w-5{ + width: 1.25rem; +} + +.w-6{ + width: 1.5rem; +} + +.w-7{ + width: 1.75rem; +} + +.w-8{ + width: 2rem; +} + +.w-9{ + width: 2.25rem; +} + +.w-10{ + width: 2.5rem; +} + +.w-11{ + width: 2.75rem; +} + +.w-12{ + width: 3rem; +} + +.w-14{ + width: 3.5rem; +} + +.w-16{ + width: 4rem; +} + +.w-20{ + width: 5rem; +} + +.w-24{ + width: 6rem; +} + +.w-28{ + width: 7rem; +} + +.w-32{ + width: 8rem; +} + +.w-36{ + width: 9rem; +} + +.w-40{ + width: 10rem; +} + +.w-44{ + width: 11rem; +} + +.w-48{ + width: 12rem; +} + +.w-52{ + width: 13rem; +} + +.w-56{ + width: 14rem; +} + +.w-60{ + width: 15rem; +} + +.w-64{ + width: 16rem; +} + +.w-72{ + width: 18rem; +} + +.w-80{ + width: 20rem; +} + +.w-96{ + width: 24rem; +} + +.w-auto{ + width: auto; +} + +.w-px{ + width: 1px; +} + +.w-0\.5{ + width: 0.125rem; +} + +.w-1\.5{ + width: 0.375rem; +} + +.w-2\.5{ + width: 0.625rem; +} + +.w-3\.5{ + width: 0.875rem; +} + +.w-1\/2{ + width: 50%; +} + +.w-1\/3{ + width: 33.333333%; +} + +.w-2\/3{ + width: 66.666667%; +} + +.w-1\/4{ + width: 25%; +} + +.w-2\/4{ + width: 50%; +} + +.w-3\/4{ + width: 75%; +} + +.w-1\/5{ + width: 20%; +} + +.w-2\/5{ + width: 40%; +} + +.w-3\/5{ + width: 60%; +} + +.w-4\/5{ + width: 80%; +} + +.w-1\/6{ + width: 16.666667%; +} + +.w-2\/6{ + width: 33.333333%; +} + +.w-3\/6{ + width: 50%; +} + +.w-4\/6{ + width: 66.666667%; +} + +.w-5\/6{ + width: 83.333333%; +} + +.w-1\/12{ + width: 8.333333%; +} + +.w-2\/12{ + width: 16.666667%; +} + +.w-3\/12{ + width: 25%; +} + +.w-4\/12{ + width: 33.333333%; +} + +.w-5\/12{ + width: 41.666667%; +} + +.w-6\/12{ + width: 50%; +} + +.w-7\/12{ + width: 58.333333%; +} + +.w-8\/12{ + width: 66.666667%; +} + +.w-9\/12{ + width: 75%; +} + +.w-10\/12{ + width: 83.333333%; +} + +.w-11\/12{ + width: 91.666667%; +} + +.w-full{ + width: 100%; +} + +.w-screen{ + width: 100vw; +} + +.w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; +} + +.w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; +} + +.min-w-0{ + min-width: 0px; +} + +.min-w-full{ + min-width: 100%; +} + +.min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; +} + +.min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; +} + +.max-w-0{ + max-width: 0rem; +} + +.max-w-none{ + max-width: none; +} + +.max-w-xs{ + max-width: 20rem; +} + +.max-w-sm{ + max-width: 24rem; +} + +.max-w-md{ + max-width: 28rem; +} + +.max-w-lg{ + max-width: 32rem; +} + +.max-w-xl{ + max-width: 36rem; +} + +.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-full{ + max-width: 100%; +} + +.max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; +} + +.max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; +} + +.max-w-prose{ + max-width: 65ch; +} + +.max-w-screen-sm{ + max-width: 640px; +} + +.max-w-screen-md{ + max-width: 768px; +} + +.max-w-screen-lg{ + max-width: 1024px; +} + +.max-w-screen-xl{ + max-width: 1280px; +} + +.max-w-screen-2xl{ + max-width: 1536px; +} + +.flex-1{ + flex: 1 1 0%; +} + +.flex-auto{ + flex: 1 1 auto; +} + +.flex-initial{ + flex: 0 1 auto; +} + +.flex-none{ + flex: none; +} + +.flex-shrink-0{ + flex-shrink: 0; +} + +.flex-shrink{ + flex-shrink: 1; +} + +.flex-grow-0{ + flex-grow: 0; +} + +.flex-grow{ + flex-grow: 1; +} + +.table-auto{ + table-layout: auto; +} + +.table-fixed{ + table-layout: fixed; +} + +.border-collapse{ + border-collapse: collapse; +} + +.border-separate{ + border-collapse: separate; +} + +.origin-center{ + transform-origin: center; +} + +.origin-top{ + transform-origin: top; +} + +.origin-top-right{ + transform-origin: top right; +} + +.origin-right{ + transform-origin: right; +} + +.origin-bottom-right{ + transform-origin: bottom right; +} + +.origin-bottom{ + transform-origin: bottom; +} + +.origin-bottom-left{ + transform-origin: bottom left; +} + +.origin-left{ + transform-origin: left; +} + +.origin-top-left{ + transform-origin: top left; +} + +.transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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{ + --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; + 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)); +} + +.transform-none{ + transform: none; +} + +.translate-x-0{ + --tw-translate-x: 0px; +} + +.translate-x-1{ + --tw-translate-x: 0.25rem; +} + +.translate-x-2{ + --tw-translate-x: 0.5rem; +} + +.translate-x-3{ + --tw-translate-x: 0.75rem; +} + +.translate-x-4{ + --tw-translate-x: 1rem; +} + +.translate-x-5{ + --tw-translate-x: 1.25rem; +} + +.translate-x-6{ + --tw-translate-x: 1.5rem; +} + +.translate-x-7{ + --tw-translate-x: 1.75rem; +} + +.translate-x-8{ + --tw-translate-x: 2rem; +} + +.translate-x-9{ + --tw-translate-x: 2.25rem; +} + +.translate-x-10{ + --tw-translate-x: 2.5rem; +} + +.translate-x-11{ + --tw-translate-x: 2.75rem; +} + +.translate-x-12{ + --tw-translate-x: 3rem; +} + +.translate-x-14{ + --tw-translate-x: 3.5rem; +} + +.translate-x-16{ + --tw-translate-x: 4rem; +} + +.translate-x-20{ + --tw-translate-x: 5rem; +} + +.translate-x-24{ + --tw-translate-x: 6rem; +} + +.translate-x-28{ + --tw-translate-x: 7rem; +} + +.translate-x-32{ + --tw-translate-x: 8rem; +} + +.translate-x-36{ + --tw-translate-x: 9rem; +} + +.translate-x-40{ + --tw-translate-x: 10rem; +} + +.translate-x-44{ + --tw-translate-x: 11rem; +} + +.translate-x-48{ + --tw-translate-x: 12rem; +} + +.translate-x-52{ + --tw-translate-x: 13rem; +} + +.translate-x-56{ + --tw-translate-x: 14rem; +} + +.translate-x-60{ + --tw-translate-x: 15rem; +} + +.translate-x-64{ + --tw-translate-x: 16rem; +} + +.translate-x-72{ + --tw-translate-x: 18rem; +} + +.translate-x-80{ + --tw-translate-x: 20rem; +} + +.translate-x-96{ + --tw-translate-x: 24rem; +} + +.translate-x-px{ + --tw-translate-x: 1px; +} + +.translate-x-0\.5{ + --tw-translate-x: 0.125rem; +} + +.translate-x-1\.5{ + --tw-translate-x: 0.375rem; +} + +.translate-x-2\.5{ + --tw-translate-x: 0.625rem; +} + +.translate-x-3\.5{ + --tw-translate-x: 0.875rem; +} + +.-translate-x-0{ + --tw-translate-x: 0px; +} + +.-translate-x-1{ + --tw-translate-x: -0.25rem; +} + +.-translate-x-2{ + --tw-translate-x: -0.5rem; +} + +.-translate-x-3{ + --tw-translate-x: -0.75rem; +} + +.-translate-x-4{ + --tw-translate-x: -1rem; +} + +.-translate-x-5{ + --tw-translate-x: -1.25rem; +} + +.-translate-x-6{ + --tw-translate-x: -1.5rem; +} + +.-translate-x-7{ + --tw-translate-x: -1.75rem; +} + +.-translate-x-8{ + --tw-translate-x: -2rem; +} + +.-translate-x-9{ + --tw-translate-x: -2.25rem; +} + +.-translate-x-10{ + --tw-translate-x: -2.5rem; +} + +.-translate-x-11{ + --tw-translate-x: -2.75rem; +} + +.-translate-x-12{ + --tw-translate-x: -3rem; +} + +.-translate-x-14{ + --tw-translate-x: -3.5rem; +} + +.-translate-x-16{ + --tw-translate-x: -4rem; +} + +.-translate-x-20{ + --tw-translate-x: -5rem; +} + +.-translate-x-24{ + --tw-translate-x: -6rem; +} + +.-translate-x-28{ + --tw-translate-x: -7rem; +} + +.-translate-x-32{ + --tw-translate-x: -8rem; +} + +.-translate-x-36{ + --tw-translate-x: -9rem; +} + +.-translate-x-40{ + --tw-translate-x: -10rem; +} + +.-translate-x-44{ + --tw-translate-x: -11rem; +} + +.-translate-x-48{ + --tw-translate-x: -12rem; +} + +.-translate-x-52{ + --tw-translate-x: -13rem; +} + +.-translate-x-56{ + --tw-translate-x: -14rem; +} + +.-translate-x-60{ + --tw-translate-x: -15rem; +} + +.-translate-x-64{ + --tw-translate-x: -16rem; +} + +.-translate-x-72{ + --tw-translate-x: -18rem; +} + +.-translate-x-80{ + --tw-translate-x: -20rem; +} + +.-translate-x-96{ + --tw-translate-x: -24rem; +} + +.-translate-x-px{ + --tw-translate-x: -1px; +} + +.-translate-x-0\.5{ + --tw-translate-x: -0.125rem; +} + +.-translate-x-1\.5{ + --tw-translate-x: -0.375rem; +} + +.-translate-x-2\.5{ + --tw-translate-x: -0.625rem; +} + +.-translate-x-3\.5{ + --tw-translate-x: -0.875rem; +} + +.translate-x-1\/2{ + --tw-translate-x: 50%; +} + +.translate-x-1\/3{ + --tw-translate-x: 33.333333%; +} + +.translate-x-2\/3{ + --tw-translate-x: 66.666667%; +} + +.translate-x-1\/4{ + --tw-translate-x: 25%; +} + +.translate-x-2\/4{ + --tw-translate-x: 50%; +} + +.translate-x-3\/4{ + --tw-translate-x: 75%; +} + +.translate-x-full{ + --tw-translate-x: 100%; +} + +.-translate-x-1\/2{ + --tw-translate-x: -50%; +} + +.-translate-x-1\/3{ + --tw-translate-x: -33.333333%; +} + +.-translate-x-2\/3{ + --tw-translate-x: -66.666667%; +} + +.-translate-x-1\/4{ + --tw-translate-x: -25%; +} + +.-translate-x-2\/4{ + --tw-translate-x: -50%; +} + +.-translate-x-3\/4{ + --tw-translate-x: -75%; +} + +.-translate-x-full{ + --tw-translate-x: -100%; +} + +.translate-y-0{ + --tw-translate-y: 0px; +} + +.translate-y-1{ + --tw-translate-y: 0.25rem; +} + +.translate-y-2{ + --tw-translate-y: 0.5rem; +} + +.translate-y-3{ + --tw-translate-y: 0.75rem; +} + +.translate-y-4{ + --tw-translate-y: 1rem; +} + +.translate-y-5{ + --tw-translate-y: 1.25rem; +} + +.translate-y-6{ + --tw-translate-y: 1.5rem; +} + +.translate-y-7{ + --tw-translate-y: 1.75rem; +} + +.translate-y-8{ + --tw-translate-y: 2rem; +} + +.translate-y-9{ + --tw-translate-y: 2.25rem; +} + +.translate-y-10{ + --tw-translate-y: 2.5rem; +} + +.translate-y-11{ + --tw-translate-y: 2.75rem; +} + +.translate-y-12{ + --tw-translate-y: 3rem; +} + +.translate-y-14{ + --tw-translate-y: 3.5rem; +} + +.translate-y-16{ + --tw-translate-y: 4rem; +} + +.translate-y-20{ + --tw-translate-y: 5rem; +} + +.translate-y-24{ + --tw-translate-y: 6rem; +} + +.translate-y-28{ + --tw-translate-y: 7rem; +} + +.translate-y-32{ + --tw-translate-y: 8rem; +} + +.translate-y-36{ + --tw-translate-y: 9rem; +} + +.translate-y-40{ + --tw-translate-y: 10rem; +} + +.translate-y-44{ + --tw-translate-y: 11rem; +} + +.translate-y-48{ + --tw-translate-y: 12rem; +} + +.translate-y-52{ + --tw-translate-y: 13rem; +} + +.translate-y-56{ + --tw-translate-y: 14rem; +} + +.translate-y-60{ + --tw-translate-y: 15rem; +} + +.translate-y-64{ + --tw-translate-y: 16rem; +} + +.translate-y-72{ + --tw-translate-y: 18rem; +} + +.translate-y-80{ + --tw-translate-y: 20rem; +} + +.translate-y-96{ + --tw-translate-y: 24rem; +} + +.translate-y-px{ + --tw-translate-y: 1px; +} + +.translate-y-0\.5{ + --tw-translate-y: 0.125rem; +} + +.translate-y-1\.5{ + --tw-translate-y: 0.375rem; +} + +.translate-y-2\.5{ + --tw-translate-y: 0.625rem; +} + +.translate-y-3\.5{ + --tw-translate-y: 0.875rem; +} + +.-translate-y-0{ + --tw-translate-y: 0px; +} + +.-translate-y-1{ + --tw-translate-y: -0.25rem; +} + +.-translate-y-2{ + --tw-translate-y: -0.5rem; +} + +.-translate-y-3{ + --tw-translate-y: -0.75rem; +} + +.-translate-y-4{ + --tw-translate-y: -1rem; +} + +.-translate-y-5{ + --tw-translate-y: -1.25rem; +} + +.-translate-y-6{ + --tw-translate-y: -1.5rem; +} + +.-translate-y-7{ + --tw-translate-y: -1.75rem; +} + +.-translate-y-8{ + --tw-translate-y: -2rem; +} + +.-translate-y-9{ + --tw-translate-y: -2.25rem; +} + +.-translate-y-10{ + --tw-translate-y: -2.5rem; +} + +.-translate-y-11{ + --tw-translate-y: -2.75rem; +} + +.-translate-y-12{ + --tw-translate-y: -3rem; +} + +.-translate-y-14{ + --tw-translate-y: -3.5rem; +} + +.-translate-y-16{ + --tw-translate-y: -4rem; +} + +.-translate-y-20{ + --tw-translate-y: -5rem; +} + +.-translate-y-24{ + --tw-translate-y: -6rem; +} + +.-translate-y-28{ + --tw-translate-y: -7rem; +} + +.-translate-y-32{ + --tw-translate-y: -8rem; +} + +.-translate-y-36{ + --tw-translate-y: -9rem; +} + +.-translate-y-40{ + --tw-translate-y: -10rem; +} + +.-translate-y-44{ + --tw-translate-y: -11rem; +} + +.-translate-y-48{ + --tw-translate-y: -12rem; +} + +.-translate-y-52{ + --tw-translate-y: -13rem; +} + +.-translate-y-56{ + --tw-translate-y: -14rem; +} + +.-translate-y-60{ + --tw-translate-y: -15rem; +} + +.-translate-y-64{ + --tw-translate-y: -16rem; +} + +.-translate-y-72{ + --tw-translate-y: -18rem; +} + +.-translate-y-80{ + --tw-translate-y: -20rem; +} + +.-translate-y-96{ + --tw-translate-y: -24rem; +} + +.-translate-y-px{ + --tw-translate-y: -1px; +} + +.-translate-y-0\.5{ + --tw-translate-y: -0.125rem; +} + +.-translate-y-1\.5{ + --tw-translate-y: -0.375rem; +} + +.-translate-y-2\.5{ + --tw-translate-y: -0.625rem; +} + +.-translate-y-3\.5{ + --tw-translate-y: -0.875rem; +} + +.translate-y-1\/2{ + --tw-translate-y: 50%; +} + +.translate-y-1\/3{ + --tw-translate-y: 33.333333%; +} + +.translate-y-2\/3{ + --tw-translate-y: 66.666667%; +} + +.translate-y-1\/4{ + --tw-translate-y: 25%; +} + +.translate-y-2\/4{ + --tw-translate-y: 50%; +} + +.translate-y-3\/4{ + --tw-translate-y: 75%; +} + +.translate-y-full{ + --tw-translate-y: 100%; +} + +.-translate-y-1\/2{ + --tw-translate-y: -50%; +} + +.-translate-y-1\/3{ + --tw-translate-y: -33.333333%; +} + +.-translate-y-2\/3{ + --tw-translate-y: -66.666667%; +} + +.-translate-y-1\/4{ + --tw-translate-y: -25%; +} + +.-translate-y-2\/4{ + --tw-translate-y: -50%; +} + +.-translate-y-3\/4{ + --tw-translate-y: -75%; +} + +.-translate-y-full{ + --tw-translate-y: -100%; +} + +.hover\:translate-x-0:hover{ + --tw-translate-x: 0px; +} + +.hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; +} + +.hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; +} + +.hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; +} + +.hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; +} + +.hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; +} + +.hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; +} + +.hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; +} + +.hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; +} + +.hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; +} + +.hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; +} + +.hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; +} + +.hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; +} + +.hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; +} + +.hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; +} + +.hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; +} + +.hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; +} + +.hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; +} + +.hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; +} + +.hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; +} + +.hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; +} + +.hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; +} + +.hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; +} + +.hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; +} + +.hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; +} + +.hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; +} + +.hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; +} + +.hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; +} + +.hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; +} + +.hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; +} + +.hover\:translate-x-px:hover{ + --tw-translate-x: 1px; +} + +.hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; +} + +.hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; +} + +.hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; +} + +.hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; +} + +.hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; +} + +.hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; +} + +.hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; +} + +.hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; +} + +.hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; +} + +.hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; +} + +.hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; +} + +.hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; +} + +.hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; +} + +.hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; +} + +.hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; +} + +.hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; +} + +.hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; +} + +.hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; +} + +.hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; +} + +.hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; +} + +.hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; +} + +.hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; +} + +.hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; +} + +.hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; +} + +.hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; +} + +.hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; +} + +.hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; +} + +.hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; +} + +.hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; +} + +.hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; +} + +.hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; +} + +.hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; +} + +.hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; +} + +.hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; +} + +.hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; +} + +.hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; +} + +.hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; +} + +.hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; +} + +.hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; +} + +.hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; +} + +.hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; +} + +.hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; +} + +.hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; +} + +.hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; +} + +.hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; +} + +.hover\:translate-x-full:hover{ + --tw-translate-x: 100%; +} + +.hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; +} + +.hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; +} + +.hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; +} + +.hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; +} + +.hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; +} + +.hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; +} + +.hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; +} + +.hover\:translate-y-0:hover{ + --tw-translate-y: 0px; +} + +.hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; +} + +.hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; +} + +.hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; +} + +.hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; +} + +.hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; +} + +.hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; +} + +.hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; +} + +.hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; +} + +.hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; +} + +.hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; +} + +.hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; +} + +.hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; +} + +.hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; +} + +.hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; +} + +.hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; +} + +.hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; +} + +.hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; +} + +.hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; +} + +.hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; +} + +.hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; +} + +.hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; +} + +.hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; +} + +.hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; +} + +.hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; +} + +.hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; +} + +.hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; +} + +.hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; +} + +.hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; +} + +.hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; +} + +.hover\:translate-y-px:hover{ + --tw-translate-y: 1px; +} + +.hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; +} + +.hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; +} + +.hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; +} + +.hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; +} + +.hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; +} + +.hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; +} + +.hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; +} + +.hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; +} + +.hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; +} + +.hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; +} + +.hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; +} + +.hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; +} + +.hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; +} + +.hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; +} + +.hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; +} + +.hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; +} + +.hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; +} + +.hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; +} + +.hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; +} + +.hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; +} + +.hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; +} + +.hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; +} + +.hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; +} + +.hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; +} + +.hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; +} + +.hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; +} + +.hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; +} + +.hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; +} + +.hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; +} + +.hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; +} + +.hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; +} + +.hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; +} + +.hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; +} + +.hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; +} + +.hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; +} + +.hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; +} + +.hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; +} + +.hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; +} + +.hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; +} + +.hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; +} + +.hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; +} + +.hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; +} + +.hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; +} + +.hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; +} + +.hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; +} + +.hover\:translate-y-full:hover{ + --tw-translate-y: 100%; +} + +.hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; +} + +.hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; +} + +.hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; +} + +.hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; +} + +.hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; +} + +.hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; +} + +.hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; +} + +.focus\:translate-x-0:focus{ + --tw-translate-x: 0px; +} + +.focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; +} + +.focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; +} + +.focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; +} + +.focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; +} + +.focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; +} + +.focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; +} + +.focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; +} + +.focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; +} + +.focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; +} + +.focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; +} + +.focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; +} + +.focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; +} + +.focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; +} + +.focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; +} + +.focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; +} + +.focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; +} + +.focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; +} + +.focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; +} + +.focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; +} + +.focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; +} + +.focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; +} + +.focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; +} + +.focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; +} + +.focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; +} + +.focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; +} + +.focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; +} + +.focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; +} + +.focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; +} + +.focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; +} + +.focus\:translate-x-px:focus{ + --tw-translate-x: 1px; +} + +.focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; +} + +.focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; +} + +.focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; +} + +.focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; +} + +.focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; +} + +.focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; +} + +.focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; +} + +.focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; +} + +.focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; +} + +.focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; +} + +.focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; +} + +.focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; +} + +.focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; +} + +.focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; +} + +.focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; +} + +.focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; +} + +.focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; +} + +.focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; +} + +.focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; +} + +.focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; +} + +.focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; +} + +.focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; +} + +.focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; +} + +.focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; +} + +.focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; +} + +.focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; +} + +.focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; +} + +.focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; +} + +.focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; +} + +.focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; +} + +.focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; +} + +.focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; +} + +.focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; +} + +.focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; +} + +.focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; +} + +.focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; +} + +.focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; +} + +.focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; +} + +.focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; +} + +.focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; +} + +.focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; +} + +.focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; +} + +.focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; +} + +.focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; +} + +.focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; +} + +.focus\:translate-x-full:focus{ + --tw-translate-x: 100%; +} + +.focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; +} + +.focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; +} + +.focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; +} + +.focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; +} + +.focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; +} + +.focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; +} + +.focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; +} + +.focus\:translate-y-0:focus{ + --tw-translate-y: 0px; +} + +.focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; +} + +.focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; +} + +.focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; +} + +.focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; +} + +.focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; +} + +.focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; +} + +.focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; +} + +.focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; +} + +.focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; +} + +.focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; +} + +.focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; +} + +.focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; +} + +.focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; +} + +.focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; +} + +.focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; +} + +.focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; +} + +.focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; +} + +.focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; +} + +.focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; +} + +.focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; +} + +.focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; +} + +.focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; +} + +.focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; +} + +.focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; +} + +.focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; +} + +.focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; +} + +.focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; +} + +.focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; +} + +.focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; +} + +.focus\:translate-y-px:focus{ + --tw-translate-y: 1px; +} + +.focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; +} + +.focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; +} + +.focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; +} + +.focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; +} + +.focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; +} + +.focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; +} + +.focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; +} + +.focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; +} + +.focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; +} + +.focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; +} + +.focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; +} + +.focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; +} + +.focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; +} + +.focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; +} + +.focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; +} + +.focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; +} + +.focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; +} + +.focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; +} + +.focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; +} + +.focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; +} + +.focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; +} + +.focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; +} + +.focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; +} + +.focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; +} + +.focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; +} + +.focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; +} + +.focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; +} + +.focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; +} + +.focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; +} + +.focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; +} + +.focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; +} + +.focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; +} + +.focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; +} + +.focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; +} + +.focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; +} + +.focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; +} + +.focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; +} + +.focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; +} + +.focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; +} + +.focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; +} + +.focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; +} + +.focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; +} + +.focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; +} + +.focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; +} + +.focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; +} + +.focus\:translate-y-full:focus{ + --tw-translate-y: 100%; +} + +.focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; +} + +.focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; +} + +.focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; +} + +.focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; +} + +.focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; +} + +.focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; +} + +.focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; +} + +.rotate-0{ + --tw-rotate: 0deg; +} + +.rotate-1{ + --tw-rotate: 1deg; +} + +.rotate-2{ + --tw-rotate: 2deg; +} + +.rotate-3{ + --tw-rotate: 3deg; +} + +.rotate-6{ + --tw-rotate: 6deg; +} + +.rotate-12{ + --tw-rotate: 12deg; +} + +.rotate-45{ + --tw-rotate: 45deg; +} + +.rotate-90{ + --tw-rotate: 90deg; +} + +.rotate-180{ + --tw-rotate: 180deg; +} + +.-rotate-180{ + --tw-rotate: -180deg; +} + +.-rotate-90{ + --tw-rotate: -90deg; +} + +.-rotate-45{ + --tw-rotate: -45deg; +} + +.-rotate-12{ + --tw-rotate: -12deg; +} + +.-rotate-6{ + --tw-rotate: -6deg; +} + +.-rotate-3{ + --tw-rotate: -3deg; +} + +.-rotate-2{ + --tw-rotate: -2deg; +} + +.-rotate-1{ + --tw-rotate: -1deg; +} + +.hover\:rotate-0:hover{ + --tw-rotate: 0deg; +} + +.hover\:rotate-1:hover{ + --tw-rotate: 1deg; +} + +.hover\:rotate-2:hover{ + --tw-rotate: 2deg; +} + +.hover\:rotate-3:hover{ + --tw-rotate: 3deg; +} + +.hover\:rotate-6:hover{ + --tw-rotate: 6deg; +} + +.hover\:rotate-12:hover{ + --tw-rotate: 12deg; +} + +.hover\:rotate-45:hover{ + --tw-rotate: 45deg; +} + +.hover\:rotate-90:hover{ + --tw-rotate: 90deg; +} + +.hover\:rotate-180:hover{ + --tw-rotate: 180deg; +} + +.hover\:-rotate-180:hover{ + --tw-rotate: -180deg; +} + +.hover\:-rotate-90:hover{ + --tw-rotate: -90deg; +} + +.hover\:-rotate-45:hover{ + --tw-rotate: -45deg; +} + +.hover\:-rotate-12:hover{ + --tw-rotate: -12deg; +} + +.hover\:-rotate-6:hover{ + --tw-rotate: -6deg; +} + +.hover\:-rotate-3:hover{ + --tw-rotate: -3deg; +} + +.hover\:-rotate-2:hover{ + --tw-rotate: -2deg; +} + +.hover\:-rotate-1:hover{ + --tw-rotate: -1deg; +} + +.focus\:rotate-0:focus{ + --tw-rotate: 0deg; +} + +.focus\:rotate-1:focus{ + --tw-rotate: 1deg; +} + +.focus\:rotate-2:focus{ + --tw-rotate: 2deg; +} + +.focus\:rotate-3:focus{ + --tw-rotate: 3deg; +} + +.focus\:rotate-6:focus{ + --tw-rotate: 6deg; +} + +.focus\:rotate-12:focus{ + --tw-rotate: 12deg; +} + +.focus\:rotate-45:focus{ + --tw-rotate: 45deg; +} + +.focus\:rotate-90:focus{ + --tw-rotate: 90deg; +} + +.focus\:rotate-180:focus{ + --tw-rotate: 180deg; +} + +.focus\:-rotate-180:focus{ + --tw-rotate: -180deg; +} + +.focus\:-rotate-90:focus{ + --tw-rotate: -90deg; +} + +.focus\:-rotate-45:focus{ + --tw-rotate: -45deg; +} + +.focus\:-rotate-12:focus{ + --tw-rotate: -12deg; +} + +.focus\:-rotate-6:focus{ + --tw-rotate: -6deg; +} + +.focus\:-rotate-3:focus{ + --tw-rotate: -3deg; +} + +.focus\:-rotate-2:focus{ + --tw-rotate: -2deg; +} + +.focus\:-rotate-1:focus{ + --tw-rotate: -1deg; +} + +.skew-x-0{ + --tw-skew-x: 0deg; +} + +.skew-x-1{ + --tw-skew-x: 1deg; +} + +.skew-x-2{ + --tw-skew-x: 2deg; +} + +.skew-x-3{ + --tw-skew-x: 3deg; +} + +.skew-x-6{ + --tw-skew-x: 6deg; +} + +.skew-x-12{ + --tw-skew-x: 12deg; +} + +.-skew-x-12{ + --tw-skew-x: -12deg; +} + +.-skew-x-6{ + --tw-skew-x: -6deg; +} + +.-skew-x-3{ + --tw-skew-x: -3deg; +} + +.-skew-x-2{ + --tw-skew-x: -2deg; +} + +.-skew-x-1{ + --tw-skew-x: -1deg; +} + +.skew-y-0{ + --tw-skew-y: 0deg; +} + +.skew-y-1{ + --tw-skew-y: 1deg; +} + +.skew-y-2{ + --tw-skew-y: 2deg; +} + +.skew-y-3{ + --tw-skew-y: 3deg; +} + +.skew-y-6{ + --tw-skew-y: 6deg; +} + +.skew-y-12{ + --tw-skew-y: 12deg; +} + +.-skew-y-12{ + --tw-skew-y: -12deg; +} + +.-skew-y-6{ + --tw-skew-y: -6deg; +} + +.-skew-y-3{ + --tw-skew-y: -3deg; +} + +.-skew-y-2{ + --tw-skew-y: -2deg; +} + +.-skew-y-1{ + --tw-skew-y: -1deg; +} + +.hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; +} + +.hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; +} + +.hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; +} + +.hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; +} + +.hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; +} + +.hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; +} + +.hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; +} + +.hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; +} + +.hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; +} + +.hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; +} + +.hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; +} + +.hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; +} + +.hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; +} + +.hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; +} + +.hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; +} + +.hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; +} + +.hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; +} + +.hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; +} + +.hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; +} + +.hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; +} + +.hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; +} + +.hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; +} + +.focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; +} + +.focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; +} + +.focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; +} + +.focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; +} + +.focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; +} + +.focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; +} + +.focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; +} + +.focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; +} + +.focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; +} + +.focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; +} + +.focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; +} + +.focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; +} + +.focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; +} + +.focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; +} + +.focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; +} + +.focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; +} + +.focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; +} + +.focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; +} + +.focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; +} + +.focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; +} + +.focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; +} + +.focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; +} + +.scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.scale-x-0{ + --tw-scale-x: 0; +} + +.scale-x-50{ + --tw-scale-x: .5; +} + +.scale-x-75{ + --tw-scale-x: .75; +} + +.scale-x-90{ + --tw-scale-x: .9; +} + +.scale-x-95{ + --tw-scale-x: .95; +} + +.scale-x-100{ + --tw-scale-x: 1; +} + +.scale-x-105{ + --tw-scale-x: 1.05; +} + +.scale-x-110{ + --tw-scale-x: 1.1; +} + +.scale-x-125{ + --tw-scale-x: 1.25; +} + +.scale-x-150{ + --tw-scale-x: 1.5; +} + +.scale-y-0{ + --tw-scale-y: 0; +} + +.scale-y-50{ + --tw-scale-y: .5; +} + +.scale-y-75{ + --tw-scale-y: .75; +} + +.scale-y-90{ + --tw-scale-y: .9; +} + +.scale-y-95{ + --tw-scale-y: .95; +} + +.scale-y-100{ + --tw-scale-y: 1; +} + +.scale-y-105{ + --tw-scale-y: 1.05; +} + +.scale-y-110{ + --tw-scale-y: 1.1; +} + +.scale-y-125{ + --tw-scale-y: 1.25; +} + +.scale-y-150{ + --tw-scale-y: 1.5; +} + +.hover\:scale-x-0:hover{ + --tw-scale-x: 0; +} + +.hover\:scale-x-50:hover{ + --tw-scale-x: .5; +} + +.hover\:scale-x-75:hover{ + --tw-scale-x: .75; +} + +.hover\:scale-x-90:hover{ + --tw-scale-x: .9; +} + +.hover\:scale-x-95:hover{ + --tw-scale-x: .95; +} + +.hover\:scale-x-100:hover{ + --tw-scale-x: 1; +} + +.hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; +} + +.hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; +} + +.hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; +} + +.hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; +} + +.hover\:scale-y-0:hover{ + --tw-scale-y: 0; +} + +.hover\:scale-y-50:hover{ + --tw-scale-y: .5; +} + +.hover\:scale-y-75:hover{ + --tw-scale-y: .75; +} + +.hover\:scale-y-90:hover{ + --tw-scale-y: .9; +} + +.hover\:scale-y-95:hover{ + --tw-scale-y: .95; +} + +.hover\:scale-y-100:hover{ + --tw-scale-y: 1; +} + +.hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; +} + +.hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; +} + +.hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; +} + +.hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; +} + +.focus\:scale-x-0:focus{ + --tw-scale-x: 0; +} + +.focus\:scale-x-50:focus{ + --tw-scale-x: .5; +} + +.focus\:scale-x-75:focus{ + --tw-scale-x: .75; +} + +.focus\:scale-x-90:focus{ + --tw-scale-x: .9; +} + +.focus\:scale-x-95:focus{ + --tw-scale-x: .95; +} + +.focus\:scale-x-100:focus{ + --tw-scale-x: 1; +} + +.focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; +} + +.focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; +} + +.focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; +} + +.focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; +} + +.focus\:scale-y-0:focus{ + --tw-scale-y: 0; +} + +.focus\:scale-y-50:focus{ + --tw-scale-y: .5; +} + +.focus\:scale-y-75:focus{ + --tw-scale-y: .75; +} + +.focus\:scale-y-90:focus{ + --tw-scale-y: .9; +} + +.focus\:scale-y-95:focus{ + --tw-scale-y: .95; +} + +.focus\:scale-y-100:focus{ + --tw-scale-y: 1; +} + +.focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; +} + +.focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; +} + +.focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; +} + +.focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; +} + +@-webkit-keyframes spin{ + to{ + transform: rotate(360deg); + } +} + +@keyframes spin{ + to{ + transform: rotate(360deg); + } +} + +@-webkit-keyframes ping{ + 75%, 100%{ + transform: scale(2); + opacity: 0; + } +} + +@keyframes ping{ + 75%, 100%{ + transform: scale(2); + opacity: 0; + } +} + +@-webkit-keyframes pulse{ + 50%{ + opacity: .5; + } +} + +@keyframes pulse{ + 50%{ + opacity: .5; + } +} + +@-webkit-keyframes bounce{ + 0%, 100%{ + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50%{ + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +@keyframes bounce{ + 0%, 100%{ + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50%{ + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none{ + -webkit-animation: none; + animation: none; +} + +.animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; +} + +.animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} + +.animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; +} + +.cursor-auto{ + cursor: auto; +} + +.cursor-default{ + cursor: default; +} + +.cursor-pointer{ + cursor: pointer; +} + +.cursor-wait{ + cursor: wait; +} + +.cursor-text{ + cursor: text; +} + +.cursor-move{ + cursor: move; +} + +.cursor-help{ + cursor: help; +} + +.cursor-not-allowed{ + cursor: not-allowed; +} + +.select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; +} + +.select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; +} + +.resize-none{ + resize: none; +} + +.resize-y{ + resize: vertical; +} + +.resize-x{ + resize: horizontal; +} + +.resize{ + resize: both; +} + +.list-inside{ + list-style-position: inside; +} + +.list-outside{ + list-style-position: outside; +} + +.list-none{ + list-style-type: none; +} + +.list-disc{ + list-style-type: disc; +} + +.list-decimal{ + list-style-type: decimal; +} + +.appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.auto-cols-auto{ + grid-auto-columns: auto; +} + +.auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; +} + +.auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; +} + +.auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); +} + +.grid-flow-row{ + grid-auto-flow: row; +} + +.grid-flow-col{ + grid-auto-flow: column; +} + +.grid-flow-row-dense{ + grid-auto-flow: row dense; +} + +.grid-flow-col-dense{ + grid-auto-flow: column dense; +} + +.auto-rows-auto{ + grid-auto-rows: auto; +} + +.auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; +} + +.auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; +} + +.auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); +} + +.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-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.grid-cols-5{ + grid-template-columns: repeat(5, 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-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); +} + +.grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); +} + +.grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); +} + +.grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); +} + +.grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); +} + +.grid-cols-none{ + grid-template-columns: none; +} + +.grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); +} + +.grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); +} + +.grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); +} + +.grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); +} + +.grid-rows-none{ + grid-template-rows: none; +} + +.flex-row{ + flex-direction: row; +} + +.flex-row-reverse{ + flex-direction: row-reverse; +} + +.flex-col{ + flex-direction: column; +} + +.flex-col-reverse{ + flex-direction: column-reverse; +} + +.flex-wrap{ + flex-wrap: wrap; +} + +.flex-wrap-reverse{ + flex-wrap: wrap-reverse; +} + +.flex-nowrap{ + flex-wrap: nowrap; +} + +.place-content-center{ + place-content: center; +} + +.place-content-start{ + place-content: start; +} + +.place-content-end{ + place-content: end; +} + +.place-content-between{ + place-content: space-between; +} + +.place-content-around{ + place-content: space-around; +} + +.place-content-evenly{ + place-content: space-evenly; +} + +.place-content-stretch{ + place-content: stretch; +} + +.place-items-start{ + place-items: start; +} + +.place-items-end{ + place-items: end; +} + +.place-items-center{ + place-items: center; +} + +.place-items-stretch{ + place-items: stretch; +} + +.content-center{ + align-content: center; +} + +.content-start{ + align-content: flex-start; +} + +.content-end{ + align-content: flex-end; +} + +.content-between{ + align-content: space-between; +} + +.content-around{ + align-content: space-around; +} + +.content-evenly{ + align-content: space-evenly; +} + +.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-around{ + justify-content: space-around; +} + +.justify-evenly{ + justify-content: space-evenly; +} + +.justify-items-start{ + justify-items: start; +} + +.justify-items-end{ + justify-items: end; +} + +.justify-items-center{ + justify-items: center; +} + +.justify-items-stretch{ + justify-items: stretch; +} + +.gap-0{ + gap: 0px; +} + +.gap-1{ + gap: 0.25rem; +} + +.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-7{ + gap: 1.75rem; +} + +.gap-8{ + gap: 2rem; +} + +.gap-9{ + gap: 2.25rem; +} + +.gap-10{ + gap: 2.5rem; +} + +.gap-11{ + gap: 2.75rem; +} + +.gap-12{ + gap: 3rem; +} + +.gap-14{ + gap: 3.5rem; +} + +.gap-16{ + gap: 4rem; +} + +.gap-20{ + gap: 5rem; +} + +.gap-24{ + gap: 6rem; +} + +.gap-28{ + gap: 7rem; +} + +.gap-32{ + gap: 8rem; +} + +.gap-36{ + gap: 9rem; +} + +.gap-40{ + gap: 10rem; +} + +.gap-44{ + gap: 11rem; +} + +.gap-48{ + gap: 12rem; +} + +.gap-52{ + gap: 13rem; +} + +.gap-56{ + gap: 14rem; +} + +.gap-60{ + gap: 15rem; +} + +.gap-64{ + gap: 16rem; +} + +.gap-72{ + gap: 18rem; +} + +.gap-80{ + gap: 20rem; +} + +.gap-96{ + gap: 24rem; +} + +.gap-px{ + gap: 1px; +} + +.gap-0\.5{ + gap: 0.125rem; +} + +.gap-1\.5{ + gap: 0.375rem; +} + +.gap-2\.5{ + gap: 0.625rem; +} + +.gap-3\.5{ + gap: 0.875rem; +} + +.gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; +} + +.gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.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-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; +} + +.gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; +} + +.gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; +} + +.gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; +} + +.gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; +} + +.gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; +} + +.gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; +} + +.gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; +} + +.gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; +} + +.gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; +} + +.gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; +} + +.gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; +} + +.gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; +} + +.gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; +} + +.gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; +} + +.gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; +} + +.gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; +} + +.gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; +} + +.gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; +} + +.gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; +} + +.gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; +} + +.gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; +} + +.gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; +} + +.gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; +} + +.gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; +} + +.gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; +} + +.gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; +} + +.gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; +} + +.gap-y-0{ + row-gap: 0px; +} + +.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; +} + +.gap-y-7{ + row-gap: 1.75rem; +} + +.gap-y-8{ + row-gap: 2rem; +} + +.gap-y-9{ + row-gap: 2.25rem; +} + +.gap-y-10{ + row-gap: 2.5rem; +} + +.gap-y-11{ + row-gap: 2.75rem; +} + +.gap-y-12{ + row-gap: 3rem; +} + +.gap-y-14{ + row-gap: 3.5rem; +} + +.gap-y-16{ + row-gap: 4rem; +} + +.gap-y-20{ + row-gap: 5rem; +} + +.gap-y-24{ + row-gap: 6rem; +} + +.gap-y-28{ + row-gap: 7rem; +} + +.gap-y-32{ + row-gap: 8rem; +} + +.gap-y-36{ + row-gap: 9rem; +} + +.gap-y-40{ + row-gap: 10rem; +} + +.gap-y-44{ + row-gap: 11rem; +} + +.gap-y-48{ + row-gap: 12rem; +} + +.gap-y-52{ + row-gap: 13rem; +} + +.gap-y-56{ + row-gap: 14rem; +} + +.gap-y-60{ + row-gap: 15rem; +} + +.gap-y-64{ + row-gap: 16rem; +} + +.gap-y-72{ + row-gap: 18rem; +} + +.gap-y-80{ + row-gap: 20rem; +} + +.gap-y-96{ + row-gap: 24rem; +} + +.gap-y-px{ + row-gap: 1px; +} + +.gap-y-0\.5{ + row-gap: 0.125rem; +} + +.gap-y-1\.5{ + row-gap: 0.375rem; +} + +.gap-y-2\.5{ + row-gap: 0.625rem; +} + +.gap-y-3\.5{ + row-gap: 0.875rem; +} + +.space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * 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-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-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * 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-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-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.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)); +} + +.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-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)); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.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-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * 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-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * 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-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)); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.-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)); +} + +.-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-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)); +} + +.-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.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-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * 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-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * 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-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)); +} + +.-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); +} + +.-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); +} + +.-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); +} + +.-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); +} + +.-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); +} + +.-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); +} + +.-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); +} + +.-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); +} + +.-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); +} + +.-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); +} + +.-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); +} + +.-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); +} + +.-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); +} + +.-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); +} + +.-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); +} + +.-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); +} + +.-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); +} + +.-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); +} + +.-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); +} + +.space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; +} + +.space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; +} + +.divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * 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-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-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-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)); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-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-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; +} + +.divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; +} + +.divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; +} + +.divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; +} + +.divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; +} + +.divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; +} + +.divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; +} + +.divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; +} + +.divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; +} + +.divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); +} + +.divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); +} + +.divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); +} + +.divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); +} + +.divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); +} + +.divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); +} + +.divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); +} + +.divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); +} + +.divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); +} + +.divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); +} + +.divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); +} + +.divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); +} + +.divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); +} + +.divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); +} + +.divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); +} + +.divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); +} + +.divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); +} + +.divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); +} + +.divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); +} + +.divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); +} + +.divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); +} + +.divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); +} + +.divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); +} + +.divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); +} + +.divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); +} + +.divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); +} + +.divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); +} + +.divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); +} + +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); +} + +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); +} + +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); +} + +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); +} + +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); +} + +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); +} + +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); +} + +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); +} + +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); +} + +.divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); +} + +.divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); +} + +.divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); +} + +.divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); +} + +.divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); +} + +.divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); +} + +.divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); +} + +.divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); +} + +.divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); +} + +.divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); +} + +.divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); +} + +.divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); +} + +.divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); +} + +.divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); +} + +.divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); +} + +.divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); +} + +.divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); +} + +.divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); +} + +.divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); +} + +.divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); +} + +.divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); +} + +.divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); +} + +.divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); +} + +.divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); +} + +.divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); +} + +.divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); +} + +.divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); +} + +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); +} + +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); +} + +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); +} + +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); +} + +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); +} + +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); +} + +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); +} + +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); +} + +.divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); +} + +.divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); +} + +.divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); +} + +.divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); +} + +.divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); +} + +.divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); +} + +.divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); +} + +.divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); +} + +.divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); +} + +.divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); +} + +.divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); +} + +.divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); +} + +.divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); +} + +.divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); +} + +.divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); +} + +.divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); +} + +.divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); +} + +.divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); +} + +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; +} + +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; +} + +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; +} + +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; +} + +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; +} + +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; +} + +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; +} + +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; +} + +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; +} + +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; +} + +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; +} + +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; +} + +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; +} + +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; +} + +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; +} + +.place-self-auto{ + place-self: auto; +} + +.place-self-start{ + place-self: start; +} + +.place-self-end{ + place-self: end; +} + +.place-self-center{ + place-self: center; +} + +.place-self-stretch{ + place-self: stretch; +} + +.self-auto{ + align-self: auto; +} + +.self-start{ + align-self: flex-start; +} + +.self-end{ + align-self: flex-end; +} + +.self-center{ + align-self: center; +} + +.self-stretch{ + align-self: stretch; +} + +.self-baseline{ + align-self: baseline; +} + +.justify-self-auto{ + justify-self: auto; +} + +.justify-self-start{ + justify-self: start; +} + +.justify-self-end{ + justify-self: end; +} + +.justify-self-center{ + justify-self: center; +} + +.justify-self-stretch{ + justify-self: stretch; +} + +.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-x-hidden{ + overflow-x: hidden; +} + +.overflow-y-hidden{ + overflow-y: hidden; +} + +.overflow-x-visible{ + overflow-x: visible; +} + +.overflow-y-visible{ + overflow-y: visible; +} + +.overflow-x-scroll{ + overflow-x: scroll; +} + +.overflow-y-scroll{ + overflow-y: scroll; +} + +.overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; +} + +.overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; +} + +.overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; +} + +.overscroll-y-auto{ + overscroll-behavior-y: auto; +} + +.overscroll-y-contain{ + overscroll-behavior-y: contain; +} + +.overscroll-y-none{ + overscroll-behavior-y: none; +} + +.overscroll-x-auto{ + overscroll-behavior-x: auto; +} + +.overscroll-x-contain{ + overscroll-behavior-x: contain; +} + +.overscroll-x-none{ + overscroll-behavior-x: none; +} + +.truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.overflow-ellipsis{ + text-overflow: ellipsis; +} + +.overflow-clip{ + text-overflow: clip; +} + +.whitespace-normal{ + white-space: normal; +} + +.whitespace-nowrap{ + white-space: nowrap; +} + +.whitespace-pre{ + white-space: pre; +} + +.whitespace-pre-line{ + white-space: pre-line; +} + +.whitespace-pre-wrap{ + white-space: pre-wrap; +} + +.break-normal{ + overflow-wrap: normal; + word-break: normal; +} + +.break-words{ + overflow-wrap: break-word; +} + +.break-all{ + word-break: break-all; +} + +.rounded-none{ + border-radius: 0px; +} + +.rounded-sm{ + border-radius: 0.125rem; +} + +.rounded{ + border-radius: 0.25rem; +} + +.rounded-md{ + border-radius: 0.375rem; +} + +.rounded-lg{ + border-radius: 0.5rem; +} + +.rounded-xl{ + border-radius: 0.75rem; +} + +.rounded-2xl{ + border-radius: 1rem; +} + +.rounded-3xl{ + border-radius: 1.5rem; +} + +.rounded-full{ + border-radius: 9999px; +} + +.rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +.rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; +} + +.rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; +} + +.rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + +.rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; +} + +.rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; +} + +.rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; +} + +.rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; +} + +.rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +.rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; +} + +.rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +.rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; +} + +.rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; +} + +.rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; +} + +.rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; +} + +.rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; +} + +.rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; +} + +.rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; +} + +.rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +.rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; +} + +.rounded-tl-none{ + border-top-left-radius: 0px; +} + +.rounded-tl-sm{ + border-top-left-radius: 0.125rem; +} + +.rounded-tl{ + border-top-left-radius: 0.25rem; +} + +.rounded-tl-md{ + border-top-left-radius: 0.375rem; +} + +.rounded-tl-lg{ + border-top-left-radius: 0.5rem; +} + +.rounded-tl-xl{ + border-top-left-radius: 0.75rem; +} + +.rounded-tl-2xl{ + border-top-left-radius: 1rem; +} + +.rounded-tl-3xl{ + border-top-left-radius: 1.5rem; +} + +.rounded-tl-full{ + border-top-left-radius: 9999px; +} + +.rounded-tr-none{ + border-top-right-radius: 0px; +} + +.rounded-tr-sm{ + border-top-right-radius: 0.125rem; +} + +.rounded-tr{ + border-top-right-radius: 0.25rem; +} + +.rounded-tr-md{ + border-top-right-radius: 0.375rem; +} + +.rounded-tr-lg{ + border-top-right-radius: 0.5rem; +} + +.rounded-tr-xl{ + border-top-right-radius: 0.75rem; +} + +.rounded-tr-2xl{ + border-top-right-radius: 1rem; +} + +.rounded-tr-3xl{ + border-top-right-radius: 1.5rem; +} + +.rounded-tr-full{ + border-top-right-radius: 9999px; +} + +.rounded-br-none{ + border-bottom-right-radius: 0px; +} + +.rounded-br-sm{ + border-bottom-right-radius: 0.125rem; +} + +.rounded-br{ + border-bottom-right-radius: 0.25rem; +} + +.rounded-br-md{ + border-bottom-right-radius: 0.375rem; +} + +.rounded-br-lg{ + border-bottom-right-radius: 0.5rem; +} + +.rounded-br-xl{ + border-bottom-right-radius: 0.75rem; +} + +.rounded-br-2xl{ + border-bottom-right-radius: 1rem; +} + +.rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; +} + +.rounded-br-full{ + border-bottom-right-radius: 9999px; +} + +.rounded-bl-none{ + border-bottom-left-radius: 0px; +} + +.rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; +} + +.rounded-bl{ + border-bottom-left-radius: 0.25rem; +} + +.rounded-bl-md{ + border-bottom-left-radius: 0.375rem; +} + +.rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; +} + +.rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; +} + +.rounded-bl-2xl{ + border-bottom-left-radius: 1rem; +} + +.rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; +} + +.rounded-bl-full{ + border-bottom-left-radius: 9999px; +} + +.border-0{ + border-width: 0px; +} + +.border-2{ + border-width: 2px; +} + +.border-4{ + border-width: 4px; +} + +.border-8{ + border-width: 8px; +} + +.border{ + border-width: 1px; +} + +.border-t-0{ + border-top-width: 0px; +} + +.border-t-2{ + border-top-width: 2px; +} + +.border-t-4{ + border-top-width: 4px; +} + +.border-t-8{ + border-top-width: 8px; +} + +.border-t{ + border-top-width: 1px; +} + +.border-r-0{ + border-right-width: 0px; +} + +.border-r-2{ + border-right-width: 2px; +} + +.border-r-4{ + border-right-width: 4px; +} + +.border-r-8{ + border-right-width: 8px; +} + +.border-r{ + border-right-width: 1px; +} + +.border-b-0{ + border-bottom-width: 0px; +} + +.border-b-2{ + border-bottom-width: 2px; +} + +.border-b-4{ + border-bottom-width: 4px; +} + +.border-b-8{ + border-bottom-width: 8px; +} + +.border-b{ + border-bottom-width: 1px; +} + +.border-l-0{ + border-left-width: 0px; +} + +.border-l-2{ + border-left-width: 2px; +} + +.border-l-4{ + border-left-width: 4px; +} + +.border-l-8{ + border-left-width: 8px; +} + +.border-l{ + border-left-width: 1px; +} + +.border-solid{ + border-style: solid; +} + +.border-dashed{ + border-style: dashed; +} + +.border-dotted{ + border-style: dotted; +} + +.border-double{ + border-style: double; +} + +.border-none{ + border-style: none; +} + +.border-transparent{ + border-color: transparent; +} + +.border-current{ + border-color: currentColor; +} + +.border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); +} + +.border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +.border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); +} + +.border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); +} + +.border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); +} + +.border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); +} + +.border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); +} + +.border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); +} + +.border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); +} + +.border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); +} + +.border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); +} + +.border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); +} + +.border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); +} + +.border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); +} + +.border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); +} + +.border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); +} + +.border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); +} + +.border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); +} + +.border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); +} + +.border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); +} + +.border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); +} + +.border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); +} + +.border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); +} + +.border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); +} + +.border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); +} + +.border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); +} + +.border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); +} + +.border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); +} + +.border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); +} + +.border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); +} + +.border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); +} + +.border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); +} + +.border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); +} + +.border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); +} + +.border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); +} + +.border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); +} + +.border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); +} + +.border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); +} + +.border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); +} + +.border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); +} + +.border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); +} + +.border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); +} + +.border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); +} + +.border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); +} + +.border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); +} + +.border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); +} + +.border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); +} + +.border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); +} + +.border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); +} + +.border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); +} + +.border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); +} + +.border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); +} + +.border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); +} + +.border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); +} + +.border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); +} + +.border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); +} + +.border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); +} + +.border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); +} + +.border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); +} + +.border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); +} + +.border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); +} + +.border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); +} + +.border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); +} + +.border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); +} + +.border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); +} + +.border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); +} + +.border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); +} + +.border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); +} + +.border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); +} + +.border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); +} + +.border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); +} + +.border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); +} + +.border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); +} + +.border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); +} + +.border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); +} + +.border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); +} + +.border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); +} + +.border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); +} + +.border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); +} + +.border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); +} + +.border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); +} + +.border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); +} + +.border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); +} + +.border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); +} + +.border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); +} + +.border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); +} + +.border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); +} + +.border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); +} + +.border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-transparent{ + border-color: transparent; +} + +.group:hover .group-hover\:border-current{ + border-color: currentColor; +} + +.group:hover .group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); +} + +.focus-within\:border-transparent:focus-within{ + border-color: transparent; +} + +.focus-within\:border-current:focus-within{ + border-color: currentColor; +} + +.focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); +} + +.focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); +} + +.focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); +} + +.focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); +} + +.focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); +} + +.focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); +} + +.focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); +} + +.focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); +} + +.focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); +} + +.focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); +} + +.focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); +} + +.focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); +} + +.focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); +} + +.focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); +} + +.focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); +} + +.focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); +} + +.focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); +} + +.focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); +} + +.focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); +} + +.focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); +} + +.focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); +} + +.focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); +} + +.focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); +} + +.hover\:border-transparent:hover{ + border-color: transparent; +} + +.hover\:border-current:hover{ + border-color: currentColor; +} + +.hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); +} + +.hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +.hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); +} + +.hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); +} + +.hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); +} + +.hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); +} + +.hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); +} + +.hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); +} + +.hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); +} + +.hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); +} + +.hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); +} + +.hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); +} + +.hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); +} + +.hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); +} + +.hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); +} + +.hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); +} + +.hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); +} + +.hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); +} + +.hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); +} + +.hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); +} + +.hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); +} + +.hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); +} + +.hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); +} + +.hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); +} + +.hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); +} + +.hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); +} + +.hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); +} + +.hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); +} + +.hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); +} + +.hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); +} + +.hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); +} + +.hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); +} + +.hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); +} + +.hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); +} + +.hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); +} + +.hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); +} + +.hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); +} + +.hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); +} + +.hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); +} + +.hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); +} + +.hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); +} + +.hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); +} + +.hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); +} + +.hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); +} + +.hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); +} + +.hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); +} + +.hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); +} + +.hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); +} + +.hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); +} + +.hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); +} + +.hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); +} + +.hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); +} + +.hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); +} + +.hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); +} + +.hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); +} + +.hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); +} + +.hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); +} + +.hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); +} + +.hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); +} + +.hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); +} + +.hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); +} + +.hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); +} + +.hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); +} + +.hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); +} + +.hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); +} + +.hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); +} + +.hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); +} + +.hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); +} + +.hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); +} + +.hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); +} + +.hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); +} + +.hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); +} + +.hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); +} + +.hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); +} + +.hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); +} + +.hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); +} + +.hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); +} + +.hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); +} + +.hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); +} + +.hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); +} + +.hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); +} + +.hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); +} + +.hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); +} + +.hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); +} + +.hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); +} + +.hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); +} + +.hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); +} + +.hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); +} + +.focus\:border-transparent:focus{ + border-color: transparent; +} + +.focus\:border-current:focus{ + border-color: currentColor; +} + +.focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); +} + +.focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); +} + +.focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); +} + +.focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); +} + +.focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); +} + +.focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); +} + +.focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); +} + +.focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); +} + +.focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); +} + +.focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); +} + +.focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); +} + +.focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); +} + +.focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); +} + +.focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); +} + +.focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); +} + +.focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); +} + +.focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); +} + +.focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); +} + +.focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); +} + +.focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); +} + +.focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); +} + +.focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); +} + +.focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); +} + +.focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); +} + +.focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); +} + +.focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); +} + +.focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); +} + +.focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); +} + +.focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); +} + +.focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); +} + +.focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); +} + +.focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); +} + +.focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); +} + +.focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); +} + +.focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); +} + +.focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); +} + +.focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); +} + +.focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); +} + +.focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); +} + +.focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); +} + +.focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); +} + +.focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); +} + +.focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); +} + +.focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); +} + +.focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); +} + +.focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); +} + +.focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); +} + +.focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); +} + +.focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); +} + +.focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); +} + +.focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); +} + +.focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); +} + +.focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); +} + +.focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); +} + +.focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); +} + +.focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); +} + +.focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); +} + +.focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); +} + +.focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); +} + +.focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); +} + +.focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); +} + +.focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); +} + +.focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); +} + +.focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); +} + +.focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); +} + +.focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); +} + +.focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); +} + +.focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); +} + +.focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); +} + +.focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); +} + +.focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); +} + +.focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); +} + +.focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); +} + +.focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); +} + +.focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); +} + +.focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); +} + +.focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); +} + +.focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); +} + +.focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); +} + +.focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); +} + +.focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); +} + +.focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); +} + +.focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); +} + +.focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); +} + +.focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); +} + +.focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); +} + +.focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); +} + +.focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); +} + +.focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); +} + +.border-opacity-0{ + --tw-border-opacity: 0; +} + +.border-opacity-5{ + --tw-border-opacity: 0.05; +} + +.border-opacity-10{ + --tw-border-opacity: 0.1; +} + +.border-opacity-20{ + --tw-border-opacity: 0.2; +} + +.border-opacity-25{ + --tw-border-opacity: 0.25; +} + +.border-opacity-30{ + --tw-border-opacity: 0.3; +} + +.border-opacity-40{ + --tw-border-opacity: 0.4; +} + +.border-opacity-50{ + --tw-border-opacity: 0.5; +} + +.border-opacity-60{ + --tw-border-opacity: 0.6; +} + +.border-opacity-70{ + --tw-border-opacity: 0.7; +} + +.border-opacity-75{ + --tw-border-opacity: 0.75; +} + +.border-opacity-80{ + --tw-border-opacity: 0.8; +} + +.border-opacity-90{ + --tw-border-opacity: 0.9; +} + +.border-opacity-95{ + --tw-border-opacity: 0.95; +} + +.border-opacity-100{ + --tw-border-opacity: 1; +} + +.group:hover .group-hover\:border-opacity-0{ + --tw-border-opacity: 0; +} + +.group:hover .group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; +} + +.group:hover .group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; +} + +.group:hover .group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; +} + +.group:hover .group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; +} + +.group:hover .group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; +} + +.group:hover .group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; +} + +.group:hover .group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; +} + +.group:hover .group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; +} + +.group:hover .group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; +} + +.group:hover .group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; +} + +.group:hover .group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; +} + +.group:hover .group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; +} + +.group:hover .group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; +} + +.group:hover .group-hover\:border-opacity-100{ + --tw-border-opacity: 1; +} + +.focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; +} + +.focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; +} + +.focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; +} + +.focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; +} + +.focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; +} + +.focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; +} + +.focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; +} + +.focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; +} + +.focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; +} + +.focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; +} + +.focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; +} + +.focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; +} + +.focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; +} + +.focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; +} + +.focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; +} + +.hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; +} + +.hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; +} + +.hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; +} + +.hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; +} + +.hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; +} + +.hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; +} + +.hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; +} + +.hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; +} + +.hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; +} + +.hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; +} + +.hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; +} + +.hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; +} + +.hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; +} + +.hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; +} + +.hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; +} + +.focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; +} + +.focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; +} + +.focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; +} + +.focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; +} + +.focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; +} + +.focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; +} + +.focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; +} + +.focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; +} + +.focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; +} + +.focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; +} + +.focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; +} + +.focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; +} + +.focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; +} + +.focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; +} + +.focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; +} + +.bg-transparent{ + background-color: transparent; +} + +.bg-current{ + background-color: currentColor; +} + +.bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); +} + +.bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); +} + +.bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); +} + +.bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); +} + +.bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); +} + +.bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); +} + +.bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); +} + +.bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); +} + +.bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); +} + +.bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); +} + +.bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); +} + +.bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); +} + +.bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); +} + +.bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); +} + +.bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); +} + +.bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); +} + +.bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); +} + +.bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); +} + +.bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); +} + +.bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); +} + +.bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); +} + +.bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); +} + +.bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); +} + +.bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); +} + +.bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); +} + +.bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); +} + +.bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); +} + +.bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); +} + +.bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); +} + +.bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); +} + +.bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); +} + +.bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); +} + +.bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); +} + +.bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); +} + +.bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); +} + +.bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); +} + +.bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); +} + +.bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); +} + +.bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); +} + +.bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); +} + +.bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); +} + +.bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); +} + +.bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); +} + +.bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); +} + +.bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); +} + +.bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); +} + +.bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); +} + +.bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); +} + +.bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); +} + +.bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); +} + +.bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); +} + +.bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); +} + +.bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); +} + +.bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); +} + +.bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); +} + +.bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); +} + +.bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); +} + +.bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); +} + +.bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); +} + +.bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); +} + +.bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); +} + +.bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); +} + +.bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); +} + +.bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); +} + +.bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); +} + +.bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); +} + +.bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); +} + +.bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); +} + +.bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); +} + +.bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); +} + +.bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); +} + +.bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); +} + +.bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); +} + +.bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); +} + +.bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); +} + +.bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); +} + +.bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); +} + +.bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); +} + +.bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); +} + +.bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); +} + +.bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); +} + +.bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); +} + +.bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); +} + +.bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); +} + +.bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); +} + +.bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); +} + +.bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-transparent{ + background-color: transparent; +} + +.group:hover .group-hover\:bg-current{ + background-color: currentColor; +} + +.group:hover .group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); +} + +.focus-within\:bg-transparent:focus-within{ + background-color: transparent; +} + +.focus-within\:bg-current:focus-within{ + background-color: currentColor; +} + +.focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); +} + +.focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); +} + +.focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); +} + +.focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); +} + +.focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); +} + +.hover\:bg-transparent:hover{ + background-color: transparent; +} + +.hover\:bg-current:hover{ + background-color: currentColor; +} + +.hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); +} + +.hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); +} + +.hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); +} + +.hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); +} + +.hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); +} + +.hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); +} + +.hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); +} + +.hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); +} + +.hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); +} + +.hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); +} + +.hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); +} + +.hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); +} + +.hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); +} + +.hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); +} + +.hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); +} + +.hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); +} + +.hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); +} + +.hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); +} + +.hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); +} + +.hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); +} + +.hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); +} + +.hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); +} + +.hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); +} + +.focus\:bg-transparent:focus{ + background-color: transparent; +} + +.focus\:bg-current:focus{ + background-color: currentColor; +} + +.focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); +} + +.focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); +} + +.focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); +} + +.focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); +} + +.focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); +} + +.focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); +} + +.focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); +} + +.focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); +} + +.focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); +} + +.focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); +} + +.focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); +} + +.focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); +} + +.focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); +} + +.focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); +} + +.focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); +} + +.focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); +} + +.focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); +} + +.focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); +} + +.focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); +} + +.focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); +} + +.focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); +} + +.focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); +} + +.focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); +} + +.bg-opacity-0{ + --tw-bg-opacity: 0; +} + +.bg-opacity-5{ + --tw-bg-opacity: 0.05; +} + +.bg-opacity-10{ + --tw-bg-opacity: 0.1; +} + +.bg-opacity-20{ + --tw-bg-opacity: 0.2; +} + +.bg-opacity-25{ + --tw-bg-opacity: 0.25; +} + +.bg-opacity-30{ + --tw-bg-opacity: 0.3; +} + +.bg-opacity-40{ + --tw-bg-opacity: 0.4; +} + +.bg-opacity-50{ + --tw-bg-opacity: 0.5; +} + +.bg-opacity-60{ + --tw-bg-opacity: 0.6; +} + +.bg-opacity-70{ + --tw-bg-opacity: 0.7; +} + +.bg-opacity-75{ + --tw-bg-opacity: 0.75; +} + +.bg-opacity-80{ + --tw-bg-opacity: 0.8; +} + +.bg-opacity-90{ + --tw-bg-opacity: 0.9; +} + +.bg-opacity-95{ + --tw-bg-opacity: 0.95; +} + +.bg-opacity-100{ + --tw-bg-opacity: 1; +} + +.group:hover .group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; +} + +.group:hover .group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; +} + +.group:hover .group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; +} + +.group:hover .group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; +} + +.group:hover .group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; +} + +.group:hover .group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; +} + +.group:hover .group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; +} + +.group:hover .group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; +} + +.group:hover .group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; +} + +.group:hover .group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; +} + +.group:hover .group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; +} + +.group:hover .group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; +} + +.group:hover .group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; +} + +.group:hover .group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; +} + +.group:hover .group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; +} + +.focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; +} + +.focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; +} + +.focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; +} + +.focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; +} + +.focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; +} + +.focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; +} + +.focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; +} + +.focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; +} + +.focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; +} + +.focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; +} + +.focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; +} + +.focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; +} + +.focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; +} + +.focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; +} + +.focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; +} + +.hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; +} + +.hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; +} + +.hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; +} + +.hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; +} + +.hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; +} + +.hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; +} + +.hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; +} + +.hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; +} + +.hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; +} + +.hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; +} + +.hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; +} + +.hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; +} + +.hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; +} + +.hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; +} + +.hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; +} + +.focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; +} + +.focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; +} + +.focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; +} + +.focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; +} + +.focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; +} + +.focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; +} + +.focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; +} + +.focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; +} + +.focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; +} + +.focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; +} + +.focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; +} + +.focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; +} + +.focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; +} + +.focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; +} + +.focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; +} + +.bg-none{ + background-image: none; +} + +.bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +} + +.bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +} + +.from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); +} + +.focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); +} + +.focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); +} + +.focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); +} + +.focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); +} + +.focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); +} + +.focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); +} + +.focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); +} + +.focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); +} + +.focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); +} + +.focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); +} + +.focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); +} + +.focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); +} + +.focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); +} + +.focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); +} + +.focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); +} + +.focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); +} + +.focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); +} + +.focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); +} + +.focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); +} + +.focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); +} + +.focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); +} + +.focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); +} + +.focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); +} + +.focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); +} + +.focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); +} + +.focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); +} + +.focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); +} + +.focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); +} + +.focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); +} + +.focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); +} + +.focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); +} + +.focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); +} + +.focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); +} + +.focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); +} + +.focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); +} + +.focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); +} + +.focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); +} + +.focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); +} + +.focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); +} + +.focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); +} + +.focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); +} + +.focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); +} + +.focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); +} + +.focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); +} + +.focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); +} + +.focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); +} + +.focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); +} + +.focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); +} + +.focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); +} + +.focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); +} + +.focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); +} + +.focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); +} + +.focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); +} + +.focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); +} + +.focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); +} + +.focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); +} + +.focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); +} + +.focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); +} + +.focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); +} + +.focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); +} + +.focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); +} + +.focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); +} + +.focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); +} + +.focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); +} + +.focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); +} + +.focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); +} + +.focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); +} + +.focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); +} + +.focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); +} + +.focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); +} + +.focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); +} + +.focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); +} + +.focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); +} + +.focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); +} + +.focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); +} + +.focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); +} + +.focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); +} + +.focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); +} + +.focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); +} + +.focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); +} + +.focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); +} + +.focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); +} + +.focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); +} + +.focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); +} + +.focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); +} + +.focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); +} + +.focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); +} + +.focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); +} + +.focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); +} + +.to-transparent{ + --tw-gradient-to: transparent; +} + +.to-current{ + --tw-gradient-to: currentColor; +} + +.to-black{ + --tw-gradient-to: #000; +} + +.to-white{ + --tw-gradient-to: #fff; +} + +.to-gray-100{ + --tw-gradient-to: #f7fafc; +} + +.to-gray-200{ + --tw-gradient-to: #edf2f7; +} + +.to-gray-300{ + --tw-gradient-to: #e2e8f0; +} + +.to-gray-400{ + --tw-gradient-to: #cbd5e0; +} + +.to-gray-500{ + --tw-gradient-to: #a0aec0; +} + +.to-gray-600{ + --tw-gradient-to: #718096; +} + +.to-gray-700{ + --tw-gradient-to: #4a5568; +} + +.to-gray-800{ + --tw-gradient-to: #2d3748; +} + +.to-gray-900{ + --tw-gradient-to: #1a202c; +} + +.to-red-100{ + --tw-gradient-to: #fff5f5; +} + +.to-red-200{ + --tw-gradient-to: #fed7d7; +} + +.to-red-300{ + --tw-gradient-to: #feb2b2; +} + +.to-red-400{ + --tw-gradient-to: #fc8181; +} + +.to-red-500{ + --tw-gradient-to: #f56565; +} + +.to-red-600{ + --tw-gradient-to: #e53e3e; +} + +.to-red-700{ + --tw-gradient-to: #c53030; +} + +.to-red-800{ + --tw-gradient-to: #9b2c2c; +} + +.to-red-900{ + --tw-gradient-to: #742a2a; +} + +.to-orange-100{ + --tw-gradient-to: #fffaf0; +} + +.to-orange-200{ + --tw-gradient-to: #feebc8; +} + +.to-orange-300{ + --tw-gradient-to: #fbd38d; +} + +.to-orange-400{ + --tw-gradient-to: #f6ad55; +} + +.to-orange-500{ + --tw-gradient-to: #ed8936; +} + +.to-orange-600{ + --tw-gradient-to: #dd6b20; +} + +.to-orange-700{ + --tw-gradient-to: #c05621; +} + +.to-orange-800{ + --tw-gradient-to: #9c4221; +} + +.to-orange-900{ + --tw-gradient-to: #7b341e; +} + +.to-yellow-100{ + --tw-gradient-to: #fffff0; +} + +.to-yellow-200{ + --tw-gradient-to: #fefcbf; +} + +.to-yellow-300{ + --tw-gradient-to: #faf089; +} + +.to-yellow-400{ + --tw-gradient-to: #f6e05e; +} + +.to-yellow-500{ + --tw-gradient-to: #ecc94b; +} + +.to-yellow-600{ + --tw-gradient-to: #d69e2e; +} + +.to-yellow-700{ + --tw-gradient-to: #b7791f; +} + +.to-yellow-800{ + --tw-gradient-to: #975a16; +} + +.to-yellow-900{ + --tw-gradient-to: #744210; +} + +.to-green-100{ + --tw-gradient-to: #f0fff4; +} + +.to-green-200{ + --tw-gradient-to: #c6f6d5; +} + +.to-green-300{ + --tw-gradient-to: #9ae6b4; +} + +.to-green-400{ + --tw-gradient-to: #68d391; +} + +.to-green-500{ + --tw-gradient-to: #48bb78; +} + +.to-green-600{ + --tw-gradient-to: #38a169; +} + +.to-green-700{ + --tw-gradient-to: #2f855a; +} + +.to-green-800{ + --tw-gradient-to: #276749; +} + +.to-green-900{ + --tw-gradient-to: #22543d; +} + +.to-teal-100{ + --tw-gradient-to: #e6fffa; +} + +.to-teal-200{ + --tw-gradient-to: #b2f5ea; +} + +.to-teal-300{ + --tw-gradient-to: #81e6d9; +} + +.to-teal-400{ + --tw-gradient-to: #4fd1c5; +} + +.to-teal-500{ + --tw-gradient-to: #38b2ac; +} + +.to-teal-600{ + --tw-gradient-to: #319795; +} + +.to-teal-700{ + --tw-gradient-to: #2c7a7b; +} + +.to-teal-800{ + --tw-gradient-to: #285e61; +} + +.to-teal-900{ + --tw-gradient-to: #234e52; +} + +.to-blue-100{ + --tw-gradient-to: #ebf8ff; +} + +.to-blue-200{ + --tw-gradient-to: #bee3f8; +} + +.to-blue-300{ + --tw-gradient-to: #90cdf4; +} + +.to-blue-400{ + --tw-gradient-to: #63b3ed; +} + +.to-blue-500{ + --tw-gradient-to: #4299e1; +} + +.to-blue-600{ + --tw-gradient-to: #3182ce; +} + +.to-blue-700{ + --tw-gradient-to: #2b6cb0; +} + +.to-blue-800{ + --tw-gradient-to: #2c5282; +} + +.to-blue-900{ + --tw-gradient-to: #2a4365; +} + +.to-indigo-100{ + --tw-gradient-to: #ebf4ff; +} + +.to-indigo-200{ + --tw-gradient-to: #c3dafe; +} + +.to-indigo-300{ + --tw-gradient-to: #a3bffa; +} + +.to-indigo-400{ + --tw-gradient-to: #7f9cf5; +} + +.to-indigo-500{ + --tw-gradient-to: #667eea; +} + +.to-indigo-600{ + --tw-gradient-to: #5a67d8; +} + +.to-indigo-700{ + --tw-gradient-to: #4c51bf; +} + +.to-indigo-800{ + --tw-gradient-to: #434190; +} + +.to-indigo-900{ + --tw-gradient-to: #3c366b; +} + +.to-purple-100{ + --tw-gradient-to: #faf5ff; +} + +.to-purple-200{ + --tw-gradient-to: #e9d8fd; +} + +.to-purple-300{ + --tw-gradient-to: #d6bcfa; +} + +.to-purple-400{ + --tw-gradient-to: #b794f4; +} + +.to-purple-500{ + --tw-gradient-to: #9f7aea; +} + +.to-purple-600{ + --tw-gradient-to: #805ad5; +} + +.to-purple-700{ + --tw-gradient-to: #6b46c1; +} + +.to-purple-800{ + --tw-gradient-to: #553c9a; +} + +.to-purple-900{ + --tw-gradient-to: #44337a; +} + +.to-pink-100{ + --tw-gradient-to: #fff5f7; +} + +.to-pink-200{ + --tw-gradient-to: #fed7e2; +} + +.to-pink-300{ + --tw-gradient-to: #fbb6ce; +} + +.to-pink-400{ + --tw-gradient-to: #f687b3; +} + +.to-pink-500{ + --tw-gradient-to: #ed64a6; +} + +.to-pink-600{ + --tw-gradient-to: #d53f8c; +} + +.to-pink-700{ + --tw-gradient-to: #b83280; +} + +.to-pink-800{ + --tw-gradient-to: #97266d; +} + +.to-pink-900{ + --tw-gradient-to: #702459; +} + +.hover\:to-transparent:hover{ + --tw-gradient-to: transparent; +} + +.hover\:to-current:hover{ + --tw-gradient-to: currentColor; +} + +.hover\:to-black:hover{ + --tw-gradient-to: #000; +} + +.hover\:to-white:hover{ + --tw-gradient-to: #fff; +} + +.hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; +} + +.hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; +} + +.hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; +} + +.hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; +} + +.hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; +} + +.hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; +} + +.hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; +} + +.hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; +} + +.hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; +} + +.hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; +} + +.hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; +} + +.hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; +} + +.hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; +} + +.hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; +} + +.hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; +} + +.hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; +} + +.hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; +} + +.hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; +} + +.hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; +} + +.hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; +} + +.hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; +} + +.hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; +} + +.hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; +} + +.hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; +} + +.hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; +} + +.hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; +} + +.hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; +} + +.hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; +} + +.hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; +} + +.hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; +} + +.hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; +} + +.hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; +} + +.hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; +} + +.hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; +} + +.hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; +} + +.hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; +} + +.hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; +} + +.hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; +} + +.hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; +} + +.hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; +} + +.hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; +} + +.hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; +} + +.hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; +} + +.hover\:to-green-800:hover{ + --tw-gradient-to: #276749; +} + +.hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; +} + +.hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; +} + +.hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; +} + +.hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; +} + +.hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; +} + +.hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; +} + +.hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; +} + +.hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; +} + +.hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; +} + +.hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; +} + +.hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; +} + +.hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; +} + +.hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; +} + +.hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; +} + +.hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; +} + +.hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; +} + +.hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; +} + +.hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; +} + +.hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; +} + +.hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; +} + +.hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; +} + +.hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; +} + +.hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; +} + +.hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; +} + +.hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; +} + +.hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; +} + +.hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; +} + +.hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; +} + +.hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; +} + +.hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; +} + +.hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; +} + +.hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; +} + +.hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; +} + +.hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; +} + +.hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; +} + +.hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; +} + +.hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; +} + +.hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; +} + +.hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; +} + +.hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; +} + +.hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; +} + +.hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; +} + +.hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; +} + +.hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; +} + +.hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; +} + +.hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; +} + +.focus\:to-transparent:focus{ + --tw-gradient-to: transparent; +} + +.focus\:to-current:focus{ + --tw-gradient-to: currentColor; +} + +.focus\:to-black:focus{ + --tw-gradient-to: #000; +} + +.focus\:to-white:focus{ + --tw-gradient-to: #fff; +} + +.focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; +} + +.focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; +} + +.focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; +} + +.focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; +} + +.focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; +} + +.focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; +} + +.focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; +} + +.focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; +} + +.focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; +} + +.focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; +} + +.focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; +} + +.focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; +} + +.focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; +} + +.focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; +} + +.focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; +} + +.focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; +} + +.focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; +} + +.focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; +} + +.focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; +} + +.focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; +} + +.focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; +} + +.focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; +} + +.focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; +} + +.focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; +} + +.focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; +} + +.focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; +} + +.focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; +} + +.focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; +} + +.focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; +} + +.focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; +} + +.focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; +} + +.focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; +} + +.focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; +} + +.focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; +} + +.focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; +} + +.focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; +} + +.focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; +} + +.focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; +} + +.focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; +} + +.focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; +} + +.focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; +} + +.focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; +} + +.focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; +} + +.focus\:to-green-800:focus{ + --tw-gradient-to: #276749; +} + +.focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; +} + +.focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; +} + +.focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; +} + +.focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; +} + +.focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; +} + +.focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; +} + +.focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; +} + +.focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; +} + +.focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; +} + +.focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; +} + +.focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; +} + +.focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; +} + +.focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; +} + +.focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; +} + +.focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; +} + +.focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; +} + +.focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; +} + +.focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; +} + +.focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; +} + +.focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; +} + +.focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; +} + +.focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; +} + +.focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; +} + +.focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; +} + +.focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; +} + +.focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; +} + +.focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; +} + +.focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; +} + +.focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; +} + +.focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; +} + +.focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; +} + +.focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; +} + +.focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; +} + +.focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; +} + +.focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; +} + +.focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; +} + +.focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; +} + +.focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; +} + +.focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; +} + +.focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; +} + +.focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; +} + +.focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; +} + +.focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; +} + +.focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; +} + +.focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; +} + +.focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; +} + +.decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; +} + +.decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; +} + +.bg-auto{ + background-size: auto; +} + +.bg-cover{ + background-size: cover; +} + +.bg-contain{ + background-size: contain; +} + +.bg-fixed{ + background-attachment: fixed; +} + +.bg-local{ + background-attachment: local; +} + +.bg-scroll{ + background-attachment: scroll; +} + +.bg-clip-border{ + background-clip: border-box; +} + +.bg-clip-padding{ + background-clip: padding-box; +} + +.bg-clip-content{ + background-clip: content-box; +} + +.bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; +} + +.bg-bottom{ + background-position: bottom; +} + +.bg-center{ + background-position: center; +} + +.bg-left{ + background-position: left; +} + +.bg-left-bottom{ + background-position: left bottom; +} + +.bg-left-top{ + background-position: left top; +} + +.bg-right{ + background-position: right; +} + +.bg-right-bottom{ + background-position: right bottom; +} + +.bg-right-top{ + background-position: right top; +} + +.bg-top{ + background-position: top; +} + +.bg-repeat{ + background-repeat: repeat; +} + +.bg-no-repeat{ + background-repeat: no-repeat; +} + +.bg-repeat-x{ + background-repeat: repeat-x; +} + +.bg-repeat-y{ + background-repeat: repeat-y; +} + +.bg-repeat-round{ + background-repeat: round; +} + +.bg-repeat-space{ + background-repeat: space; +} + +.bg-origin-border{ + background-origin: border-box; +} + +.bg-origin-padding{ + background-origin: padding-box; +} + +.bg-origin-content{ + background-origin: content-box; +} + +.fill-current{ + fill: currentColor; +} + +.stroke-current{ + stroke: currentColor; +} + +.stroke-0{ + stroke-width: 0; +} + +.stroke-1{ + stroke-width: 1; +} + +.stroke-2{ + stroke-width: 2; +} + +.object-contain{ + -o-object-fit: contain; + object-fit: contain; +} + +.object-cover{ + -o-object-fit: cover; + object-fit: cover; +} + +.object-fill{ + -o-object-fit: fill; + object-fit: fill; +} + +.object-none{ + -o-object-fit: none; + object-fit: none; +} + +.object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; +} + +.object-bottom{ + -o-object-position: bottom; + object-position: bottom; +} + +.object-center{ + -o-object-position: center; + object-position: center; +} + +.object-left{ + -o-object-position: left; + object-position: left; +} + +.object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; +} + +.object-left-top{ + -o-object-position: left top; + object-position: left top; +} + +.object-right{ + -o-object-position: right; + object-position: right; +} + +.object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; +} + +.object-right-top{ + -o-object-position: right top; + object-position: right top; +} + +.object-top{ + -o-object-position: top; + object-position: top; +} + +.p-0{ + padding: 0px; +} + +.p-1{ + padding: 0.25rem; +} + +.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-7{ + padding: 1.75rem; +} + +.p-8{ + padding: 2rem; +} + +.p-9{ + padding: 2.25rem; +} + +.p-10{ + padding: 2.5rem; +} + +.p-11{ + padding: 2.75rem; +} + +.p-12{ + padding: 3rem; +} + +.p-14{ + padding: 3.5rem; +} + +.p-16{ + padding: 4rem; +} + +.p-20{ + padding: 5rem; +} + +.p-24{ + padding: 6rem; +} + +.p-28{ + padding: 7rem; +} + +.p-32{ + padding: 8rem; +} + +.p-36{ + padding: 9rem; +} + +.p-40{ + padding: 10rem; +} + +.p-44{ + padding: 11rem; +} + +.p-48{ + padding: 12rem; +} + +.p-52{ + padding: 13rem; +} + +.p-56{ + padding: 14rem; +} + +.p-60{ + padding: 15rem; +} + +.p-64{ + padding: 16rem; +} + +.p-72{ + padding: 18rem; +} + +.p-80{ + padding: 20rem; +} + +.p-96{ + padding: 24rem; +} + +.p-px{ + padding: 1px; +} + +.p-0\.5{ + padding: 0.125rem; +} + +.p-1\.5{ + padding: 0.375rem; +} + +.p-2\.5{ + padding: 0.625rem; +} + +.p-3\.5{ + padding: 0.875rem; +} + +.px-0{ + padding-left: 0px; + padding-right: 0px; +} + +.px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; +} + +.px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; +} + +.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; +} + +.px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; +} + +.px-8{ + padding-left: 2rem; + padding-right: 2rem; +} + +.px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; +} + +.px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; +} + +.px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; +} + +.px-12{ + padding-left: 3rem; + padding-right: 3rem; +} + +.px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; +} + +.px-16{ + padding-left: 4rem; + padding-right: 4rem; +} + +.px-20{ + padding-left: 5rem; + padding-right: 5rem; +} + +.px-24{ + padding-left: 6rem; + padding-right: 6rem; +} + +.px-28{ + padding-left: 7rem; + padding-right: 7rem; +} + +.px-32{ + padding-left: 8rem; + padding-right: 8rem; +} + +.px-36{ + padding-left: 9rem; + padding-right: 9rem; +} + +.px-40{ + padding-left: 10rem; + padding-right: 10rem; +} + +.px-44{ + padding-left: 11rem; + padding-right: 11rem; +} + +.px-48{ + padding-left: 12rem; + padding-right: 12rem; +} + +.px-52{ + padding-left: 13rem; + padding-right: 13rem; +} + +.px-56{ + padding-left: 14rem; + padding-right: 14rem; +} + +.px-60{ + padding-left: 15rem; + padding-right: 15rem; +} + +.px-64{ + padding-left: 16rem; + padding-right: 16rem; +} + +.px-72{ + padding-left: 18rem; + padding-right: 18rem; +} + +.px-80{ + padding-left: 20rem; + padding-right: 20rem; +} + +.px-96{ + padding-left: 24rem; + padding-right: 24rem; +} + +.px-px{ + padding-left: 1px; + padding-right: 1px; +} + +.px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; +} + +.px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; +} + +.px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; +} + +.px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; +} + +.py-0{ + padding-top: 0px; + padding-bottom: 0px; +} + +.py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.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-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; +} + +.py-8{ + padding-top: 2rem; + padding-bottom: 2rem; +} + +.py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; +} + +.py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} + +.py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; +} + +.py-12{ + padding-top: 3rem; + padding-bottom: 3rem; +} + +.py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} + +.py-16{ + padding-top: 4rem; + padding-bottom: 4rem; +} + +.py-20{ + padding-top: 5rem; + padding-bottom: 5rem; +} + +.py-24{ + padding-top: 6rem; + padding-bottom: 6rem; +} + +.py-28{ + padding-top: 7rem; + padding-bottom: 7rem; +} + +.py-32{ + padding-top: 8rem; + padding-bottom: 8rem; +} + +.py-36{ + padding-top: 9rem; + padding-bottom: 9rem; +} + +.py-40{ + padding-top: 10rem; + padding-bottom: 10rem; +} + +.py-44{ + padding-top: 11rem; + padding-bottom: 11rem; +} + +.py-48{ + padding-top: 12rem; + padding-bottom: 12rem; +} + +.py-52{ + padding-top: 13rem; + padding-bottom: 13rem; +} + +.py-56{ + padding-top: 14rem; + padding-bottom: 14rem; +} + +.py-60{ + padding-top: 15rem; + padding-bottom: 15rem; +} + +.py-64{ + padding-top: 16rem; + padding-bottom: 16rem; +} + +.py-72{ + padding-top: 18rem; + padding-bottom: 18rem; +} + +.py-80{ + padding-top: 20rem; + padding-bottom: 20rem; +} + +.py-96{ + padding-top: 24rem; + padding-bottom: 24rem; +} + +.py-px{ + padding-top: 1px; + padding-bottom: 1px; +} + +.py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; +} + +.py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} + +.py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +.py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; +} + +.pt-0{ + padding-top: 0px; +} + +.pt-1{ + padding-top: 0.25rem; +} + +.pt-2{ + padding-top: 0.5rem; +} + +.pt-3{ + padding-top: 0.75rem; +} + +.pt-4{ + padding-top: 1rem; +} + +.pt-5{ + padding-top: 1.25rem; +} + +.pt-6{ + padding-top: 1.5rem; +} + +.pt-7{ + padding-top: 1.75rem; +} + +.pt-8{ + padding-top: 2rem; +} + +.pt-9{ + padding-top: 2.25rem; +} + +.pt-10{ + padding-top: 2.5rem; +} + +.pt-11{ + padding-top: 2.75rem; +} + +.pt-12{ + padding-top: 3rem; +} + +.pt-14{ + padding-top: 3.5rem; +} + +.pt-16{ + padding-top: 4rem; +} + +.pt-20{ + padding-top: 5rem; +} + +.pt-24{ + padding-top: 6rem; +} + +.pt-28{ + padding-top: 7rem; +} + +.pt-32{ + padding-top: 8rem; +} + +.pt-36{ + padding-top: 9rem; +} + +.pt-40{ + padding-top: 10rem; +} + +.pt-44{ + padding-top: 11rem; +} + +.pt-48{ + padding-top: 12rem; +} + +.pt-52{ + padding-top: 13rem; +} + +.pt-56{ + padding-top: 14rem; +} + +.pt-60{ + padding-top: 15rem; +} + +.pt-64{ + padding-top: 16rem; +} + +.pt-72{ + padding-top: 18rem; +} + +.pt-80{ + padding-top: 20rem; +} + +.pt-96{ + padding-top: 24rem; +} + +.pt-px{ + padding-top: 1px; +} + +.pt-0\.5{ + padding-top: 0.125rem; +} + +.pt-1\.5{ + padding-top: 0.375rem; +} + +.pt-2\.5{ + padding-top: 0.625rem; +} + +.pt-3\.5{ + padding-top: 0.875rem; +} + +.pr-0{ + padding-right: 0px; +} + +.pr-1{ + padding-right: 0.25rem; +} + +.pr-2{ + padding-right: 0.5rem; +} + +.pr-3{ + padding-right: 0.75rem; +} + +.pr-4{ + padding-right: 1rem; +} + +.pr-5{ + padding-right: 1.25rem; +} + +.pr-6{ + padding-right: 1.5rem; +} + +.pr-7{ + padding-right: 1.75rem; +} + +.pr-8{ + padding-right: 2rem; +} + +.pr-9{ + padding-right: 2.25rem; +} + +.pr-10{ + padding-right: 2.5rem; +} + +.pr-11{ + padding-right: 2.75rem; +} + +.pr-12{ + padding-right: 3rem; +} + +.pr-14{ + padding-right: 3.5rem; +} + +.pr-16{ + padding-right: 4rem; +} + +.pr-20{ + padding-right: 5rem; +} + +.pr-24{ + padding-right: 6rem; +} + +.pr-28{ + padding-right: 7rem; +} + +.pr-32{ + padding-right: 8rem; +} + +.pr-36{ + padding-right: 9rem; +} + +.pr-40{ + padding-right: 10rem; +} + +.pr-44{ + padding-right: 11rem; +} + +.pr-48{ + padding-right: 12rem; +} + +.pr-52{ + padding-right: 13rem; +} + +.pr-56{ + padding-right: 14rem; +} + +.pr-60{ + padding-right: 15rem; +} + +.pr-64{ + padding-right: 16rem; +} + +.pr-72{ + padding-right: 18rem; +} + +.pr-80{ + padding-right: 20rem; +} + +.pr-96{ + padding-right: 24rem; +} + +.pr-px{ + padding-right: 1px; +} + +.pr-0\.5{ + padding-right: 0.125rem; +} + +.pr-1\.5{ + padding-right: 0.375rem; +} + +.pr-2\.5{ + padding-right: 0.625rem; +} + +.pr-3\.5{ + padding-right: 0.875rem; +} + +.pb-0{ + padding-bottom: 0px; +} + +.pb-1{ + padding-bottom: 0.25rem; +} + +.pb-2{ + padding-bottom: 0.5rem; +} + +.pb-3{ + padding-bottom: 0.75rem; +} + +.pb-4{ + padding-bottom: 1rem; +} + +.pb-5{ + padding-bottom: 1.25rem; +} + +.pb-6{ + padding-bottom: 1.5rem; +} + +.pb-7{ + padding-bottom: 1.75rem; +} + +.pb-8{ + padding-bottom: 2rem; +} + +.pb-9{ + padding-bottom: 2.25rem; +} + +.pb-10{ + padding-bottom: 2.5rem; +} + +.pb-11{ + padding-bottom: 2.75rem; +} + +.pb-12{ + padding-bottom: 3rem; +} + +.pb-14{ + padding-bottom: 3.5rem; +} + +.pb-16{ + padding-bottom: 4rem; +} + +.pb-20{ + padding-bottom: 5rem; +} + +.pb-24{ + padding-bottom: 6rem; +} + +.pb-28{ + padding-bottom: 7rem; +} + +.pb-32{ + padding-bottom: 8rem; +} + +.pb-36{ + padding-bottom: 9rem; +} + +.pb-40{ + padding-bottom: 10rem; +} + +.pb-44{ + padding-bottom: 11rem; +} + +.pb-48{ + padding-bottom: 12rem; +} + +.pb-52{ + padding-bottom: 13rem; +} + +.pb-56{ + padding-bottom: 14rem; +} + +.pb-60{ + padding-bottom: 15rem; +} + +.pb-64{ + padding-bottom: 16rem; +} + +.pb-72{ + padding-bottom: 18rem; +} + +.pb-80{ + padding-bottom: 20rem; +} + +.pb-96{ + padding-bottom: 24rem; +} + +.pb-px{ + padding-bottom: 1px; +} + +.pb-0\.5{ + padding-bottom: 0.125rem; +} + +.pb-1\.5{ + padding-bottom: 0.375rem; +} + +.pb-2\.5{ + padding-bottom: 0.625rem; +} + +.pb-3\.5{ + padding-bottom: 0.875rem; +} + +.pl-0{ + padding-left: 0px; +} + +.pl-1{ + padding-left: 0.25rem; +} + +.pl-2{ + padding-left: 0.5rem; +} + +.pl-3{ + padding-left: 0.75rem; +} + +.pl-4{ + padding-left: 1rem; +} + +.pl-5{ + padding-left: 1.25rem; +} + +.pl-6{ + padding-left: 1.5rem; +} + +.pl-7{ + padding-left: 1.75rem; +} + +.pl-8{ + padding-left: 2rem; +} + +.pl-9{ + padding-left: 2.25rem; +} + +.pl-10{ + padding-left: 2.5rem; +} + +.pl-11{ + padding-left: 2.75rem; +} + +.pl-12{ + padding-left: 3rem; +} + +.pl-14{ + padding-left: 3.5rem; +} + +.pl-16{ + padding-left: 4rem; +} + +.pl-20{ + padding-left: 5rem; +} + +.pl-24{ + padding-left: 6rem; +} + +.pl-28{ + padding-left: 7rem; +} + +.pl-32{ + padding-left: 8rem; +} + +.pl-36{ + padding-left: 9rem; +} + +.pl-40{ + padding-left: 10rem; +} + +.pl-44{ + padding-left: 11rem; +} + +.pl-48{ + padding-left: 12rem; +} + +.pl-52{ + padding-left: 13rem; +} + +.pl-56{ + padding-left: 14rem; +} + +.pl-60{ + padding-left: 15rem; +} + +.pl-64{ + padding-left: 16rem; +} + +.pl-72{ + padding-left: 18rem; +} + +.pl-80{ + padding-left: 20rem; +} + +.pl-96{ + padding-left: 24rem; +} + +.pl-px{ + padding-left: 1px; +} + +.pl-0\.5{ + padding-left: 0.125rem; +} + +.pl-1\.5{ + padding-left: 0.375rem; +} + +.pl-2\.5{ + padding-left: 0.625rem; +} + +.pl-3\.5{ + padding-left: 0.875rem; +} + +.text-left{ + text-align: left; +} + +.text-center{ + text-align: center; +} + +.text-right{ + text-align: right; +} + +.text-justify{ + text-align: justify; +} + +.align-baseline{ + vertical-align: baseline; +} + +.align-top{ + vertical-align: top; +} + +.align-middle{ + vertical-align: middle; +} + +.align-bottom{ + vertical-align: bottom; +} + +.align-text-top{ + vertical-align: text-top; +} + +.align-text-bottom{ + vertical-align: text-bottom; +} + +.font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.text-xs{ + font-size: 0.75rem; + line-height: 1rem; +} + +.text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-base{ + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; +} + +.text-2xl{ + font-size: 1.5rem; + line-height: 2rem; +} + +.text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-5xl{ + font-size: 3rem; + line-height: 1; +} + +.text-6xl{ + font-size: 3.75rem; + line-height: 1; +} + +.text-7xl{ + font-size: 4.5rem; + line-height: 1; +} + +.text-8xl{ + font-size: 6rem; + line-height: 1; +} + +.text-9xl{ + font-size: 8rem; + line-height: 1; +} + +.font-thin{ + font-weight: 100; +} + +.font-extralight{ + font-weight: 200; +} + +.font-light{ + font-weight: 300; +} + +.font-normal{ + font-weight: 400; +} + +.font-medium{ + font-weight: 500; +} + +.font-semibold{ + font-weight: 600; +} + +.font-bold{ + font-weight: 700; +} + +.font-extrabold{ + font-weight: 800; +} + +.font-black{ + font-weight: 900; +} + +.uppercase{ + text-transform: uppercase; +} + +.lowercase{ + text-transform: lowercase; +} + +.capitalize{ + text-transform: capitalize; +} + +.normal-case{ + text-transform: none; +} + +.italic{ + font-style: italic; +} + +.not-italic{ + font-style: normal; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums{ + font-variant-numeric: normal; +} + +.ordinal{ + --tw-ordinal: ordinal; +} + +.slashed-zero{ + --tw-slashed-zero: slashed-zero; +} + +.lining-nums{ + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums{ + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums{ + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; +} + +.leading-3{ + line-height: .75rem; +} + +.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-10{ + line-height: 2.5rem; +} + +.leading-none{ + line-height: 1; +} + +.leading-tight{ + line-height: 1.25; +} + +.leading-snug{ + line-height: 1.375; +} + +.leading-normal{ + line-height: 1.5; +} + +.leading-relaxed{ + line-height: 1.625; +} + +.leading-loose{ + line-height: 2; +} + +.tracking-tighter{ + letter-spacing: -0.05em; +} + +.tracking-tight{ + letter-spacing: -0.025em; +} + +.tracking-normal{ + letter-spacing: 0em; +} + +.tracking-wide{ + letter-spacing: 0.025em; +} + +.tracking-wider{ + letter-spacing: 0.05em; +} + +.tracking-widest{ + letter-spacing: 0.1em; +} + +.text-transparent{ + color: transparent; +} + +.text-current{ + color: currentColor; +} + +.text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); +} + +.text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); +} + +.text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); +} + +.text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); +} + +.text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); +} + +.text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); +} + +.text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); +} + +.text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); +} + +.text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); +} + +.text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); +} + +.text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); +} + +.text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); +} + +.text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); +} + +.text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); +} + +.text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); +} + +.text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); +} + +.text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); +} + +.text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); +} + +.text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); +} + +.text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); +} + +.text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); +} + +.text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); +} + +.text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); +} + +.text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); +} + +.text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); +} + +.text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); +} + +.text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); +} + +.text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); +} + +.text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); +} + +.text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); +} + +.text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); +} + +.text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); +} + +.text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); +} + +.text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); +} + +.text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); +} + +.text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); +} + +.text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); +} + +.text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); +} + +.text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); +} + +.text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); +} + +.text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); +} + +.text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); +} + +.text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); +} + +.text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); +} + +.text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); +} + +.text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); +} + +.text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); +} + +.text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); +} + +.text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); +} + +.text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); +} + +.text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); +} + +.text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); +} + +.text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); +} + +.text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); +} + +.text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); +} + +.text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); +} + +.text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); +} + +.text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); +} + +.text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); +} + +.text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); +} + +.text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); +} + +.text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); +} + +.text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); +} + +.text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); +} + +.text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); +} + +.text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); +} + +.text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); +} + +.text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); +} + +.text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); +} + +.text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); +} + +.text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); +} + +.text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); +} + +.text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); +} + +.text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); +} + +.text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); +} + +.text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); +} + +.text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); +} + +.text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); +} + +.text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); +} + +.text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); +} + +.text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); +} + +.text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); +} + +.text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); +} + +.text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-transparent{ + color: transparent; +} + +.group:hover .group-hover\:text-current{ + color: currentColor; +} + +.group:hover .group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.focus-within\:text-transparent:focus-within{ + color: transparent; +} + +.focus-within\:text-current:focus-within{ + color: currentColor; +} + +.focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); +} + +.focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); +} + +.focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); +} + +.focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); +} + +.focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); +} + +.focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); +} + +.focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); +} + +.focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); +} + +.focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); +} + +.focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); +} + +.focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); +} + +.focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); +} + +.focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); +} + +.focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); +} + +.focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); +} + +.focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); +} + +.focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); +} + +.focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); +} + +.focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); +} + +.focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); +} + +.focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.hover\:text-transparent:hover{ + color: transparent; +} + +.hover\:text-current:hover{ + color: currentColor; +} + +.hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); +} + +.hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); +} + +.hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); +} + +.hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); +} + +.hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); +} + +.hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); +} + +.hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); +} + +.hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); +} + +.hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); +} + +.hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); +} + +.hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); +} + +.hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); +} + +.hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); +} + +.hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); +} + +.hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); +} + +.hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); +} + +.hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); +} + +.hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); +} + +.hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); +} + +.hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); +} + +.hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); +} + +.hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); +} + +.hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); +} + +.hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); +} + +.hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); +} + +.hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); +} + +.hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); +} + +.hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); +} + +.hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); +} + +.hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); +} + +.hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); +} + +.hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); +} + +.hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); +} + +.hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); +} + +.hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); +} + +.hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); +} + +.hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); +} + +.hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); +} + +.hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); +} + +.hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); +} + +.hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); +} + +.hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); +} + +.hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); +} + +.hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); +} + +.hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); +} + +.hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); +} + +.hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); +} + +.hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); +} + +.hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); +} + +.hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); +} + +.hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); +} + +.hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); +} + +.hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); +} + +.hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); +} + +.hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); +} + +.hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); +} + +.hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); +} + +.hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); +} + +.hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); +} + +.hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); +} + +.hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); +} + +.hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); +} + +.hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); +} + +.hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); +} + +.hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); +} + +.hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); +} + +.hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); +} + +.hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); +} + +.hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); +} + +.hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); +} + +.hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); +} + +.hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); +} + +.hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); +} + +.hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); +} + +.hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); +} + +.hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); +} + +.hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); +} + +.hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); +} + +.hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); +} + +.hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); +} + +.hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); +} + +.hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); +} + +.hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.focus\:text-transparent:focus{ + color: transparent; +} + +.focus\:text-current:focus{ + color: currentColor; +} + +.focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); +} + +.focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); +} + +.focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); +} + +.focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); +} + +.focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); +} + +.focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); +} + +.focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); +} + +.focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); +} + +.focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); +} + +.focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); +} + +.focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); +} + +.focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); +} + +.focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); +} + +.focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); +} + +.focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); +} + +.focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); +} + +.focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); +} + +.focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); +} + +.focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); +} + +.focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); +} + +.focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); +} + +.focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); +} + +.focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); +} + +.focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); +} + +.focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); +} + +.focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); +} + +.focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); +} + +.focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); +} + +.focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); +} + +.focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); +} + +.focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); +} + +.focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); +} + +.focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); +} + +.focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); +} + +.focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); +} + +.focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); +} + +.focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); +} + +.focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); +} + +.focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); +} + +.focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); +} + +.focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); +} + +.focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); +} + +.focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); +} + +.focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); +} + +.focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); +} + +.focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); +} + +.focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); +} + +.focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); +} + +.focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); +} + +.focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); +} + +.focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); +} + +.focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); +} + +.focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); +} + +.focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); +} + +.focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); +} + +.focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); +} + +.focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); +} + +.focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); +} + +.focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); +} + +.focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); +} + +.focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); +} + +.focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); +} + +.focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); +} + +.focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); +} + +.focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); +} + +.focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); +} + +.focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); +} + +.focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); +} + +.focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); +} + +.focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); +} + +.focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); +} + +.focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); +} + +.focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); +} + +.focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); +} + +.focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); +} + +.focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); +} + +.focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); +} + +.focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); +} + +.focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); +} + +.focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); +} + +.focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); +} + +.focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); +} + +.focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); +} + +.focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); +} + +.focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); +} + +.focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); +} + +.focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); +} + +.focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); +} + +.focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); +} + +.text-opacity-0{ + --tw-text-opacity: 0; +} + +.text-opacity-5{ + --tw-text-opacity: 0.05; +} + +.text-opacity-10{ + --tw-text-opacity: 0.1; +} + +.text-opacity-20{ + --tw-text-opacity: 0.2; +} + +.text-opacity-25{ + --tw-text-opacity: 0.25; +} + +.text-opacity-30{ + --tw-text-opacity: 0.3; +} + +.text-opacity-40{ + --tw-text-opacity: 0.4; +} + +.text-opacity-50{ + --tw-text-opacity: 0.5; +} + +.text-opacity-60{ + --tw-text-opacity: 0.6; +} + +.text-opacity-70{ + --tw-text-opacity: 0.7; +} + +.text-opacity-75{ + --tw-text-opacity: 0.75; +} + +.text-opacity-80{ + --tw-text-opacity: 0.8; +} + +.text-opacity-90{ + --tw-text-opacity: 0.9; +} + +.text-opacity-95{ + --tw-text-opacity: 0.95; +} + +.text-opacity-100{ + --tw-text-opacity: 1; +} + +.group:hover .group-hover\:text-opacity-0{ + --tw-text-opacity: 0; +} + +.group:hover .group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; +} + +.group:hover .group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; +} + +.group:hover .group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; +} + +.group:hover .group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; +} + +.group:hover .group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; +} + +.group:hover .group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; +} + +.group:hover .group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; +} + +.group:hover .group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; +} + +.group:hover .group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; +} + +.group:hover .group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; +} + +.group:hover .group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; +} + +.group:hover .group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; +} + +.group:hover .group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; +} + +.group:hover .group-hover\:text-opacity-100{ + --tw-text-opacity: 1; +} + +.focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; +} + +.focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; +} + +.focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; +} + +.focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; +} + +.focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; +} + +.focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; +} + +.focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; +} + +.focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; +} + +.focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; +} + +.focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; +} + +.focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; +} + +.focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; +} + +.focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; +} + +.focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; +} + +.focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; +} + +.hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; +} + +.hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; +} + +.hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; +} + +.hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; +} + +.hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; +} + +.hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; +} + +.hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; +} + +.hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; +} + +.hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; +} + +.hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; +} + +.hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; +} + +.hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; +} + +.hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; +} + +.hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; +} + +.hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; +} + +.focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; +} + +.focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; +} + +.focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; +} + +.focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; +} + +.focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; +} + +.focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; +} + +.focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; +} + +.focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; +} + +.focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; +} + +.focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; +} + +.focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; +} + +.focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; +} + +.focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; +} + +.focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; +} + +.focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; +} + +.underline{ + text-decoration: underline; +} + +.line-through{ + text-decoration: line-through; +} + +.no-underline{ + text-decoration: none; +} + +.group:hover .group-hover\:underline{ + text-decoration: underline; +} + +.group:hover .group-hover\:line-through{ + text-decoration: line-through; +} + +.group:hover .group-hover\:no-underline{ + text-decoration: none; +} + +.focus-within\:underline:focus-within{ + text-decoration: underline; +} + +.focus-within\:line-through:focus-within{ + text-decoration: line-through; +} + +.focus-within\:no-underline:focus-within{ + text-decoration: none; +} + +.hover\:underline:hover{ + text-decoration: underline; +} + +.hover\:line-through:hover{ + text-decoration: line-through; +} + +.hover\:no-underline:hover{ + text-decoration: none; +} + +.focus\:underline:focus{ + text-decoration: underline; +} + +.focus\:line-through:focus{ + text-decoration: line-through; +} + +.focus\:no-underline:focus{ + text-decoration: none; +} + +.antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; +} + +.placeholder-transparent::-moz-placeholder{ + color: transparent; +} + +.placeholder-transparent:-ms-input-placeholder{ + color: transparent; +} + +.placeholder-transparent::placeholder{ + color: transparent; +} + +.placeholder-current::-moz-placeholder{ + color: currentColor; +} + +.placeholder-current:-ms-input-placeholder{ + color: currentColor; +} + +.placeholder-current::placeholder{ + color: currentColor; +} + +.placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; +} + +.focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; +} + +.focus\:placeholder-transparent:focus::placeholder{ + color: transparent; +} + +.focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; +} + +.focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; +} + +.focus\:placeholder-current:focus::placeholder{ + color: currentColor; +} + +.focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); +} + +.placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; +} + +.opacity-0{ + opacity: 0; +} + +.opacity-5{ + opacity: 0.05; +} + +.opacity-10{ + opacity: 0.1; +} + +.opacity-20{ + opacity: 0.2; +} + +.opacity-25{ + opacity: 0.25; +} + +.opacity-30{ + opacity: 0.3; +} + +.opacity-40{ + opacity: 0.4; +} + +.opacity-50{ + opacity: 0.5; +} + +.opacity-60{ + opacity: 0.6; +} + +.opacity-70{ + opacity: 0.7; +} + +.opacity-75{ + opacity: 0.75; +} + +.opacity-80{ + opacity: 0.8; +} + +.opacity-90{ + opacity: 0.9; +} + +.opacity-95{ + opacity: 0.95; +} + +.opacity-100{ + opacity: 1; +} + +.group:hover .group-hover\:opacity-0{ + opacity: 0; +} + +.group:hover .group-hover\:opacity-5{ + opacity: 0.05; +} + +.group:hover .group-hover\:opacity-10{ + opacity: 0.1; +} + +.group:hover .group-hover\:opacity-20{ + opacity: 0.2; +} + +.group:hover .group-hover\:opacity-25{ + opacity: 0.25; +} + +.group:hover .group-hover\:opacity-30{ + opacity: 0.3; +} + +.group:hover .group-hover\:opacity-40{ + opacity: 0.4; +} + +.group:hover .group-hover\:opacity-50{ + opacity: 0.5; +} + +.group:hover .group-hover\:opacity-60{ + opacity: 0.6; +} + +.group:hover .group-hover\:opacity-70{ + opacity: 0.7; +} + +.group:hover .group-hover\:opacity-75{ + opacity: 0.75; +} + +.group:hover .group-hover\:opacity-80{ + opacity: 0.8; +} + +.group:hover .group-hover\:opacity-90{ + opacity: 0.9; +} + +.group:hover .group-hover\:opacity-95{ + opacity: 0.95; +} + +.group:hover .group-hover\:opacity-100{ + opacity: 1; +} + +.focus-within\:opacity-0:focus-within{ + opacity: 0; +} + +.focus-within\:opacity-5:focus-within{ + opacity: 0.05; +} + +.focus-within\:opacity-10:focus-within{ + opacity: 0.1; +} + +.focus-within\:opacity-20:focus-within{ + opacity: 0.2; +} + +.focus-within\:opacity-25:focus-within{ + opacity: 0.25; +} + +.focus-within\:opacity-30:focus-within{ + opacity: 0.3; +} + +.focus-within\:opacity-40:focus-within{ + opacity: 0.4; +} + +.focus-within\:opacity-50:focus-within{ + opacity: 0.5; +} + +.focus-within\:opacity-60:focus-within{ + opacity: 0.6; +} + +.focus-within\:opacity-70:focus-within{ + opacity: 0.7; +} + +.focus-within\:opacity-75:focus-within{ + opacity: 0.75; +} + +.focus-within\:opacity-80:focus-within{ + opacity: 0.8; +} + +.focus-within\:opacity-90:focus-within{ + opacity: 0.9; +} + +.focus-within\:opacity-95:focus-within{ + opacity: 0.95; +} + +.focus-within\:opacity-100:focus-within{ + opacity: 1; +} + +.hover\:opacity-0:hover{ + opacity: 0; +} + +.hover\:opacity-5:hover{ + opacity: 0.05; +} + +.hover\:opacity-10:hover{ + opacity: 0.1; +} + +.hover\:opacity-20:hover{ + opacity: 0.2; +} + +.hover\:opacity-25:hover{ + opacity: 0.25; +} + +.hover\:opacity-30:hover{ + opacity: 0.3; +} + +.hover\:opacity-40:hover{ + opacity: 0.4; +} + +.hover\:opacity-50:hover{ + opacity: 0.5; +} + +.hover\:opacity-60:hover{ + opacity: 0.6; +} + +.hover\:opacity-70:hover{ + opacity: 0.7; +} + +.hover\:opacity-75:hover{ + opacity: 0.75; +} + +.hover\:opacity-80:hover{ + opacity: 0.8; +} + +.hover\:opacity-90:hover{ + opacity: 0.9; +} + +.hover\:opacity-95:hover{ + opacity: 0.95; +} + +.hover\:opacity-100:hover{ + opacity: 1; +} + +.focus\:opacity-0:focus{ + opacity: 0; +} + +.focus\:opacity-5:focus{ + opacity: 0.05; +} + +.focus\:opacity-10:focus{ + opacity: 0.1; +} + +.focus\:opacity-20:focus{ + opacity: 0.2; +} + +.focus\:opacity-25:focus{ + opacity: 0.25; +} + +.focus\:opacity-30:focus{ + opacity: 0.3; +} + +.focus\:opacity-40:focus{ + opacity: 0.4; +} + +.focus\:opacity-50:focus{ + opacity: 0.5; +} + +.focus\:opacity-60:focus{ + opacity: 0.6; +} + +.focus\:opacity-70:focus{ + opacity: 0.7; +} + +.focus\:opacity-75:focus{ + opacity: 0.75; +} + +.focus\:opacity-80:focus{ + opacity: 0.8; +} + +.focus\:opacity-90:focus{ + opacity: 0.9; +} + +.focus\:opacity-95:focus{ + opacity: 0.95; +} + +.focus\:opacity-100:focus{ + opacity: 1; +} + +.bg-blend-normal{ + background-blend-mode: normal; +} + +.bg-blend-multiply{ + background-blend-mode: multiply; +} + +.bg-blend-screen{ + background-blend-mode: screen; +} + +.bg-blend-overlay{ + background-blend-mode: overlay; +} + +.bg-blend-darken{ + background-blend-mode: darken; +} + +.bg-blend-lighten{ + background-blend-mode: lighten; +} + +.bg-blend-color-dodge{ + background-blend-mode: color-dodge; +} + +.bg-blend-color-burn{ + background-blend-mode: color-burn; +} + +.bg-blend-hard-light{ + background-blend-mode: hard-light; +} + +.bg-blend-soft-light{ + background-blend-mode: soft-light; +} + +.bg-blend-difference{ + background-blend-mode: difference; +} + +.bg-blend-exclusion{ + background-blend-mode: exclusion; +} + +.bg-blend-hue{ + background-blend-mode: hue; +} + +.bg-blend-saturation{ + background-blend-mode: saturation; +} + +.bg-blend-color{ + background-blend-mode: color; +} + +.bg-blend-luminosity{ + background-blend-mode: luminosity; +} + +.mix-blend-normal{ + mix-blend-mode: normal; +} + +.mix-blend-multiply{ + mix-blend-mode: multiply; +} + +.mix-blend-screen{ + mix-blend-mode: screen; +} + +.mix-blend-overlay{ + mix-blend-mode: overlay; +} + +.mix-blend-darken{ + mix-blend-mode: darken; +} + +.mix-blend-lighten{ + mix-blend-mode: lighten; +} + +.mix-blend-color-dodge{ + mix-blend-mode: color-dodge; +} + +.mix-blend-color-burn{ + mix-blend-mode: color-burn; +} + +.mix-blend-hard-light{ + mix-blend-mode: hard-light; +} + +.mix-blend-soft-light{ + mix-blend-mode: soft-light; +} + +.mix-blend-difference{ + mix-blend-mode: difference; +} + +.mix-blend-exclusion{ + mix-blend-mode: exclusion; +} + +.mix-blend-hue{ + mix-blend-mode: hue; +} + +.mix-blend-saturation{ + mix-blend-mode: saturation; +} + +.mix-blend-color{ + mix-blend-mode: color; +} + +.mix-blend-luminosity{ + mix-blend-mode: luminosity; +} + +*, ::before, ::after{ + --tw-shadow: 0 0 #0000; +} + +.shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + 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 rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + 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, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + 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 rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + 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; +} + +.outline-white{ + outline: 2px dotted white; + outline-offset: 2px; +} + +.outline-black{ + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; +} + +*, ::before, ::after{ + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(66, 153, 225, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-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-8{ + --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(8px + 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{ + --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-within\:ring-0:focus-within{ + --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\:ring-1:focus-within{ + --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-within\:ring-2:focus-within{ + --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-within\:ring-4:focus-within{ + --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); +} + +.focus-within\:ring-8:focus-within{ + --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(8px + 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\:ring:focus-within{ + --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-4: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(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); +} + +.focus\:ring-8: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(8px + 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: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); +} + +.ring-inset{ + --tw-ring-inset: inset; +} + +.focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; +} + +.focus\:ring-inset:focus{ + --tw-ring-inset: inset; +} + +.ring-transparent{ + --tw-ring-color: transparent; +} + +.ring-current{ + --tw-ring-color: currentColor; +} + +.ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); +} + +.ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); +} + +.ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); +} + +.ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); +} + +.ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); +} + +.ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); +} + +.ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); +} + +.ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); +} + +.ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); +} + +.ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); +} + +.ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); +} + +.ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); +} + +.ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); +} + +.ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); +} + +.ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); +} + +.ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); +} + +.ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); +} + +.ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); +} + +.ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); +} + +.ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); +} + +.ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); +} + +.ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); +} + +.ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); +} + +.ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); +} + +.ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); +} + +.ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); +} + +.ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); +} + +.ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); +} + +.ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); +} + +.ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); +} + +.ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); +} + +.ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); +} + +.ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); +} + +.ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); +} + +.ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); +} + +.ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); +} + +.ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); +} + +.ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); +} + +.ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); +} + +.ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); +} + +.ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); +} + +.ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); +} + +.ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); +} + +.ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); +} + +.ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); +} + +.ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); +} + +.ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); +} + +.ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); +} + +.ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); +} + +.ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); +} + +.ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); +} + +.ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); +} + +.ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); +} + +.ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); +} + +.ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); +} + +.ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); +} + +.ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); +} + +.ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); +} + +.ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); +} + +.ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); +} + +.ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); +} + +.ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); +} + +.ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); +} + +.ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); +} + +.ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); +} + +.ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); +} + +.ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); +} + +.ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); +} + +.ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); +} + +.ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); +} + +.ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); +} + +.ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); +} + +.ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); +} + +.ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); +} + +.ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); +} + +.ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); +} + +.ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); +} + +.ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); +} + +.ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); +} + +.ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); +} + +.ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); +} + +.ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); +} + +.ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); +} + +.ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); +} + +.ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); +} + +.ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); +} + +.ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); +} + +.ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); +} + +.ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); +} + +.focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; +} + +.focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; +} + +.focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); +} + +.focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); +} + +.focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); +} + +.focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); +} + +.focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); +} + +.focus\:ring-transparent:focus{ + --tw-ring-color: transparent; +} + +.focus\:ring-current:focus{ + --tw-ring-color: currentColor; +} + +.focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); +} + +.focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); +} + +.focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); +} + +.focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); +} + +.focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); +} + +.focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); +} + +.focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); +} + +.focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); +} + +.focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); +} + +.focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); +} + +.focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); +} + +.focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); +} + +.focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); +} + +.focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); +} + +.focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); +} + +.focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); +} + +.focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); +} + +.focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); +} + +.focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); +} + +.focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); +} + +.focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); +} + +.focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); +} + +.focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); +} + +.ring-opacity-0{ + --tw-ring-opacity: 0; +} + +.ring-opacity-5{ + --tw-ring-opacity: 0.05; +} + +.ring-opacity-10{ + --tw-ring-opacity: 0.1; +} + +.ring-opacity-20{ + --tw-ring-opacity: 0.2; +} + +.ring-opacity-25{ + --tw-ring-opacity: 0.25; +} + +.ring-opacity-30{ + --tw-ring-opacity: 0.3; +} + +.ring-opacity-40{ + --tw-ring-opacity: 0.4; +} + +.ring-opacity-50{ + --tw-ring-opacity: 0.5; +} + +.ring-opacity-60{ + --tw-ring-opacity: 0.6; +} + +.ring-opacity-70{ + --tw-ring-opacity: 0.7; +} + +.ring-opacity-75{ + --tw-ring-opacity: 0.75; +} + +.ring-opacity-80{ + --tw-ring-opacity: 0.8; +} + +.ring-opacity-90{ + --tw-ring-opacity: 0.9; +} + +.ring-opacity-95{ + --tw-ring-opacity: 0.95; +} + +.ring-opacity-100{ + --tw-ring-opacity: 1; +} + +.focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; +} + +.focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; +} + +.focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; +} + +.focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; +} + +.focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; +} + +.focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; +} + +.focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; +} + +.focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; +} + +.focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; +} + +.focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; +} + +.focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; +} + +.focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; +} + +.focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; +} + +.focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; +} + +.focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; +} + +.focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; +} + +.focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; +} + +.focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; +} + +.focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; +} + +.focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; +} + +.focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; +} + +.focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; +} + +.focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; +} + +.focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; +} + +.focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; +} + +.focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; +} + +.focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; +} + +.focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; +} + +.focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; +} + +.focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; +} + +.ring-offset-0{ + --tw-ring-offset-width: 0px; +} + +.ring-offset-1{ + --tw-ring-offset-width: 1px; +} + +.ring-offset-2{ + --tw-ring-offset-width: 2px; +} + +.ring-offset-4{ + --tw-ring-offset-width: 4px; +} + +.ring-offset-8{ + --tw-ring-offset-width: 8px; +} + +.focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; +} + +.focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; +} + +.focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; +} + +.focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; +} + +.focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; +} + +.focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; +} + +.focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; +} + +.focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; +} + +.focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; +} + +.focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; +} + +.ring-offset-transparent{ + --tw-ring-offset-color: transparent; +} + +.ring-offset-current{ + --tw-ring-offset-color: currentColor; +} + +.ring-offset-black{ + --tw-ring-offset-color: #000; +} + +.ring-offset-white{ + --tw-ring-offset-color: #fff; +} + +.ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; +} + +.ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; +} + +.ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; +} + +.ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; +} + +.ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; +} + +.ring-offset-gray-600{ + --tw-ring-offset-color: #718096; +} + +.ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; +} + +.ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; +} + +.ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; +} + +.ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; +} + +.ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; +} + +.ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; +} + +.ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; +} + +.ring-offset-red-500{ + --tw-ring-offset-color: #f56565; +} + +.ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; +} + +.ring-offset-red-700{ + --tw-ring-offset-color: #c53030; +} + +.ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; +} + +.ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; +} + +.ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; +} + +.ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; +} + +.ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; +} + +.ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; +} + +.ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; +} + +.ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; +} + +.ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; +} + +.ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; +} + +.ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; +} + +.ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; +} + +.ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; +} + +.ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; +} + +.ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; +} + +.ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; +} + +.ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; +} + +.ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; +} + +.ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; +} + +.ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; +} + +.ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; +} + +.ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; +} + +.ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; +} + +.ring-offset-green-400{ + --tw-ring-offset-color: #68d391; +} + +.ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; +} + +.ring-offset-green-600{ + --tw-ring-offset-color: #38a169; +} + +.ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; +} + +.ring-offset-green-800{ + --tw-ring-offset-color: #276749; +} + +.ring-offset-green-900{ + --tw-ring-offset-color: #22543d; +} + +.ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; +} + +.ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; +} + +.ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; +} + +.ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; +} + +.ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; +} + +.ring-offset-teal-600{ + --tw-ring-offset-color: #319795; +} + +.ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; +} + +.ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; +} + +.ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; +} + +.ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; +} + +.ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; +} + +.ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; +} + +.ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; +} + +.ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; +} + +.ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; +} + +.ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; +} + +.ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; +} + +.ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; +} + +.ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; +} + +.ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; +} + +.ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; +} + +.ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; +} + +.ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; +} + +.ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; +} + +.ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; +} + +.ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; +} + +.ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; +} + +.ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; +} + +.ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; +} + +.ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; +} + +.ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; +} + +.ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; +} + +.ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; +} + +.ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; +} + +.ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; +} + +.ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; +} + +.ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; +} + +.ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; +} + +.ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; +} + +.ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; +} + +.ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; +} + +.ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; +} + +.ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; +} + +.ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; +} + +.ring-offset-pink-900{ + --tw-ring-offset-color: #702459; +} + +.focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; +} + +.focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; +} + +.focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; +} + +.focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; +} + +.focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; +} + +.focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; +} + +.focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; +} + +.focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; +} + +.focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; +} + +.focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; +} + +.focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; +} + +.focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; +} + +.focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; +} + +.focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; +} + +.focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; +} + +.focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; +} + +.focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; +} + +.focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; +} + +.focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; +} + +.focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; +} + +.focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; +} + +.focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; +} + +.focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; +} + +.focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; +} + +.focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; +} + +.focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; +} + +.focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; +} + +.focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; +} + +.focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; +} + +.focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; +} + +.focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; +} + +.focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; +} + +.focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; +} + +.focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; +} + +.focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; +} + +.focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; +} + +.focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; +} + +.focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; +} + +.focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; +} + +.focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; +} + +.focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; +} + +.focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; +} + +.focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; +} + +.focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; +} + +.focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; +} + +.focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; +} + +.focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; +} + +.focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; +} + +.focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; +} + +.focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; +} + +.focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; +} + +.focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; +} + +.focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; +} + +.focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; +} + +.focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; +} + +.focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; +} + +.focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; +} + +.focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; +} + +.focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; +} + +.focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; +} + +.focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; +} + +.focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; +} + +.focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; +} + +.focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; +} + +.focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; +} + +.focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; +} + +.focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; +} + +.focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; +} + +.focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; +} + +.focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; +} + +.focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; +} + +.focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; +} + +.focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; +} + +.focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; +} + +.focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; +} + +.focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; +} + +.focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; +} + +.focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; +} + +.focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; +} + +.focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; +} + +.focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; +} + +.focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; +} + +.focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; +} + +.focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; +} + +.focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; +} + +.focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; +} + +.focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; +} + +.focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; +} + +.focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; +} + +.focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; +} + +.focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; +} + +.focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; +} + +.focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; +} + +.focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; +} + +.focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; +} + +.focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; +} + +.focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; +} + +.focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; +} + +.focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; +} + +.focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; +} + +.focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; +} + +.focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; +} + +.focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; +} + +.focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; +} + +.focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; +} + +.focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; +} + +.focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; +} + +.focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; +} + +.focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; +} + +.focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; +} + +.focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; +} + +.focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; +} + +.focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; +} + +.focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; +} + +.focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; +} + +.focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; +} + +.focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; +} + +.focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; +} + +.focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; +} + +.focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; +} + +.focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; +} + +.focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; +} + +.focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; +} + +.focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; +} + +.focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; +} + +.focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; +} + +.focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; +} + +.focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; +} + +.focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; +} + +.focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; +} + +.focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; +} + +.focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; +} + +.focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; +} + +.focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; +} + +.focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; +} + +.focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; +} + +.focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; +} + +.focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; +} + +.focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; +} + +.focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; +} + +.focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; +} + +.focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; +} + +.focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; +} + +.focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; +} + +.focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; +} + +.focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; +} + +.focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; +} + +.focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; +} + +.focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; +} + +.focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; +} + +.focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; +} + +.focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; +} + +.focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; +} + +.focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; +} + +.focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; +} + +.focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; +} + +.focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; +} + +.focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; +} + +.focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; +} + +.focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; +} + +.focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; +} + +.focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; +} + +.focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; +} + +.focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; +} + +.focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; +} + +.focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; +} + +.focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; +} + +.focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; +} + +.focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; +} + +.focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; +} + +.focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; +} + +.focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; +} + +.focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; +} + +.focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; +} + +.focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; +} + +.focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; +} + +.focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; +} + +.focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; +} + +.focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; +} + +.focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; +} + +.focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; +} + +.focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; +} + +.focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; +} + +.focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; +} + +.focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; +} + +.focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; +} + +.focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; +} + +.focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; +} + +.filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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-none{ + filter: none; +} + +.blur-0{ + --tw-blur: blur(0); +} + +.blur-none{ + --tw-blur: blur(0); +} + +.blur-sm{ + --tw-blur: blur(4px); +} + +.blur{ + --tw-blur: blur(8px); +} + +.blur-md{ + --tw-blur: blur(12px); +} + +.blur-lg{ + --tw-blur: blur(16px); +} + +.blur-xl{ + --tw-blur: blur(24px); +} + +.blur-2xl{ + --tw-blur: blur(40px); +} + +.blur-3xl{ + --tw-blur: blur(64px); +} + +.brightness-0{ + --tw-brightness: brightness(0); +} + +.brightness-50{ + --tw-brightness: brightness(.5); +} + +.brightness-75{ + --tw-brightness: brightness(.75); +} + +.brightness-90{ + --tw-brightness: brightness(.9); +} + +.brightness-95{ + --tw-brightness: brightness(.95); +} + +.brightness-100{ + --tw-brightness: brightness(1); +} + +.brightness-105{ + --tw-brightness: brightness(1.05); +} + +.brightness-110{ + --tw-brightness: brightness(1.1); +} + +.brightness-125{ + --tw-brightness: brightness(1.25); +} + +.brightness-150{ + --tw-brightness: brightness(1.5); +} + +.brightness-200{ + --tw-brightness: brightness(2); +} + +.contrast-0{ + --tw-contrast: contrast(0); +} + +.contrast-50{ + --tw-contrast: contrast(.5); +} + +.contrast-75{ + --tw-contrast: contrast(.75); +} + +.contrast-100{ + --tw-contrast: contrast(1); +} + +.contrast-125{ + --tw-contrast: contrast(1.25); +} + +.contrast-150{ + --tw-contrast: contrast(1.5); +} + +.contrast-200{ + --tw-contrast: contrast(2); +} + +.drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); +} + +.drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); +} + +.drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); +} + +.drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); +} + +.drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); +} + +.drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); +} + +.drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); +} + +.grayscale-0{ + --tw-grayscale: grayscale(0); +} + +.grayscale{ + --tw-grayscale: grayscale(100%); +} + +.hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); +} + +.hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); +} + +.hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); +} + +.hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); +} + +.hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); +} + +.hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); +} + +.-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); +} + +.-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); +} + +.-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); +} + +.-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); +} + +.-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); +} + +.invert-0{ + --tw-invert: invert(0); +} + +.invert{ + --tw-invert: invert(100%); +} + +.saturate-0{ + --tw-saturate: saturate(0); +} + +.saturate-50{ + --tw-saturate: saturate(.5); +} + +.saturate-100{ + --tw-saturate: saturate(1); +} + +.saturate-150{ + --tw-saturate: saturate(1.5); +} + +.saturate-200{ + --tw-saturate: saturate(2); +} + +.sepia-0{ + --tw-sepia: sepia(0); +} + +.sepia{ + --tw-sepia: sepia(100%); +} + +.backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; +} + +.backdrop-blur-0{ + --tw-backdrop-blur: blur(0); +} + +.backdrop-blur-none{ + --tw-backdrop-blur: blur(0); +} + +.backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); +} + +.backdrop-blur{ + --tw-backdrop-blur: blur(8px); +} + +.backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); +} + +.backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); +} + +.backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); +} + +.backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); +} + +.backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); +} + +.backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); +} + +.backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); +} + +.backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); +} + +.backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); +} + +.backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); +} + +.backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); +} + +.backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); +} + +.backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); +} + +.backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); +} + +.backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); +} + +.backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); +} + +.backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); +} + +.backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); +} + +.backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); +} + +.backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); +} + +.backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); +} + +.backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); +} + +.backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); +} + +.backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); +} + +.backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); +} + +.backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); +} + +.backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); +} + +.backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); +} + +.backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); +} + +.backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); +} + +.backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); +} + +.-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); +} + +.-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); +} + +.-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); +} + +.-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); +} + +.-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); +} + +.backdrop-invert-0{ + --tw-backdrop-invert: invert(0); +} + +.backdrop-invert{ + --tw-backdrop-invert: invert(100%); +} + +.backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); +} + +.backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); +} + +.backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); +} + +.backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); +} + +.backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); +} + +.backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); +} + +.backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); +} + +.backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); +} + +.backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); +} + +.backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); +} + +.backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); +} + +.backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); +} + +.backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); +} + +.backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); +} + +.backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); +} + +.backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); +} + +.backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); +} + +.backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); +} + +.backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); +} + +.backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); +} + +.backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); +} + +.backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); +} + +.transition-none{ + transition-property: none; +} + +.transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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-colors{ + transition-property: background-color, border-color, 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-shadow{ + transition-property: box-shadow; + 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; +} + +.delay-75{ + transition-delay: 75ms; +} + +.delay-100{ + transition-delay: 100ms; +} + +.delay-150{ + transition-delay: 150ms; +} + +.delay-200{ + transition-delay: 200ms; +} + +.delay-300{ + transition-delay: 300ms; +} + +.delay-500{ + transition-delay: 500ms; +} + +.delay-700{ + transition-delay: 700ms; +} + +.delay-1000{ + transition-delay: 1000ms; +} + +.duration-75{ + transition-duration: 75ms; +} + +.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-700{ + transition-duration: 700ms; +} + +.duration-1000{ + transition-duration: 1000ms; +} + +.ease-linear{ + transition-timing-function: linear; +} + +.ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +@media (min-width: 640px){ + .sm\:container{ + width: 100%; + } + + @media (min-width: 640px){ + .sm\:container{ + max-width: 640px; + } + } + + @media (min-width: 768px){ + .sm\:container{ + max-width: 768px; + } + } + + @media (min-width: 1024px){ + .sm\:container{ + max-width: 1024px; + } + } + + @media (min-width: 1280px){ + .sm\:container{ + max-width: 1280px; + } + } + + @media (min-width: 1536px){ + .sm\:container{ + max-width: 1536px; + } + } + + .sm\: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; + } + + .sm\:not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:pointer-events-none{ + pointer-events: none; + } + + .sm\:pointer-events-auto{ + pointer-events: auto; + } + + .sm\:visible{ + visibility: visible; + } + + .sm\:invisible{ + visibility: hidden; + } + + .sm\:static{ + position: static; + } + + .sm\:fixed{ + position: fixed; + } + + .sm\:absolute{ + position: absolute; + } + + .sm\:relative{ + position: relative; + } + + .sm\:sticky{ + position: -webkit-sticky; + position: sticky; + } + + .sm\:inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .sm\:inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .sm\:inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .sm\:inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .sm\:inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .sm\:inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .sm\:inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .sm\:inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .sm\:inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .sm\:inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .sm\:inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .sm\:inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .sm\:inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .sm\:inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .sm\:inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .sm\:inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .sm\:inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .sm\:inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .sm\:inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .sm\:inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .sm\:inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .sm\:-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .sm\:-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .sm\:-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .sm\:-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .sm\:-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .sm\:-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .sm\:-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .sm\:-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .sm\:-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .sm\:-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .sm\:-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .sm\:-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .sm\:-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .sm\:-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .sm\:-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .sm\:-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .sm\:-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .sm\:-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .sm\:-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .sm\:-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .sm\:-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .sm\:-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .sm\:-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .sm\:-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .sm\:-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .sm\:-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .sm\:-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; + } + + .sm\:inset-x-0{ + left: 0px; + right: 0px; + } + + .sm\:inset-x-1{ + left: 0.25rem; + right: 0.25rem; + } + + .sm\:inset-x-2{ + left: 0.5rem; + right: 0.5rem; + } + + .sm\:inset-x-3{ + left: 0.75rem; + right: 0.75rem; + } + + .sm\:inset-x-4{ + left: 1rem; + right: 1rem; + } + + .sm\:inset-x-5{ + left: 1.25rem; + right: 1.25rem; + } + + .sm\:inset-x-6{ + left: 1.5rem; + right: 1.5rem; + } + + .sm\:inset-x-7{ + left: 1.75rem; + right: 1.75rem; + } + + .sm\:inset-x-8{ + left: 2rem; + right: 2rem; + } + + .sm\:inset-x-9{ + left: 2.25rem; + right: 2.25rem; + } + + .sm\:inset-x-10{ + left: 2.5rem; + right: 2.5rem; + } + + .sm\:inset-x-11{ + left: 2.75rem; + right: 2.75rem; + } + + .sm\:inset-x-12{ + left: 3rem; + right: 3rem; + } + + .sm\:inset-x-14{ + left: 3.5rem; + right: 3.5rem; + } + + .sm\:inset-x-16{ + left: 4rem; + right: 4rem; + } + + .sm\:inset-x-20{ + left: 5rem; + right: 5rem; + } + + .sm\:inset-x-24{ + left: 6rem; + right: 6rem; + } + + .sm\:inset-x-28{ + left: 7rem; + right: 7rem; + } + + .sm\:inset-x-32{ + left: 8rem; + right: 8rem; + } + + .sm\:inset-x-36{ + left: 9rem; + right: 9rem; + } + + .sm\:inset-x-40{ + left: 10rem; + right: 10rem; + } + + .sm\:inset-x-44{ + left: 11rem; + right: 11rem; + } + + .sm\:inset-x-48{ + left: 12rem; + right: 12rem; + } + + .sm\:inset-x-52{ + left: 13rem; + right: 13rem; + } + + .sm\:inset-x-56{ + left: 14rem; + right: 14rem; + } + + .sm\:inset-x-60{ + left: 15rem; + right: 15rem; + } + + .sm\:inset-x-64{ + left: 16rem; + right: 16rem; + } + + .sm\:inset-x-72{ + left: 18rem; + right: 18rem; + } + + .sm\:inset-x-80{ + left: 20rem; + right: 20rem; + } + + .sm\:inset-x-96{ + left: 24rem; + right: 24rem; + } + + .sm\:inset-x-auto{ + left: auto; + right: auto; + } + + .sm\:inset-x-px{ + left: 1px; + right: 1px; + } + + .sm\:inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; + } + + .sm\:inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; + } + + .sm\:inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; + } + + .sm\:inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; + } + + .sm\:-inset-x-0{ + left: 0px; + right: 0px; + } + + .sm\:-inset-x-1{ + left: -0.25rem; + right: -0.25rem; + } + + .sm\:-inset-x-2{ + left: -0.5rem; + right: -0.5rem; + } + + .sm\:-inset-x-3{ + left: -0.75rem; + right: -0.75rem; + } + + .sm\:-inset-x-4{ + left: -1rem; + right: -1rem; + } + + .sm\:-inset-x-5{ + left: -1.25rem; + right: -1.25rem; + } + + .sm\:-inset-x-6{ + left: -1.5rem; + right: -1.5rem; + } + + .sm\:-inset-x-7{ + left: -1.75rem; + right: -1.75rem; + } + + .sm\:-inset-x-8{ + left: -2rem; + right: -2rem; + } + + .sm\:-inset-x-9{ + left: -2.25rem; + right: -2.25rem; + } + + .sm\:-inset-x-10{ + left: -2.5rem; + right: -2.5rem; + } + + .sm\:-inset-x-11{ + left: -2.75rem; + right: -2.75rem; + } + + .sm\:-inset-x-12{ + left: -3rem; + right: -3rem; + } + + .sm\:-inset-x-14{ + left: -3.5rem; + right: -3.5rem; + } + + .sm\:-inset-x-16{ + left: -4rem; + right: -4rem; + } + + .sm\:-inset-x-20{ + left: -5rem; + right: -5rem; + } + + .sm\:-inset-x-24{ + left: -6rem; + right: -6rem; + } + + .sm\:-inset-x-28{ + left: -7rem; + right: -7rem; + } + + .sm\:-inset-x-32{ + left: -8rem; + right: -8rem; + } + + .sm\:-inset-x-36{ + left: -9rem; + right: -9rem; + } + + .sm\:-inset-x-40{ + left: -10rem; + right: -10rem; + } + + .sm\:-inset-x-44{ + left: -11rem; + right: -11rem; + } + + .sm\:-inset-x-48{ + left: -12rem; + right: -12rem; + } + + .sm\:-inset-x-52{ + left: -13rem; + right: -13rem; + } + + .sm\:-inset-x-56{ + left: -14rem; + right: -14rem; + } + + .sm\:-inset-x-60{ + left: -15rem; + right: -15rem; + } + + .sm\:-inset-x-64{ + left: -16rem; + right: -16rem; + } + + .sm\:-inset-x-72{ + left: -18rem; + right: -18rem; + } + + .sm\:-inset-x-80{ + left: -20rem; + right: -20rem; + } + + .sm\:-inset-x-96{ + left: -24rem; + right: -24rem; + } + + .sm\:-inset-x-px{ + left: -1px; + right: -1px; + } + + .sm\:-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; + } + + .sm\:-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; + } + + .sm\:-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; + } + + .sm\:-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; + } + + .sm\:inset-x-1\/2{ + left: 50%; + right: 50%; + } + + .sm\:inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; + } + + .sm\:inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; + } + + .sm\:inset-x-1\/4{ + left: 25%; + right: 25%; + } + + .sm\:inset-x-2\/4{ + left: 50%; + right: 50%; + } + + .sm\:inset-x-3\/4{ + left: 75%; + right: 75%; + } + + .sm\:inset-x-full{ + left: 100%; + right: 100%; + } + + .sm\:-inset-x-1\/2{ + left: -50%; + right: -50%; + } + + .sm\:-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; + } + + .sm\:-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; + } + + .sm\:-inset-x-1\/4{ + left: -25%; + right: -25%; + } + + .sm\:-inset-x-2\/4{ + left: -50%; + right: -50%; + } + + .sm\:-inset-x-3\/4{ + left: -75%; + right: -75%; + } + + .sm\:-inset-x-full{ + left: -100%; + right: -100%; + } + + .sm\:inset-x-5vw{ + left: 5vw; + right: 5vw; + } + + .sm\:inset-y-0{ + top: 0px; + bottom: 0px; + } + + .sm\:inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-y-4{ + top: 1rem; + bottom: 1rem; + } + + .sm\:inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; + } + + .sm\:inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; + } + + .sm\:inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; + } + + .sm\:inset-y-8{ + top: 2rem; + bottom: 2rem; + } + + .sm\:inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; + } + + .sm\:inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; + } + + .sm\:inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; + } + + .sm\:inset-y-12{ + top: 3rem; + bottom: 3rem; + } + + .sm\:inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-y-16{ + top: 4rem; + bottom: 4rem; + } + + .sm\:inset-y-20{ + top: 5rem; + bottom: 5rem; + } + + .sm\:inset-y-24{ + top: 6rem; + bottom: 6rem; + } + + .sm\:inset-y-28{ + top: 7rem; + bottom: 7rem; + } + + .sm\:inset-y-32{ + top: 8rem; + bottom: 8rem; + } + + .sm\:inset-y-36{ + top: 9rem; + bottom: 9rem; + } + + .sm\:inset-y-40{ + top: 10rem; + bottom: 10rem; + } + + .sm\:inset-y-44{ + top: 11rem; + bottom: 11rem; + } + + .sm\:inset-y-48{ + top: 12rem; + bottom: 12rem; + } + + .sm\:inset-y-52{ + top: 13rem; + bottom: 13rem; + } + + .sm\:inset-y-56{ + top: 14rem; + bottom: 14rem; + } + + .sm\:inset-y-60{ + top: 15rem; + bottom: 15rem; + } + + .sm\:inset-y-64{ + top: 16rem; + bottom: 16rem; + } + + .sm\:inset-y-72{ + top: 18rem; + bottom: 18rem; + } + + .sm\:inset-y-80{ + top: 20rem; + bottom: 20rem; + } + + .sm\:inset-y-96{ + top: 24rem; + bottom: 24rem; + } + + .sm\:inset-y-auto{ + top: auto; + bottom: auto; + } + + .sm\:inset-y-px{ + top: 1px; + bottom: 1px; + } + + .sm\:inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; + } + + .sm\:inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; + } + + .sm\:inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; + } + + .sm\:inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; + } + + .sm\:-inset-y-0{ + top: 0px; + bottom: 0px; + } + + .sm\:-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; + } + + .sm\:-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; + } + + .sm\:-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; + } + + .sm\:-inset-y-4{ + top: -1rem; + bottom: -1rem; + } + + .sm\:-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; + } + + .sm\:-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; + } + + .sm\:-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; + } + + .sm\:-inset-y-8{ + top: -2rem; + bottom: -2rem; + } + + .sm\:-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; + } + + .sm\:-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; + } + + .sm\:-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; + } + + .sm\:-inset-y-12{ + top: -3rem; + bottom: -3rem; + } + + .sm\:-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; + } + + .sm\:-inset-y-16{ + top: -4rem; + bottom: -4rem; + } + + .sm\:-inset-y-20{ + top: -5rem; + bottom: -5rem; + } + + .sm\:-inset-y-24{ + top: -6rem; + bottom: -6rem; + } + + .sm\:-inset-y-28{ + top: -7rem; + bottom: -7rem; + } + + .sm\:-inset-y-32{ + top: -8rem; + bottom: -8rem; + } + + .sm\:-inset-y-36{ + top: -9rem; + bottom: -9rem; + } + + .sm\:-inset-y-40{ + top: -10rem; + bottom: -10rem; + } + + .sm\:-inset-y-44{ + top: -11rem; + bottom: -11rem; + } + + .sm\:-inset-y-48{ + top: -12rem; + bottom: -12rem; + } + + .sm\:-inset-y-52{ + top: -13rem; + bottom: -13rem; + } + + .sm\:-inset-y-56{ + top: -14rem; + bottom: -14rem; + } + + .sm\:-inset-y-60{ + top: -15rem; + bottom: -15rem; + } + + .sm\:-inset-y-64{ + top: -16rem; + bottom: -16rem; + } + + .sm\:-inset-y-72{ + top: -18rem; + bottom: -18rem; + } + + .sm\:-inset-y-80{ + top: -20rem; + bottom: -20rem; + } + + .sm\:-inset-y-96{ + top: -24rem; + bottom: -24rem; + } + + .sm\:-inset-y-px{ + top: -1px; + bottom: -1px; + } + + .sm\:-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; + } + + .sm\:-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; + } + + .sm\:-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; + } + + .sm\:-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; + } + + .sm\:inset-y-1\/2{ + top: 50%; + bottom: 50%; + } + + .sm\:inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; + } + + .sm\:inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; + } + + .sm\:inset-y-1\/4{ + top: 25%; + bottom: 25%; + } + + .sm\:inset-y-2\/4{ + top: 50%; + bottom: 50%; + } + + .sm\:inset-y-3\/4{ + top: 75%; + bottom: 75%; + } + + .sm\:inset-y-full{ + top: 100%; + bottom: 100%; + } + + .sm\:-inset-y-1\/2{ + top: -50%; + bottom: -50%; + } + + .sm\:-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; + } + + .sm\:-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; + } + + .sm\:-inset-y-1\/4{ + top: -25%; + bottom: -25%; + } + + .sm\:-inset-y-2\/4{ + top: -50%; + bottom: -50%; + } + + .sm\:-inset-y-3\/4{ + top: -75%; + bottom: -75%; + } + + .sm\:-inset-y-full{ + top: -100%; + bottom: -100%; + } + + .sm\:inset-y-5vw{ + top: 5vw; + bottom: 5vw; + } + + .sm\:top-0{ + top: 0px; + } + + .sm\:top-1{ + top: 0.25rem; + } + + .sm\:top-2{ + top: 0.5rem; + } + + .sm\:top-3{ + top: 0.75rem; + } + + .sm\:top-4{ + top: 1rem; + } + + .sm\:top-5{ + top: 1.25rem; + } + + .sm\:top-6{ + top: 1.5rem; + } + + .sm\:top-7{ + top: 1.75rem; + } + + .sm\:top-8{ + top: 2rem; + } + + .sm\:top-9{ + top: 2.25rem; + } + + .sm\:top-10{ + top: 2.5rem; + } + + .sm\:top-11{ + top: 2.75rem; + } + + .sm\:top-12{ + top: 3rem; + } + + .sm\:top-14{ + top: 3.5rem; + } + + .sm\:top-16{ + top: 4rem; + } + + .sm\:top-20{ + top: 5rem; + } + + .sm\:top-24{ + top: 6rem; + } + + .sm\:top-28{ + top: 7rem; + } + + .sm\:top-32{ + top: 8rem; + } + + .sm\:top-36{ + top: 9rem; + } + + .sm\:top-40{ + top: 10rem; + } + + .sm\:top-44{ + top: 11rem; + } + + .sm\:top-48{ + top: 12rem; + } + + .sm\:top-52{ + top: 13rem; + } + + .sm\:top-56{ + top: 14rem; + } + + .sm\:top-60{ + top: 15rem; + } + + .sm\:top-64{ + top: 16rem; + } + + .sm\:top-72{ + top: 18rem; + } + + .sm\:top-80{ + top: 20rem; + } + + .sm\:top-96{ + top: 24rem; + } + + .sm\:top-auto{ + top: auto; + } + + .sm\:top-px{ + top: 1px; + } + + .sm\:top-0\.5{ + top: 0.125rem; + } + + .sm\:top-1\.5{ + top: 0.375rem; + } + + .sm\:top-2\.5{ + top: 0.625rem; + } + + .sm\:top-3\.5{ + top: 0.875rem; + } + + .sm\:-top-0{ + top: 0px; + } + + .sm\:-top-1{ + top: -0.25rem; + } + + .sm\:-top-2{ + top: -0.5rem; + } + + .sm\:-top-3{ + top: -0.75rem; + } + + .sm\:-top-4{ + top: -1rem; + } + + .sm\:-top-5{ + top: -1.25rem; + } + + .sm\:-top-6{ + top: -1.5rem; + } + + .sm\:-top-7{ + top: -1.75rem; + } + + .sm\:-top-8{ + top: -2rem; + } + + .sm\:-top-9{ + top: -2.25rem; + } + + .sm\:-top-10{ + top: -2.5rem; + } + + .sm\:-top-11{ + top: -2.75rem; + } + + .sm\:-top-12{ + top: -3rem; + } + + .sm\:-top-14{ + top: -3.5rem; + } + + .sm\:-top-16{ + top: -4rem; + } + + .sm\:-top-20{ + top: -5rem; + } + + .sm\:-top-24{ + top: -6rem; + } + + .sm\:-top-28{ + top: -7rem; + } + + .sm\:-top-32{ + top: -8rem; + } + + .sm\:-top-36{ + top: -9rem; + } + + .sm\:-top-40{ + top: -10rem; + } + + .sm\:-top-44{ + top: -11rem; + } + + .sm\:-top-48{ + top: -12rem; + } + + .sm\:-top-52{ + top: -13rem; + } + + .sm\:-top-56{ + top: -14rem; + } + + .sm\:-top-60{ + top: -15rem; + } + + .sm\:-top-64{ + top: -16rem; + } + + .sm\:-top-72{ + top: -18rem; + } + + .sm\:-top-80{ + top: -20rem; + } + + .sm\:-top-96{ + top: -24rem; + } + + .sm\:-top-px{ + top: -1px; + } + + .sm\:-top-0\.5{ + top: -0.125rem; + } + + .sm\:-top-1\.5{ + top: -0.375rem; + } + + .sm\:-top-2\.5{ + top: -0.625rem; + } + + .sm\:-top-3\.5{ + top: -0.875rem; + } + + .sm\:top-1\/2{ + top: 50%; + } + + .sm\:top-1\/3{ + top: 33.333333%; + } + + .sm\:top-2\/3{ + top: 66.666667%; + } + + .sm\:top-1\/4{ + top: 25%; + } + + .sm\:top-2\/4{ + top: 50%; + } + + .sm\:top-3\/4{ + top: 75%; + } + + .sm\:top-full{ + top: 100%; + } + + .sm\:-top-1\/2{ + top: -50%; + } + + .sm\:-top-1\/3{ + top: -33.333333%; + } + + .sm\:-top-2\/3{ + top: -66.666667%; + } + + .sm\:-top-1\/4{ + top: -25%; + } + + .sm\:-top-2\/4{ + top: -50%; + } + + .sm\:-top-3\/4{ + top: -75%; + } + + .sm\:-top-full{ + top: -100%; + } + + .sm\:top-5vw{ + top: 5vw; + } + + .sm\:right-0{ + right: 0px; + } + + .sm\:right-1{ + right: 0.25rem; + } + + .sm\:right-2{ + right: 0.5rem; + } + + .sm\:right-3{ + right: 0.75rem; + } + + .sm\:right-4{ + right: 1rem; + } + + .sm\:right-5{ + right: 1.25rem; + } + + .sm\:right-6{ + right: 1.5rem; + } + + .sm\:right-7{ + right: 1.75rem; + } + + .sm\:right-8{ + right: 2rem; + } + + .sm\:right-9{ + right: 2.25rem; + } + + .sm\:right-10{ + right: 2.5rem; + } + + .sm\:right-11{ + right: 2.75rem; + } + + .sm\:right-12{ + right: 3rem; + } + + .sm\:right-14{ + right: 3.5rem; + } + + .sm\:right-16{ + right: 4rem; + } + + .sm\:right-20{ + right: 5rem; + } + + .sm\:right-24{ + right: 6rem; + } + + .sm\:right-28{ + right: 7rem; + } + + .sm\:right-32{ + right: 8rem; + } + + .sm\:right-36{ + right: 9rem; + } + + .sm\:right-40{ + right: 10rem; + } + + .sm\:right-44{ + right: 11rem; + } + + .sm\:right-48{ + right: 12rem; + } + + .sm\:right-52{ + right: 13rem; + } + + .sm\:right-56{ + right: 14rem; + } + + .sm\:right-60{ + right: 15rem; + } + + .sm\:right-64{ + right: 16rem; + } + + .sm\:right-72{ + right: 18rem; + } + + .sm\:right-80{ + right: 20rem; + } + + .sm\:right-96{ + right: 24rem; + } + + .sm\:right-auto{ + right: auto; + } + + .sm\:right-px{ + right: 1px; + } + + .sm\:right-0\.5{ + right: 0.125rem; + } + + .sm\:right-1\.5{ + right: 0.375rem; + } + + .sm\:right-2\.5{ + right: 0.625rem; + } + + .sm\:right-3\.5{ + right: 0.875rem; + } + + .sm\:-right-0{ + right: 0px; + } + + .sm\:-right-1{ + right: -0.25rem; + } + + .sm\:-right-2{ + right: -0.5rem; + } + + .sm\:-right-3{ + right: -0.75rem; + } + + .sm\:-right-4{ + right: -1rem; + } + + .sm\:-right-5{ + right: -1.25rem; + } + + .sm\:-right-6{ + right: -1.5rem; + } + + .sm\:-right-7{ + right: -1.75rem; + } + + .sm\:-right-8{ + right: -2rem; + } + + .sm\:-right-9{ + right: -2.25rem; + } + + .sm\:-right-10{ + right: -2.5rem; + } + + .sm\:-right-11{ + right: -2.75rem; + } + + .sm\:-right-12{ + right: -3rem; + } + + .sm\:-right-14{ + right: -3.5rem; + } + + .sm\:-right-16{ + right: -4rem; + } + + .sm\:-right-20{ + right: -5rem; + } + + .sm\:-right-24{ + right: -6rem; + } + + .sm\:-right-28{ + right: -7rem; + } + + .sm\:-right-32{ + right: -8rem; + } + + .sm\:-right-36{ + right: -9rem; + } + + .sm\:-right-40{ + right: -10rem; + } + + .sm\:-right-44{ + right: -11rem; + } + + .sm\:-right-48{ + right: -12rem; + } + + .sm\:-right-52{ + right: -13rem; + } + + .sm\:-right-56{ + right: -14rem; + } + + .sm\:-right-60{ + right: -15rem; + } + + .sm\:-right-64{ + right: -16rem; + } + + .sm\:-right-72{ + right: -18rem; + } + + .sm\:-right-80{ + right: -20rem; + } + + .sm\:-right-96{ + right: -24rem; + } + + .sm\:-right-px{ + right: -1px; + } + + .sm\:-right-0\.5{ + right: -0.125rem; + } + + .sm\:-right-1\.5{ + right: -0.375rem; + } + + .sm\:-right-2\.5{ + right: -0.625rem; + } + + .sm\:-right-3\.5{ + right: -0.875rem; + } + + .sm\:right-1\/2{ + right: 50%; + } + + .sm\:right-1\/3{ + right: 33.333333%; + } + + .sm\:right-2\/3{ + right: 66.666667%; + } + + .sm\:right-1\/4{ + right: 25%; + } + + .sm\:right-2\/4{ + right: 50%; + } + + .sm\:right-3\/4{ + right: 75%; + } + + .sm\:right-full{ + right: 100%; + } + + .sm\:-right-1\/2{ + right: -50%; + } + + .sm\:-right-1\/3{ + right: -33.333333%; + } + + .sm\:-right-2\/3{ + right: -66.666667%; + } + + .sm\:-right-1\/4{ + right: -25%; + } + + .sm\:-right-2\/4{ + right: -50%; + } + + .sm\:-right-3\/4{ + right: -75%; + } + + .sm\:-right-full{ + right: -100%; + } + + .sm\:right-5vw{ + right: 5vw; + } + + .sm\:bottom-0{ + bottom: 0px; + } + + .sm\:bottom-1{ + bottom: 0.25rem; + } + + .sm\:bottom-2{ + bottom: 0.5rem; + } + + .sm\:bottom-3{ + bottom: 0.75rem; + } + + .sm\:bottom-4{ + bottom: 1rem; + } + + .sm\:bottom-5{ + bottom: 1.25rem; + } + + .sm\:bottom-6{ + bottom: 1.5rem; + } + + .sm\:bottom-7{ + bottom: 1.75rem; + } + + .sm\:bottom-8{ + bottom: 2rem; + } + + .sm\:bottom-9{ + bottom: 2.25rem; + } + + .sm\:bottom-10{ + bottom: 2.5rem; + } + + .sm\:bottom-11{ + bottom: 2.75rem; + } + + .sm\:bottom-12{ + bottom: 3rem; + } + + .sm\:bottom-14{ + bottom: 3.5rem; + } + + .sm\:bottom-16{ + bottom: 4rem; + } + + .sm\:bottom-20{ + bottom: 5rem; + } + + .sm\:bottom-24{ + bottom: 6rem; + } + + .sm\:bottom-28{ + bottom: 7rem; + } + + .sm\:bottom-32{ + bottom: 8rem; + } + + .sm\:bottom-36{ + bottom: 9rem; + } + + .sm\:bottom-40{ + bottom: 10rem; + } + + .sm\:bottom-44{ + bottom: 11rem; + } + + .sm\:bottom-48{ + bottom: 12rem; + } + + .sm\:bottom-52{ + bottom: 13rem; + } + + .sm\:bottom-56{ + bottom: 14rem; + } + + .sm\:bottom-60{ + bottom: 15rem; + } + + .sm\:bottom-64{ + bottom: 16rem; + } + + .sm\:bottom-72{ + bottom: 18rem; + } + + .sm\:bottom-80{ + bottom: 20rem; + } + + .sm\:bottom-96{ + bottom: 24rem; + } + + .sm\:bottom-auto{ + bottom: auto; + } + + .sm\:bottom-px{ + bottom: 1px; + } + + .sm\:bottom-0\.5{ + bottom: 0.125rem; + } + + .sm\:bottom-1\.5{ + bottom: 0.375rem; + } + + .sm\:bottom-2\.5{ + bottom: 0.625rem; + } + + .sm\:bottom-3\.5{ + bottom: 0.875rem; + } + + .sm\:-bottom-0{ + bottom: 0px; + } + + .sm\:-bottom-1{ + bottom: -0.25rem; + } + + .sm\:-bottom-2{ + bottom: -0.5rem; + } + + .sm\:-bottom-3{ + bottom: -0.75rem; + } + + .sm\:-bottom-4{ + bottom: -1rem; + } + + .sm\:-bottom-5{ + bottom: -1.25rem; + } + + .sm\:-bottom-6{ + bottom: -1.5rem; + } + + .sm\:-bottom-7{ + bottom: -1.75rem; + } + + .sm\:-bottom-8{ + bottom: -2rem; + } + + .sm\:-bottom-9{ + bottom: -2.25rem; + } + + .sm\:-bottom-10{ + bottom: -2.5rem; + } + + .sm\:-bottom-11{ + bottom: -2.75rem; + } + + .sm\:-bottom-12{ + bottom: -3rem; + } + + .sm\:-bottom-14{ + bottom: -3.5rem; + } + + .sm\:-bottom-16{ + bottom: -4rem; + } + + .sm\:-bottom-20{ + bottom: -5rem; + } + + .sm\:-bottom-24{ + bottom: -6rem; + } + + .sm\:-bottom-28{ + bottom: -7rem; + } + + .sm\:-bottom-32{ + bottom: -8rem; + } + + .sm\:-bottom-36{ + bottom: -9rem; + } + + .sm\:-bottom-40{ + bottom: -10rem; + } + + .sm\:-bottom-44{ + bottom: -11rem; + } + + .sm\:-bottom-48{ + bottom: -12rem; + } + + .sm\:-bottom-52{ + bottom: -13rem; + } + + .sm\:-bottom-56{ + bottom: -14rem; + } + + .sm\:-bottom-60{ + bottom: -15rem; + } + + .sm\:-bottom-64{ + bottom: -16rem; + } + + .sm\:-bottom-72{ + bottom: -18rem; + } + + .sm\:-bottom-80{ + bottom: -20rem; + } + + .sm\:-bottom-96{ + bottom: -24rem; + } + + .sm\:-bottom-px{ + bottom: -1px; + } + + .sm\:-bottom-0\.5{ + bottom: -0.125rem; + } + + .sm\:-bottom-1\.5{ + bottom: -0.375rem; + } + + .sm\:-bottom-2\.5{ + bottom: -0.625rem; + } + + .sm\:-bottom-3\.5{ + bottom: -0.875rem; + } + + .sm\:bottom-1\/2{ + bottom: 50%; + } + + .sm\:bottom-1\/3{ + bottom: 33.333333%; + } + + .sm\:bottom-2\/3{ + bottom: 66.666667%; + } + + .sm\:bottom-1\/4{ + bottom: 25%; + } + + .sm\:bottom-2\/4{ + bottom: 50%; + } + + .sm\:bottom-3\/4{ + bottom: 75%; + } + + .sm\:bottom-full{ + bottom: 100%; + } + + .sm\:-bottom-1\/2{ + bottom: -50%; + } + + .sm\:-bottom-1\/3{ + bottom: -33.333333%; + } + + .sm\:-bottom-2\/3{ + bottom: -66.666667%; + } + + .sm\:-bottom-1\/4{ + bottom: -25%; + } + + .sm\:-bottom-2\/4{ + bottom: -50%; + } + + .sm\:-bottom-3\/4{ + bottom: -75%; + } + + .sm\:-bottom-full{ + bottom: -100%; + } + + .sm\:bottom-5vw{ + bottom: 5vw; + } + + .sm\:left-0{ + left: 0px; + } + + .sm\:left-1{ + left: 0.25rem; + } + + .sm\:left-2{ + left: 0.5rem; + } + + .sm\:left-3{ + left: 0.75rem; + } + + .sm\:left-4{ + left: 1rem; + } + + .sm\:left-5{ + left: 1.25rem; + } + + .sm\:left-6{ + left: 1.5rem; + } + + .sm\:left-7{ + left: 1.75rem; + } + + .sm\:left-8{ + left: 2rem; + } + + .sm\:left-9{ + left: 2.25rem; + } + + .sm\:left-10{ + left: 2.5rem; + } + + .sm\:left-11{ + left: 2.75rem; + } + + .sm\:left-12{ + left: 3rem; + } + + .sm\:left-14{ + left: 3.5rem; + } + + .sm\:left-16{ + left: 4rem; + } + + .sm\:left-20{ + left: 5rem; + } + + .sm\:left-24{ + left: 6rem; + } + + .sm\:left-28{ + left: 7rem; + } + + .sm\:left-32{ + left: 8rem; + } + + .sm\:left-36{ + left: 9rem; + } + + .sm\:left-40{ + left: 10rem; + } + + .sm\:left-44{ + left: 11rem; + } + + .sm\:left-48{ + left: 12rem; + } + + .sm\:left-52{ + left: 13rem; + } + + .sm\:left-56{ + left: 14rem; + } + + .sm\:left-60{ + left: 15rem; + } + + .sm\:left-64{ + left: 16rem; + } + + .sm\:left-72{ + left: 18rem; + } + + .sm\:left-80{ + left: 20rem; + } + + .sm\:left-96{ + left: 24rem; + } + + .sm\:left-auto{ + left: auto; + } + + .sm\:left-px{ + left: 1px; + } + + .sm\:left-0\.5{ + left: 0.125rem; + } + + .sm\:left-1\.5{ + left: 0.375rem; + } + + .sm\:left-2\.5{ + left: 0.625rem; + } + + .sm\:left-3\.5{ + left: 0.875rem; + } + + .sm\:-left-0{ + left: 0px; + } + + .sm\:-left-1{ + left: -0.25rem; + } + + .sm\:-left-2{ + left: -0.5rem; + } + + .sm\:-left-3{ + left: -0.75rem; + } + + .sm\:-left-4{ + left: -1rem; + } + + .sm\:-left-5{ + left: -1.25rem; + } + + .sm\:-left-6{ + left: -1.5rem; + } + + .sm\:-left-7{ + left: -1.75rem; + } + + .sm\:-left-8{ + left: -2rem; + } + + .sm\:-left-9{ + left: -2.25rem; + } + + .sm\:-left-10{ + left: -2.5rem; + } + + .sm\:-left-11{ + left: -2.75rem; + } + + .sm\:-left-12{ + left: -3rem; + } + + .sm\:-left-14{ + left: -3.5rem; + } + + .sm\:-left-16{ + left: -4rem; + } + + .sm\:-left-20{ + left: -5rem; + } + + .sm\:-left-24{ + left: -6rem; + } + + .sm\:-left-28{ + left: -7rem; + } + + .sm\:-left-32{ + left: -8rem; + } + + .sm\:-left-36{ + left: -9rem; + } + + .sm\:-left-40{ + left: -10rem; + } + + .sm\:-left-44{ + left: -11rem; + } + + .sm\:-left-48{ + left: -12rem; + } + + .sm\:-left-52{ + left: -13rem; + } + + .sm\:-left-56{ + left: -14rem; + } + + .sm\:-left-60{ + left: -15rem; + } + + .sm\:-left-64{ + left: -16rem; + } + + .sm\:-left-72{ + left: -18rem; + } + + .sm\:-left-80{ + left: -20rem; + } + + .sm\:-left-96{ + left: -24rem; + } + + .sm\:-left-px{ + left: -1px; + } + + .sm\:-left-0\.5{ + left: -0.125rem; + } + + .sm\:-left-1\.5{ + left: -0.375rem; + } + + .sm\:-left-2\.5{ + left: -0.625rem; + } + + .sm\:-left-3\.5{ + left: -0.875rem; + } + + .sm\:left-1\/2{ + left: 50%; + } + + .sm\:left-1\/3{ + left: 33.333333%; + } + + .sm\:left-2\/3{ + left: 66.666667%; + } + + .sm\:left-1\/4{ + left: 25%; + } + + .sm\:left-2\/4{ + left: 50%; + } + + .sm\:left-3\/4{ + left: 75%; + } + + .sm\:left-full{ + left: 100%; + } + + .sm\:-left-1\/2{ + left: -50%; + } + + .sm\:-left-1\/3{ + left: -33.333333%; + } + + .sm\:-left-2\/3{ + left: -66.666667%; + } + + .sm\:-left-1\/4{ + left: -25%; + } + + .sm\:-left-2\/4{ + left: -50%; + } + + .sm\:-left-3\/4{ + left: -75%; + } + + .sm\:-left-full{ + left: -100%; + } + + .sm\:left-5vw{ + left: 5vw; + } + + .sm\:isolate{ + isolation: isolate; + } + + .sm\:isolation-auto{ + isolation: auto; + } + + .sm\:z-0{ + z-index: 0; + } + + .sm\:z-10{ + z-index: 10; + } + + .sm\:z-20{ + z-index: 20; + } + + .sm\:z-30{ + z-index: 30; + } + + .sm\:z-40{ + z-index: 40; + } + + .sm\:z-50{ + z-index: 50; + } + + .sm\:z-auto{ + z-index: auto; + } + + .sm\:focus-within\:z-0:focus-within{ + z-index: 0; + } + + .sm\:focus-within\:z-10:focus-within{ + z-index: 10; + } + + .sm\:focus-within\:z-20:focus-within{ + z-index: 20; + } + + .sm\:focus-within\:z-30:focus-within{ + z-index: 30; + } + + .sm\:focus-within\:z-40:focus-within{ + z-index: 40; + } + + .sm\:focus-within\:z-50:focus-within{ + z-index: 50; + } + + .sm\:focus-within\:z-auto:focus-within{ + z-index: auto; + } + + .sm\:focus\:z-0:focus{ + z-index: 0; + } + + .sm\:focus\:z-10:focus{ + z-index: 10; + } + + .sm\:focus\:z-20:focus{ + z-index: 20; + } + + .sm\:focus\:z-30:focus{ + z-index: 30; + } + + .sm\:focus\:z-40:focus{ + z-index: 40; + } + + .sm\:focus\:z-50:focus{ + z-index: 50; + } + + .sm\:focus\:z-auto:focus{ + z-index: auto; + } + + .sm\:order-1{ + order: 1; + } + + .sm\:order-2{ + order: 2; + } + + .sm\:order-3{ + order: 3; + } + + .sm\:order-4{ + order: 4; + } + + .sm\:order-5{ + order: 5; + } + + .sm\:order-6{ + order: 6; + } + + .sm\:order-7{ + order: 7; + } + + .sm\:order-8{ + order: 8; + } + + .sm\:order-9{ + order: 9; + } + + .sm\:order-10{ + order: 10; + } + + .sm\:order-11{ + order: 11; + } + + .sm\:order-12{ + order: 12; + } + + .sm\:order-first{ + order: -9999; + } + + .sm\:order-last{ + order: 9999; + } + + .sm\:order-none{ + order: 0; + } + + .sm\:col-auto{ + grid-column: auto; + } + + .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-5{ + grid-column: span 5 / span 5; + } + + .sm\:col-span-6{ + grid-column: span 6 / span 6; + } + + .sm\:col-span-7{ + grid-column: span 7 / span 7; + } + + .sm\:col-span-8{ + grid-column: span 8 / span 8; + } + + .sm\:col-span-9{ + grid-column: span 9 / span 9; + } + + .sm\:col-span-10{ + grid-column: span 10 / span 10; + } + + .sm\:col-span-11{ + grid-column: span 11 / span 11; + } + + .sm\:col-span-12{ + grid-column: span 12 / span 12; + } + + .sm\:col-span-full{ + grid-column: 1 / -1; + } + + .sm\:col-start-1{ + grid-column-start: 1; + } + + .sm\:col-start-2{ + grid-column-start: 2; + } + + .sm\:col-start-3{ + grid-column-start: 3; + } + + .sm\:col-start-4{ + grid-column-start: 4; + } + + .sm\:col-start-5{ + grid-column-start: 5; + } + + .sm\:col-start-6{ + grid-column-start: 6; + } + + .sm\:col-start-7{ + grid-column-start: 7; + } + + .sm\:col-start-8{ + grid-column-start: 8; + } + + .sm\:col-start-9{ + grid-column-start: 9; + } + + .sm\:col-start-10{ + grid-column-start: 10; + } + + .sm\:col-start-11{ + grid-column-start: 11; + } + + .sm\:col-start-12{ + grid-column-start: 12; + } + + .sm\:col-start-13{ + grid-column-start: 13; + } + + .sm\:col-start-auto{ + grid-column-start: auto; + } + + .sm\:col-end-1{ + grid-column-end: 1; + } + + .sm\:col-end-2{ + grid-column-end: 2; + } + + .sm\:col-end-3{ + grid-column-end: 3; + } + + .sm\:col-end-4{ + grid-column-end: 4; + } + + .sm\:col-end-5{ + grid-column-end: 5; + } + + .sm\:col-end-6{ + grid-column-end: 6; + } + + .sm\:col-end-7{ + grid-column-end: 7; + } + + .sm\:col-end-8{ + grid-column-end: 8; + } + + .sm\:col-end-9{ + grid-column-end: 9; + } + + .sm\:col-end-10{ + grid-column-end: 10; + } + + .sm\:col-end-11{ + grid-column-end: 11; + } + + .sm\:col-end-12{ + grid-column-end: 12; + } + + .sm\:col-end-13{ + grid-column-end: 13; + } + + .sm\:col-end-auto{ + grid-column-end: auto; + } + + .sm\:row-auto{ + grid-row: auto; + } + + .sm\:row-span-1{ + grid-row: span 1 / span 1; + } + + .sm\:row-span-2{ + grid-row: span 2 / span 2; + } + + .sm\:row-span-3{ + grid-row: span 3 / span 3; + } + + .sm\:row-span-4{ + grid-row: span 4 / span 4; + } + + .sm\:row-span-5{ + grid-row: span 5 / span 5; + } + + .sm\:row-span-6{ + grid-row: span 6 / span 6; + } + + .sm\:row-span-full{ + grid-row: 1 / -1; + } + + .sm\:row-start-1{ + grid-row-start: 1; + } + + .sm\:row-start-2{ + grid-row-start: 2; + } + + .sm\:row-start-3{ + grid-row-start: 3; + } + + .sm\:row-start-4{ + grid-row-start: 4; + } + + .sm\:row-start-5{ + grid-row-start: 5; + } + + .sm\:row-start-6{ + grid-row-start: 6; + } + + .sm\:row-start-7{ + grid-row-start: 7; + } + + .sm\:row-start-auto{ + grid-row-start: auto; + } + + .sm\:row-end-1{ + grid-row-end: 1; + } + + .sm\:row-end-2{ + grid-row-end: 2; + } + + .sm\:row-end-3{ + grid-row-end: 3; + } + + .sm\:row-end-4{ + grid-row-end: 4; + } + + .sm\:row-end-5{ + grid-row-end: 5; + } + + .sm\:row-end-6{ + grid-row-end: 6; + } + + .sm\:row-end-7{ + grid-row-end: 7; + } + + .sm\:row-end-auto{ + grid-row-end: auto; + } + + .sm\:float-right{ + float: right; + } + + .sm\:float-left{ + float: left; + } + + .sm\:float-none{ + float: none; + } + + .sm\:clear-left{ + clear: left; + } + + .sm\:clear-right{ + clear: right; + } + + .sm\:clear-both{ + clear: both; + } + + .sm\:clear-none{ + clear: none; + } + + .sm\:m-0{ + margin: 0px; + } + + .sm\:m-1{ + margin: 0.25rem; + } + + .sm\:m-2{ + margin: 0.5rem; + } + + .sm\:m-3{ + margin: 0.75rem; + } + + .sm\:m-4{ + margin: 1rem; + } + + .sm\:m-5{ + margin: 1.25rem; + } + + .sm\:m-6{ + margin: 1.5rem; + } + + .sm\:m-7{ + margin: 1.75rem; + } + + .sm\:m-8{ + margin: 2rem; + } + + .sm\:m-9{ + margin: 2.25rem; + } + + .sm\:m-10{ + margin: 2.5rem; + } + + .sm\:m-11{ + margin: 2.75rem; + } + + .sm\:m-12{ + margin: 3rem; + } + + .sm\:m-14{ + margin: 3.5rem; + } + + .sm\:m-16{ + margin: 4rem; + } + + .sm\:m-20{ + margin: 5rem; + } + + .sm\:m-24{ + margin: 6rem; + } + + .sm\:m-28{ + margin: 7rem; + } + + .sm\:m-32{ + margin: 8rem; + } + + .sm\:m-36{ + margin: 9rem; + } + + .sm\:m-40{ + margin: 10rem; + } + + .sm\:m-44{ + margin: 11rem; + } + + .sm\:m-48{ + margin: 12rem; + } + + .sm\:m-52{ + margin: 13rem; + } + + .sm\:m-56{ + margin: 14rem; + } + + .sm\:m-60{ + margin: 15rem; + } + + .sm\:m-64{ + margin: 16rem; + } + + .sm\:m-72{ + margin: 18rem; + } + + .sm\:m-80{ + margin: 20rem; + } + + .sm\:m-96{ + margin: 24rem; + } + + .sm\:m-auto{ + margin: auto; + } + + .sm\:m-px{ + margin: 1px; + } + + .sm\:m-0\.5{ + margin: 0.125rem; + } + + .sm\:m-1\.5{ + margin: 0.375rem; + } + + .sm\:m-2\.5{ + margin: 0.625rem; + } + + .sm\:m-3\.5{ + margin: 0.875rem; + } + + .sm\:-m-0{ + margin: 0px; + } + + .sm\:-m-1{ + margin: -0.25rem; + } + + .sm\:-m-2{ + margin: -0.5rem; + } + + .sm\:-m-3{ + margin: -0.75rem; + } + + .sm\:-m-4{ + margin: -1rem; + } + + .sm\:-m-5{ + margin: -1.25rem; + } + + .sm\:-m-6{ + margin: -1.5rem; + } + + .sm\:-m-7{ + margin: -1.75rem; + } + + .sm\:-m-8{ + margin: -2rem; + } + + .sm\:-m-9{ + margin: -2.25rem; + } + + .sm\:-m-10{ + margin: -2.5rem; + } + + .sm\:-m-11{ + margin: -2.75rem; + } + + .sm\:-m-12{ + margin: -3rem; + } + + .sm\:-m-14{ + margin: -3.5rem; + } + + .sm\:-m-16{ + margin: -4rem; + } + + .sm\:-m-20{ + margin: -5rem; + } + + .sm\:-m-24{ + margin: -6rem; + } + + .sm\:-m-28{ + margin: -7rem; + } + + .sm\:-m-32{ + margin: -8rem; + } + + .sm\:-m-36{ + margin: -9rem; + } + + .sm\:-m-40{ + margin: -10rem; + } + + .sm\:-m-44{ + margin: -11rem; + } + + .sm\:-m-48{ + margin: -12rem; + } + + .sm\:-m-52{ + margin: -13rem; + } + + .sm\:-m-56{ + margin: -14rem; + } + + .sm\:-m-60{ + margin: -15rem; + } + + .sm\:-m-64{ + margin: -16rem; + } + + .sm\:-m-72{ + margin: -18rem; + } + + .sm\:-m-80{ + margin: -20rem; + } + + .sm\:-m-96{ + margin: -24rem; + } + + .sm\:-m-px{ + margin: -1px; + } + + .sm\:-m-0\.5{ + margin: -0.125rem; + } + + .sm\:-m-1\.5{ + margin: -0.375rem; + } + + .sm\:-m-2\.5{ + margin: -0.625rem; + } + + .sm\:-m-3\.5{ + margin: -0.875rem; + } + + .sm\:mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .sm\:mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .sm\:mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .sm\:mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .sm\:mx-4{ + margin-left: 1rem; + margin-right: 1rem; + } + + .sm\:mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .sm\:mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .sm\:mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .sm\:mx-8{ + margin-left: 2rem; + margin-right: 2rem; + } + + .sm\:mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .sm\:mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .sm\:mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .sm\:mx-12{ + margin-left: 3rem; + margin-right: 3rem; + } + + .sm\:mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .sm\:mx-16{ + margin-left: 4rem; + margin-right: 4rem; + } + + .sm\:mx-20{ + margin-left: 5rem; + margin-right: 5rem; + } + + .sm\:mx-24{ + margin-left: 6rem; + margin-right: 6rem; + } + + .sm\:mx-28{ + margin-left: 7rem; + margin-right: 7rem; + } + + .sm\:mx-32{ + margin-left: 8rem; + margin-right: 8rem; + } + + .sm\:mx-36{ + margin-left: 9rem; + margin-right: 9rem; + } + + .sm\:mx-40{ + margin-left: 10rem; + margin-right: 10rem; + } + + .sm\:mx-44{ + margin-left: 11rem; + margin-right: 11rem; + } + + .sm\:mx-48{ + margin-left: 12rem; + margin-right: 12rem; + } + + .sm\:mx-52{ + margin-left: 13rem; + margin-right: 13rem; + } + + .sm\:mx-56{ + margin-left: 14rem; + margin-right: 14rem; + } + + .sm\:mx-60{ + margin-left: 15rem; + margin-right: 15rem; + } + + .sm\:mx-64{ + margin-left: 16rem; + margin-right: 16rem; + } + + .sm\:mx-72{ + margin-left: 18rem; + margin-right: 18rem; + } + + .sm\:mx-80{ + margin-left: 20rem; + margin-right: 20rem; + } + + .sm\:mx-96{ + margin-left: 24rem; + margin-right: 24rem; + } + + .sm\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + + .sm\:mx-px{ + margin-left: 1px; + margin-right: 1px; + } + + .sm\:mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .sm\:mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .sm\:mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .sm\:mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .sm\:-mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .sm\:-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .sm\:-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .sm\:-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .sm\:-mx-4{ + margin-left: -1rem; + margin-right: -1rem; + } + + .sm\:-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .sm\:-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .sm\:-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .sm\:-mx-8{ + margin-left: -2rem; + margin-right: -2rem; + } + + .sm\:-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .sm\:-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .sm\:-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .sm\:-mx-12{ + margin-left: -3rem; + margin-right: -3rem; + } + + .sm\:-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .sm\:-mx-16{ + margin-left: -4rem; + margin-right: -4rem; + } + + .sm\:-mx-20{ + margin-left: -5rem; + margin-right: -5rem; + } + + .sm\:-mx-24{ + margin-left: -6rem; + margin-right: -6rem; + } + + .sm\:-mx-28{ + margin-left: -7rem; + margin-right: -7rem; + } + + .sm\:-mx-32{ + margin-left: -8rem; + margin-right: -8rem; + } + + .sm\:-mx-36{ + margin-left: -9rem; + margin-right: -9rem; + } + + .sm\:-mx-40{ + margin-left: -10rem; + margin-right: -10rem; + } + + .sm\:-mx-44{ + margin-left: -11rem; + margin-right: -11rem; + } + + .sm\:-mx-48{ + margin-left: -12rem; + margin-right: -12rem; + } + + .sm\:-mx-52{ + margin-left: -13rem; + margin-right: -13rem; + } + + .sm\:-mx-56{ + margin-left: -14rem; + margin-right: -14rem; + } + + .sm\:-mx-60{ + margin-left: -15rem; + margin-right: -15rem; + } + + .sm\:-mx-64{ + margin-left: -16rem; + margin-right: -16rem; + } + + .sm\:-mx-72{ + margin-left: -18rem; + margin-right: -18rem; + } + + .sm\:-mx-80{ + margin-left: -20rem; + margin-right: -20rem; + } + + .sm\:-mx-96{ + margin-left: -24rem; + margin-right: -24rem; + } + + .sm\:-mx-px{ + margin-left: -1px; + margin-right: -1px; + } + + .sm\:-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .sm\:-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .sm\:-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .sm\:-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .sm\:my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .sm\:my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .sm\:my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .sm\:my-4{ + margin-top: 1rem; + margin-bottom: 1rem; + } + + .sm\:my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .sm\:my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .sm\:my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .sm\:my-8{ + margin-top: 2rem; + margin-bottom: 2rem; + } + + .sm\:my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .sm\:my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .sm\:my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .sm\:my-12{ + margin-top: 3rem; + margin-bottom: 3rem; + } + + .sm\:my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .sm\:my-16{ + margin-top: 4rem; + margin-bottom: 4rem; + } + + .sm\:my-20{ + margin-top: 5rem; + margin-bottom: 5rem; + } + + .sm\:my-24{ + margin-top: 6rem; + margin-bottom: 6rem; + } + + .sm\:my-28{ + margin-top: 7rem; + margin-bottom: 7rem; + } + + .sm\:my-32{ + margin-top: 8rem; + margin-bottom: 8rem; + } + + .sm\:my-36{ + margin-top: 9rem; + margin-bottom: 9rem; + } + + .sm\:my-40{ + margin-top: 10rem; + margin-bottom: 10rem; + } + + .sm\:my-44{ + margin-top: 11rem; + margin-bottom: 11rem; + } + + .sm\:my-48{ + margin-top: 12rem; + margin-bottom: 12rem; + } + + .sm\:my-52{ + margin-top: 13rem; + margin-bottom: 13rem; + } + + .sm\:my-56{ + margin-top: 14rem; + margin-bottom: 14rem; + } + + .sm\:my-60{ + margin-top: 15rem; + margin-bottom: 15rem; + } + + .sm\:my-64{ + margin-top: 16rem; + margin-bottom: 16rem; + } + + .sm\:my-72{ + margin-top: 18rem; + margin-bottom: 18rem; + } + + .sm\:my-80{ + margin-top: 20rem; + margin-bottom: 20rem; + } + + .sm\:my-96{ + margin-top: 24rem; + margin-bottom: 24rem; + } + + .sm\:my-auto{ + margin-top: auto; + margin-bottom: auto; + } + + .sm\:my-px{ + margin-top: 1px; + margin-bottom: 1px; + } + + .sm\:my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .sm\:my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .sm\:my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .sm\:my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .sm\:-my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .sm\:-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .sm\:-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .sm\:-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; + } + + .sm\:-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .sm\:-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .sm\:-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .sm\:-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; + } + + .sm\:-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .sm\:-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .sm\:-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .sm\:-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; + } + + .sm\:-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .sm\:-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; + } + + .sm\:-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; + } + + .sm\:-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; + } + + .sm\:-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; + } + + .sm\:-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; + } + + .sm\:-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; + } + + .sm\:-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; + } + + .sm\:-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; + } + + .sm\:-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; + } + + .sm\:-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; + } + + .sm\:-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; + } + + .sm\:-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; + } + + .sm\:-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; + } + + .sm\:-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; + } + + .sm\:-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; + } + + .sm\:-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; + } + + .sm\:-my-px{ + margin-top: -1px; + margin-bottom: -1px; + } + + .sm\:-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .sm\:-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .sm\:-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .sm\:-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .sm\:mt-0{ + margin-top: 0px; + } + + .sm\:mt-1{ + margin-top: 0.25rem; + } + + .sm\:mt-2{ + margin-top: 0.5rem; + } + + .sm\:mt-3{ + margin-top: 0.75rem; + } + + .sm\:mt-4{ + margin-top: 1rem; + } + + .sm\:mt-5{ + margin-top: 1.25rem; + } + + .sm\:mt-6{ + margin-top: 1.5rem; + } + + .sm\:mt-7{ + margin-top: 1.75rem; + } + + .sm\:mt-8{ + margin-top: 2rem; + } + + .sm\:mt-9{ + margin-top: 2.25rem; + } + + .sm\:mt-10{ + margin-top: 2.5rem; + } + + .sm\:mt-11{ + margin-top: 2.75rem; + } + + .sm\:mt-12{ + margin-top: 3rem; + } + + .sm\:mt-14{ + margin-top: 3.5rem; + } + + .sm\:mt-16{ + margin-top: 4rem; + } + + .sm\:mt-20{ + margin-top: 5rem; + } + + .sm\:mt-24{ + margin-top: 6rem; + } + + .sm\:mt-28{ + margin-top: 7rem; + } + + .sm\:mt-32{ + margin-top: 8rem; + } + + .sm\:mt-36{ + margin-top: 9rem; + } + + .sm\:mt-40{ + margin-top: 10rem; + } + + .sm\:mt-44{ + margin-top: 11rem; + } + + .sm\:mt-48{ + margin-top: 12rem; + } + + .sm\:mt-52{ + margin-top: 13rem; + } + + .sm\:mt-56{ + margin-top: 14rem; + } + + .sm\:mt-60{ + margin-top: 15rem; + } + + .sm\:mt-64{ + margin-top: 16rem; + } + + .sm\:mt-72{ + margin-top: 18rem; + } + + .sm\:mt-80{ + margin-top: 20rem; + } + + .sm\:mt-96{ + margin-top: 24rem; + } + + .sm\:mt-auto{ + margin-top: auto; + } + + .sm\:mt-px{ + margin-top: 1px; + } + + .sm\:mt-0\.5{ + margin-top: 0.125rem; + } + + .sm\:mt-1\.5{ + margin-top: 0.375rem; + } + + .sm\:mt-2\.5{ + margin-top: 0.625rem; + } + + .sm\:mt-3\.5{ + margin-top: 0.875rem; + } + + .sm\:-mt-0{ + margin-top: 0px; + } + + .sm\:-mt-1{ + margin-top: -0.25rem; + } + + .sm\:-mt-2{ + margin-top: -0.5rem; + } + + .sm\:-mt-3{ + margin-top: -0.75rem; + } + + .sm\:-mt-4{ + margin-top: -1rem; + } + + .sm\:-mt-5{ + margin-top: -1.25rem; + } + + .sm\:-mt-6{ + margin-top: -1.5rem; + } + + .sm\:-mt-7{ + margin-top: -1.75rem; + } + + .sm\:-mt-8{ + margin-top: -2rem; + } + + .sm\:-mt-9{ + margin-top: -2.25rem; + } + + .sm\:-mt-10{ + margin-top: -2.5rem; + } + + .sm\:-mt-11{ + margin-top: -2.75rem; + } + + .sm\:-mt-12{ + margin-top: -3rem; + } + + .sm\:-mt-14{ + margin-top: -3.5rem; + } + + .sm\:-mt-16{ + margin-top: -4rem; + } + + .sm\:-mt-20{ + margin-top: -5rem; + } + + .sm\:-mt-24{ + margin-top: -6rem; + } + + .sm\:-mt-28{ + margin-top: -7rem; + } + + .sm\:-mt-32{ + margin-top: -8rem; + } + + .sm\:-mt-36{ + margin-top: -9rem; + } + + .sm\:-mt-40{ + margin-top: -10rem; + } + + .sm\:-mt-44{ + margin-top: -11rem; + } + + .sm\:-mt-48{ + margin-top: -12rem; + } + + .sm\:-mt-52{ + margin-top: -13rem; + } + + .sm\:-mt-56{ + margin-top: -14rem; + } + + .sm\:-mt-60{ + margin-top: -15rem; + } + + .sm\:-mt-64{ + margin-top: -16rem; + } + + .sm\:-mt-72{ + margin-top: -18rem; + } + + .sm\:-mt-80{ + margin-top: -20rem; + } + + .sm\:-mt-96{ + margin-top: -24rem; + } + + .sm\:-mt-px{ + margin-top: -1px; + } + + .sm\:-mt-0\.5{ + margin-top: -0.125rem; + } + + .sm\:-mt-1\.5{ + margin-top: -0.375rem; + } + + .sm\:-mt-2\.5{ + margin-top: -0.625rem; + } + + .sm\:-mt-3\.5{ + margin-top: -0.875rem; + } + + .sm\:mr-0{ + margin-right: 0px; + } + + .sm\:mr-1{ + margin-right: 0.25rem; + } + + .sm\:mr-2{ + margin-right: 0.5rem; + } + + .sm\:mr-3{ + margin-right: 0.75rem; + } + + .sm\:mr-4{ + margin-right: 1rem; + } + + .sm\:mr-5{ + margin-right: 1.25rem; + } + + .sm\:mr-6{ + margin-right: 1.5rem; + } + + .sm\:mr-7{ + margin-right: 1.75rem; + } + + .sm\:mr-8{ + margin-right: 2rem; + } + + .sm\:mr-9{ + margin-right: 2.25rem; + } + + .sm\:mr-10{ + margin-right: 2.5rem; + } + + .sm\:mr-11{ + margin-right: 2.75rem; + } + + .sm\:mr-12{ + margin-right: 3rem; + } + + .sm\:mr-14{ + margin-right: 3.5rem; + } + + .sm\:mr-16{ + margin-right: 4rem; + } + + .sm\:mr-20{ + margin-right: 5rem; + } + + .sm\:mr-24{ + margin-right: 6rem; + } + + .sm\:mr-28{ + margin-right: 7rem; + } + + .sm\:mr-32{ + margin-right: 8rem; + } + + .sm\:mr-36{ + margin-right: 9rem; + } + + .sm\:mr-40{ + margin-right: 10rem; + } + + .sm\:mr-44{ + margin-right: 11rem; + } + + .sm\:mr-48{ + margin-right: 12rem; + } + + .sm\:mr-52{ + margin-right: 13rem; + } + + .sm\:mr-56{ + margin-right: 14rem; + } + + .sm\:mr-60{ + margin-right: 15rem; + } + + .sm\:mr-64{ + margin-right: 16rem; + } + + .sm\:mr-72{ + margin-right: 18rem; + } + + .sm\:mr-80{ + margin-right: 20rem; + } + + .sm\:mr-96{ + margin-right: 24rem; + } + + .sm\:mr-auto{ + margin-right: auto; + } + + .sm\:mr-px{ + margin-right: 1px; + } + + .sm\:mr-0\.5{ + margin-right: 0.125rem; + } + + .sm\:mr-1\.5{ + margin-right: 0.375rem; + } + + .sm\:mr-2\.5{ + margin-right: 0.625rem; + } + + .sm\:mr-3\.5{ + margin-right: 0.875rem; + } + + .sm\:-mr-0{ + margin-right: 0px; + } + + .sm\:-mr-1{ + margin-right: -0.25rem; + } + + .sm\:-mr-2{ + margin-right: -0.5rem; + } + + .sm\:-mr-3{ + margin-right: -0.75rem; + } + + .sm\:-mr-4{ + margin-right: -1rem; + } + + .sm\:-mr-5{ + margin-right: -1.25rem; + } + + .sm\:-mr-6{ + margin-right: -1.5rem; + } + + .sm\:-mr-7{ + margin-right: -1.75rem; + } + + .sm\:-mr-8{ + margin-right: -2rem; + } + + .sm\:-mr-9{ + margin-right: -2.25rem; + } + + .sm\:-mr-10{ + margin-right: -2.5rem; + } + + .sm\:-mr-11{ + margin-right: -2.75rem; + } + + .sm\:-mr-12{ + margin-right: -3rem; + } + + .sm\:-mr-14{ + margin-right: -3.5rem; + } + + .sm\:-mr-16{ + margin-right: -4rem; + } + + .sm\:-mr-20{ + margin-right: -5rem; + } + + .sm\:-mr-24{ + margin-right: -6rem; + } + + .sm\:-mr-28{ + margin-right: -7rem; + } + + .sm\:-mr-32{ + margin-right: -8rem; + } + + .sm\:-mr-36{ + margin-right: -9rem; + } + + .sm\:-mr-40{ + margin-right: -10rem; + } + + .sm\:-mr-44{ + margin-right: -11rem; + } + + .sm\:-mr-48{ + margin-right: -12rem; + } + + .sm\:-mr-52{ + margin-right: -13rem; + } + + .sm\:-mr-56{ + margin-right: -14rem; + } + + .sm\:-mr-60{ + margin-right: -15rem; + } + + .sm\:-mr-64{ + margin-right: -16rem; + } + + .sm\:-mr-72{ + margin-right: -18rem; + } + + .sm\:-mr-80{ + margin-right: -20rem; + } + + .sm\:-mr-96{ + margin-right: -24rem; + } + + .sm\:-mr-px{ + margin-right: -1px; + } + + .sm\:-mr-0\.5{ + margin-right: -0.125rem; + } + + .sm\:-mr-1\.5{ + margin-right: -0.375rem; + } + + .sm\:-mr-2\.5{ + margin-right: -0.625rem; + } + + .sm\:-mr-3\.5{ + margin-right: -0.875rem; + } + + .sm\:mb-0{ + margin-bottom: 0px; + } + + .sm\:mb-1{ + margin-bottom: 0.25rem; + } + + .sm\:mb-2{ + margin-bottom: 0.5rem; + } + + .sm\:mb-3{ + margin-bottom: 0.75rem; + } + + .sm\:mb-4{ + margin-bottom: 1rem; + } + + .sm\:mb-5{ + margin-bottom: 1.25rem; + } + + .sm\:mb-6{ + margin-bottom: 1.5rem; + } + + .sm\:mb-7{ + margin-bottom: 1.75rem; + } + + .sm\:mb-8{ + margin-bottom: 2rem; + } + + .sm\:mb-9{ + margin-bottom: 2.25rem; + } + + .sm\:mb-10{ + margin-bottom: 2.5rem; + } + + .sm\:mb-11{ + margin-bottom: 2.75rem; + } + + .sm\:mb-12{ + margin-bottom: 3rem; + } + + .sm\:mb-14{ + margin-bottom: 3.5rem; + } + + .sm\:mb-16{ + margin-bottom: 4rem; + } + + .sm\:mb-20{ + margin-bottom: 5rem; + } + + .sm\:mb-24{ + margin-bottom: 6rem; + } + + .sm\:mb-28{ + margin-bottom: 7rem; + } + + .sm\:mb-32{ + margin-bottom: 8rem; + } + + .sm\:mb-36{ + margin-bottom: 9rem; + } + + .sm\:mb-40{ + margin-bottom: 10rem; + } + + .sm\:mb-44{ + margin-bottom: 11rem; + } + + .sm\:mb-48{ + margin-bottom: 12rem; + } + + .sm\:mb-52{ + margin-bottom: 13rem; + } + + .sm\:mb-56{ + margin-bottom: 14rem; + } + + .sm\:mb-60{ + margin-bottom: 15rem; + } + + .sm\:mb-64{ + margin-bottom: 16rem; + } + + .sm\:mb-72{ + margin-bottom: 18rem; + } + + .sm\:mb-80{ + margin-bottom: 20rem; + } + + .sm\:mb-96{ + margin-bottom: 24rem; + } + + .sm\:mb-auto{ + margin-bottom: auto; + } + + .sm\:mb-px{ + margin-bottom: 1px; + } + + .sm\:mb-0\.5{ + margin-bottom: 0.125rem; + } + + .sm\:mb-1\.5{ + margin-bottom: 0.375rem; + } + + .sm\:mb-2\.5{ + margin-bottom: 0.625rem; + } + + .sm\:mb-3\.5{ + margin-bottom: 0.875rem; + } + + .sm\:-mb-0{ + margin-bottom: 0px; + } + + .sm\:-mb-1{ + margin-bottom: -0.25rem; + } + + .sm\:-mb-2{ + margin-bottom: -0.5rem; + } + + .sm\:-mb-3{ + margin-bottom: -0.75rem; + } + + .sm\:-mb-4{ + margin-bottom: -1rem; + } + + .sm\:-mb-5{ + margin-bottom: -1.25rem; + } + + .sm\:-mb-6{ + margin-bottom: -1.5rem; + } + + .sm\:-mb-7{ + margin-bottom: -1.75rem; + } + + .sm\:-mb-8{ + margin-bottom: -2rem; + } + + .sm\:-mb-9{ + margin-bottom: -2.25rem; + } + + .sm\:-mb-10{ + margin-bottom: -2.5rem; + } + + .sm\:-mb-11{ + margin-bottom: -2.75rem; + } + + .sm\:-mb-12{ + margin-bottom: -3rem; + } + + .sm\:-mb-14{ + margin-bottom: -3.5rem; + } + + .sm\:-mb-16{ + margin-bottom: -4rem; + } + + .sm\:-mb-20{ + margin-bottom: -5rem; + } + + .sm\:-mb-24{ + margin-bottom: -6rem; + } + + .sm\:-mb-28{ + margin-bottom: -7rem; + } + + .sm\:-mb-32{ + margin-bottom: -8rem; + } + + .sm\:-mb-36{ + margin-bottom: -9rem; + } + + .sm\:-mb-40{ + margin-bottom: -10rem; + } + + .sm\:-mb-44{ + margin-bottom: -11rem; + } + + .sm\:-mb-48{ + margin-bottom: -12rem; + } + + .sm\:-mb-52{ + margin-bottom: -13rem; + } + + .sm\:-mb-56{ + margin-bottom: -14rem; + } + + .sm\:-mb-60{ + margin-bottom: -15rem; + } + + .sm\:-mb-64{ + margin-bottom: -16rem; + } + + .sm\:-mb-72{ + margin-bottom: -18rem; + } + + .sm\:-mb-80{ + margin-bottom: -20rem; + } + + .sm\:-mb-96{ + margin-bottom: -24rem; + } + + .sm\:-mb-px{ + margin-bottom: -1px; + } + + .sm\:-mb-0\.5{ + margin-bottom: -0.125rem; + } + + .sm\:-mb-1\.5{ + margin-bottom: -0.375rem; + } + + .sm\:-mb-2\.5{ + margin-bottom: -0.625rem; + } + + .sm\:-mb-3\.5{ + margin-bottom: -0.875rem; + } + + .sm\:ml-0{ + margin-left: 0px; + } + + .sm\:ml-1{ + margin-left: 0.25rem; + } + + .sm\:ml-2{ + margin-left: 0.5rem; + } + + .sm\:ml-3{ + margin-left: 0.75rem; + } + + .sm\:ml-4{ + margin-left: 1rem; + } + + .sm\:ml-5{ + margin-left: 1.25rem; + } + + .sm\:ml-6{ + margin-left: 1.5rem; + } + + .sm\:ml-7{ + margin-left: 1.75rem; + } + + .sm\:ml-8{ + margin-left: 2rem; + } + + .sm\:ml-9{ + margin-left: 2.25rem; + } + + .sm\:ml-10{ + margin-left: 2.5rem; + } + + .sm\:ml-11{ + margin-left: 2.75rem; + } + + .sm\:ml-12{ + margin-left: 3rem; + } + + .sm\:ml-14{ + margin-left: 3.5rem; + } + + .sm\:ml-16{ + margin-left: 4rem; + } + + .sm\:ml-20{ + margin-left: 5rem; + } + + .sm\:ml-24{ + margin-left: 6rem; + } + + .sm\:ml-28{ + margin-left: 7rem; + } + + .sm\:ml-32{ + margin-left: 8rem; + } + + .sm\:ml-36{ + margin-left: 9rem; + } + + .sm\:ml-40{ + margin-left: 10rem; + } + + .sm\:ml-44{ + margin-left: 11rem; + } + + .sm\:ml-48{ + margin-left: 12rem; + } + + .sm\:ml-52{ + margin-left: 13rem; + } + + .sm\:ml-56{ + margin-left: 14rem; + } + + .sm\:ml-60{ + margin-left: 15rem; + } + + .sm\:ml-64{ + margin-left: 16rem; + } + + .sm\:ml-72{ + margin-left: 18rem; + } + + .sm\:ml-80{ + margin-left: 20rem; + } + + .sm\:ml-96{ + margin-left: 24rem; + } + + .sm\:ml-auto{ + margin-left: auto; + } + + .sm\:ml-px{ + margin-left: 1px; + } + + .sm\:ml-0\.5{ + margin-left: 0.125rem; + } + + .sm\:ml-1\.5{ + margin-left: 0.375rem; + } + + .sm\:ml-2\.5{ + margin-left: 0.625rem; + } + + .sm\:ml-3\.5{ + margin-left: 0.875rem; + } + + .sm\:-ml-0{ + margin-left: 0px; + } + + .sm\:-ml-1{ + margin-left: -0.25rem; + } + + .sm\:-ml-2{ + margin-left: -0.5rem; + } + + .sm\:-ml-3{ + margin-left: -0.75rem; + } + + .sm\:-ml-4{ + margin-left: -1rem; + } + + .sm\:-ml-5{ + margin-left: -1.25rem; + } + + .sm\:-ml-6{ + margin-left: -1.5rem; + } + + .sm\:-ml-7{ + margin-left: -1.75rem; + } + + .sm\:-ml-8{ + margin-left: -2rem; + } + + .sm\:-ml-9{ + margin-left: -2.25rem; + } + + .sm\:-ml-10{ + margin-left: -2.5rem; + } + + .sm\:-ml-11{ + margin-left: -2.75rem; + } + + .sm\:-ml-12{ + margin-left: -3rem; + } + + .sm\:-ml-14{ + margin-left: -3.5rem; + } + + .sm\:-ml-16{ + margin-left: -4rem; + } + + .sm\:-ml-20{ + margin-left: -5rem; + } + + .sm\:-ml-24{ + margin-left: -6rem; + } + + .sm\:-ml-28{ + margin-left: -7rem; + } + + .sm\:-ml-32{ + margin-left: -8rem; + } + + .sm\:-ml-36{ + margin-left: -9rem; + } + + .sm\:-ml-40{ + margin-left: -10rem; + } + + .sm\:-ml-44{ + margin-left: -11rem; + } + + .sm\:-ml-48{ + margin-left: -12rem; + } + + .sm\:-ml-52{ + margin-left: -13rem; + } + + .sm\:-ml-56{ + margin-left: -14rem; + } + + .sm\:-ml-60{ + margin-left: -15rem; + } + + .sm\:-ml-64{ + margin-left: -16rem; + } + + .sm\:-ml-72{ + margin-left: -18rem; + } + + .sm\:-ml-80{ + margin-left: -20rem; + } + + .sm\:-ml-96{ + margin-left: -24rem; + } + + .sm\:-ml-px{ + margin-left: -1px; + } + + .sm\:-ml-0\.5{ + margin-left: -0.125rem; + } + + .sm\:-ml-1\.5{ + margin-left: -0.375rem; + } + + .sm\:-ml-2\.5{ + margin-left: -0.625rem; + } + + .sm\:-ml-3\.5{ + margin-left: -0.875rem; + } + + .sm\:box-border{ + box-sizing: border-box; + } + + .sm\:box-content{ + box-sizing: content-box; + } + + .sm\:block{ + display: block; + } + + .sm\:inline-block{ + display: inline-block; + } + + .sm\:inline{ + display: inline; + } + + .sm\:flex{ + display: flex; + } + + .sm\:inline-flex{ + display: inline-flex; + } + + .sm\:table{ + display: table; + } + + .sm\:inline-table{ + display: inline-table; + } + + .sm\:table-caption{ + display: table-caption; + } + + .sm\:table-cell{ + display: table-cell; + } + + .sm\:table-column{ + display: table-column; + } + + .sm\:table-column-group{ + display: table-column-group; + } + + .sm\:table-footer-group{ + display: table-footer-group; + } + + .sm\:table-header-group{ + display: table-header-group; + } + + .sm\:table-row-group{ + display: table-row-group; + } + + .sm\:table-row{ + display: table-row; + } + + .sm\:flow-root{ + display: flow-root; + } + + .sm\:grid{ + display: grid; + } + + .sm\:inline-grid{ + display: inline-grid; + } + + .sm\:contents{ + display: contents; + } + + .sm\:list-item{ + display: list-item; + } + + .sm\:hidden{ + display: none; + } + + .sm\:h-0{ + height: 0px; + } + + .sm\:h-1{ + height: 0.25rem; + } + + .sm\:h-2{ + height: 0.5rem; + } + + .sm\:h-3{ + height: 0.75rem; + } + + .sm\:h-4{ + height: 1rem; + } + + .sm\:h-5{ + height: 1.25rem; + } + + .sm\:h-6{ + height: 1.5rem; + } + + .sm\:h-7{ + height: 1.75rem; + } + + .sm\:h-8{ + height: 2rem; + } + + .sm\:h-9{ + height: 2.25rem; + } + + .sm\:h-10{ + height: 2.5rem; + } + + .sm\:h-11{ + height: 2.75rem; + } + + .sm\:h-12{ + height: 3rem; + } + + .sm\:h-14{ + height: 3.5rem; + } + + .sm\:h-16{ + height: 4rem; + } + + .sm\:h-20{ + height: 5rem; + } + + .sm\:h-24{ + height: 6rem; + } + + .sm\:h-28{ + height: 7rem; + } + + .sm\:h-32{ + height: 8rem; + } + + .sm\:h-36{ + height: 9rem; + } + + .sm\:h-40{ + height: 10rem; + } + + .sm\:h-44{ + height: 11rem; + } + + .sm\:h-48{ + height: 12rem; + } + + .sm\:h-52{ + height: 13rem; + } + + .sm\:h-56{ + height: 14rem; + } + + .sm\:h-60{ + height: 15rem; + } + + .sm\:h-64{ + height: 16rem; + } + + .sm\:h-72{ + height: 18rem; + } + + .sm\:h-80{ + height: 20rem; + } + + .sm\:h-96{ + height: 24rem; + } + + .sm\:h-auto{ + height: auto; + } + + .sm\:h-px{ + height: 1px; + } + + .sm\:h-0\.5{ + height: 0.125rem; + } + + .sm\:h-1\.5{ + height: 0.375rem; + } + + .sm\:h-2\.5{ + height: 0.625rem; + } + + .sm\:h-3\.5{ + height: 0.875rem; + } + + .sm\:h-1\/2{ + height: 50%; + } + + .sm\:h-1\/3{ + height: 33.333333%; + } + + .sm\:h-2\/3{ + height: 66.666667%; + } + + .sm\:h-1\/4{ + height: 25%; + } + + .sm\:h-2\/4{ + height: 50%; + } + + .sm\:h-3\/4{ + height: 75%; + } + + .sm\:h-1\/5{ + height: 20%; + } + + .sm\:h-2\/5{ + height: 40%; + } + + .sm\:h-3\/5{ + height: 60%; + } + + .sm\:h-4\/5{ + height: 80%; + } + + .sm\:h-1\/6{ + height: 16.666667%; + } + + .sm\:h-2\/6{ + height: 33.333333%; + } + + .sm\:h-3\/6{ + height: 50%; + } + + .sm\:h-4\/6{ + height: 66.666667%; + } + + .sm\:h-5\/6{ + height: 83.333333%; + } + + .sm\:h-full{ + height: 100%; + } + + .sm\:h-screen{ + height: 100vh; + } + + .sm\:max-h-0{ + max-height: 0px; + } + + .sm\:max-h-1{ + max-height: 0.25rem; + } + + .sm\:max-h-2{ + max-height: 0.5rem; + } + + .sm\:max-h-3{ + max-height: 0.75rem; + } + + .sm\:max-h-4{ + max-height: 1rem; + } + + .sm\:max-h-5{ + max-height: 1.25rem; + } + + .sm\:max-h-6{ + max-height: 1.5rem; + } + + .sm\:max-h-7{ + max-height: 1.75rem; + } + + .sm\:max-h-8{ + max-height: 2rem; + } + + .sm\:max-h-9{ + max-height: 2.25rem; + } + + .sm\:max-h-10{ + max-height: 2.5rem; + } + + .sm\:max-h-11{ + max-height: 2.75rem; + } + + .sm\:max-h-12{ + max-height: 3rem; + } + + .sm\:max-h-14{ + max-height: 3.5rem; + } + + .sm\:max-h-16{ + max-height: 4rem; + } + + .sm\:max-h-20{ + max-height: 5rem; + } + + .sm\:max-h-24{ + max-height: 6rem; + } + + .sm\:max-h-28{ + max-height: 7rem; + } + + .sm\:max-h-32{ + max-height: 8rem; + } + + .sm\:max-h-36{ + max-height: 9rem; + } + + .sm\:max-h-40{ + max-height: 10rem; + } + + .sm\:max-h-44{ + max-height: 11rem; + } + + .sm\:max-h-48{ + max-height: 12rem; + } + + .sm\:max-h-52{ + max-height: 13rem; + } + + .sm\:max-h-56{ + max-height: 14rem; + } + + .sm\:max-h-60{ + max-height: 15rem; + } + + .sm\:max-h-64{ + max-height: 16rem; + } + + .sm\:max-h-72{ + max-height: 18rem; + } + + .sm\:max-h-80{ + max-height: 20rem; + } + + .sm\:max-h-96{ + max-height: 24rem; + } + + .sm\:max-h-px{ + max-height: 1px; + } + + .sm\:max-h-0\.5{ + max-height: 0.125rem; + } + + .sm\:max-h-1\.5{ + max-height: 0.375rem; + } + + .sm\:max-h-2\.5{ + max-height: 0.625rem; + } + + .sm\:max-h-3\.5{ + max-height: 0.875rem; + } + + .sm\:max-h-full{ + max-height: 100%; + } + + .sm\:max-h-screen{ + max-height: 100vh; + } + + .sm\:min-h-0{ + min-height: 0px; + } + + .sm\:min-h-full{ + min-height: 100%; + } + + .sm\:min-h-screen{ + min-height: 100vh; + } + + .sm\:w-0{ + width: 0px; + } + + .sm\:w-1{ + width: 0.25rem; + } + + .sm\:w-2{ + width: 0.5rem; + } + + .sm\:w-3{ + width: 0.75rem; + } + + .sm\:w-4{ + width: 1rem; + } + + .sm\:w-5{ + width: 1.25rem; + } + + .sm\:w-6{ + width: 1.5rem; + } + + .sm\:w-7{ + width: 1.75rem; + } + + .sm\:w-8{ + width: 2rem; + } + + .sm\:w-9{ + width: 2.25rem; + } + + .sm\:w-10{ + width: 2.5rem; + } + + .sm\:w-11{ + width: 2.75rem; + } + + .sm\:w-12{ + width: 3rem; + } + + .sm\:w-14{ + width: 3.5rem; + } + + .sm\:w-16{ + width: 4rem; + } + + .sm\:w-20{ + width: 5rem; + } + + .sm\:w-24{ + width: 6rem; + } + + .sm\:w-28{ + width: 7rem; + } + + .sm\:w-32{ + width: 8rem; + } + + .sm\:w-36{ + width: 9rem; + } + + .sm\:w-40{ + width: 10rem; + } + + .sm\:w-44{ + width: 11rem; + } + + .sm\:w-48{ + width: 12rem; + } + + .sm\:w-52{ + width: 13rem; + } + + .sm\:w-56{ + width: 14rem; + } + + .sm\:w-60{ + width: 15rem; + } + + .sm\:w-64{ + width: 16rem; + } + + .sm\:w-72{ + width: 18rem; + } + + .sm\:w-80{ + width: 20rem; + } + + .sm\:w-96{ + width: 24rem; + } + + .sm\:w-auto{ + width: auto; + } + + .sm\:w-px{ + width: 1px; + } + + .sm\:w-0\.5{ + width: 0.125rem; + } + + .sm\:w-1\.5{ + width: 0.375rem; + } + + .sm\:w-2\.5{ + width: 0.625rem; + } + + .sm\:w-3\.5{ + width: 0.875rem; + } + + .sm\:w-1\/2{ + width: 50%; + } + + .sm\:w-1\/3{ + width: 33.333333%; + } + + .sm\:w-2\/3{ + width: 66.666667%; + } + + .sm\:w-1\/4{ + width: 25%; + } + + .sm\:w-2\/4{ + width: 50%; + } + + .sm\:w-3\/4{ + width: 75%; + } + + .sm\:w-1\/5{ + width: 20%; + } + + .sm\:w-2\/5{ + width: 40%; + } + + .sm\:w-3\/5{ + width: 60%; + } + + .sm\:w-4\/5{ + width: 80%; + } + + .sm\:w-1\/6{ + width: 16.666667%; + } + + .sm\:w-2\/6{ + width: 33.333333%; + } + + .sm\:w-3\/6{ + width: 50%; + } + + .sm\:w-4\/6{ + width: 66.666667%; + } + + .sm\:w-5\/6{ + width: 83.333333%; + } + + .sm\:w-1\/12{ + width: 8.333333%; + } + + .sm\:w-2\/12{ + width: 16.666667%; + } + + .sm\:w-3\/12{ + width: 25%; + } + + .sm\:w-4\/12{ + width: 33.333333%; + } + + .sm\:w-5\/12{ + width: 41.666667%; + } + + .sm\:w-6\/12{ + width: 50%; + } + + .sm\:w-7\/12{ + width: 58.333333%; + } + + .sm\:w-8\/12{ + width: 66.666667%; + } + + .sm\:w-9\/12{ + width: 75%; + } + + .sm\:w-10\/12{ + width: 83.333333%; + } + + .sm\:w-11\/12{ + width: 91.666667%; + } + + .sm\:w-full{ + width: 100%; + } + + .sm\:w-screen{ + width: 100vw; + } + + .sm\:w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; + } + + .sm\:w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + } + + .sm\:min-w-0{ + min-width: 0px; + } + + .sm\:min-w-full{ + min-width: 100%; + } + + .sm\:min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; + } + + .sm\:min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; + } + + .sm\:max-w-0{ + max-width: 0rem; + } + + .sm\:max-w-none{ + max-width: none; + } + + .sm\:max-w-xs{ + max-width: 20rem; + } + + .sm\:max-w-sm{ + max-width: 24rem; + } + + .sm\:max-w-md{ + max-width: 28rem; + } + + .sm\:max-w-lg{ + max-width: 32rem; + } + + .sm\:max-w-xl{ + max-width: 36rem; + } + + .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-full{ + max-width: 100%; + } + + .sm\:max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .sm\:max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .sm\:max-w-prose{ + max-width: 65ch; + } + + .sm\:max-w-screen-sm{ + max-width: 640px; + } + + .sm\:max-w-screen-md{ + max-width: 768px; + } + + .sm\:max-w-screen-lg{ + max-width: 1024px; + } + + .sm\:max-w-screen-xl{ + max-width: 1280px; + } + + .sm\:max-w-screen-2xl{ + max-width: 1536px; + } + + .sm\:flex-1{ + flex: 1 1 0%; + } + + .sm\:flex-auto{ + flex: 1 1 auto; + } + + .sm\:flex-initial{ + flex: 0 1 auto; + } + + .sm\:flex-none{ + flex: none; + } + + .sm\:flex-shrink-0{ + flex-shrink: 0; + } + + .sm\:flex-shrink{ + flex-shrink: 1; + } + + .sm\:flex-grow-0{ + flex-grow: 0; + } + + .sm\:flex-grow{ + flex-grow: 1; + } + + .sm\:table-auto{ + table-layout: auto; + } + + .sm\:table-fixed{ + table-layout: fixed; + } + + .sm\:border-collapse{ + border-collapse: collapse; + } + + .sm\:border-separate{ + border-collapse: separate; + } + + .sm\:origin-center{ + transform-origin: center; + } + + .sm\:origin-top{ + transform-origin: top; + } + + .sm\:origin-top-right{ + transform-origin: top right; + } + + .sm\:origin-right{ + transform-origin: right; + } + + .sm\:origin-bottom-right{ + transform-origin: bottom right; + } + + .sm\:origin-bottom{ + transform-origin: bottom; + } + + .sm\:origin-bottom-left{ + transform-origin: bottom left; + } + + .sm\:origin-left{ + transform-origin: left; + } + + .sm\:origin-top-left{ + transform-origin: top left; + } + + .sm\:transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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\:transform-gpu{ + --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; + 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)); + } + + .sm\:transform-none{ + transform: none; + } + + .sm\:translate-x-0{ + --tw-translate-x: 0px; + } + + .sm\:translate-x-1{ + --tw-translate-x: 0.25rem; + } + + .sm\:translate-x-2{ + --tw-translate-x: 0.5rem; + } + + .sm\:translate-x-3{ + --tw-translate-x: 0.75rem; + } + + .sm\:translate-x-4{ + --tw-translate-x: 1rem; + } + + .sm\:translate-x-5{ + --tw-translate-x: 1.25rem; + } + + .sm\:translate-x-6{ + --tw-translate-x: 1.5rem; + } + + .sm\:translate-x-7{ + --tw-translate-x: 1.75rem; + } + + .sm\:translate-x-8{ + --tw-translate-x: 2rem; + } + + .sm\:translate-x-9{ + --tw-translate-x: 2.25rem; + } + + .sm\:translate-x-10{ + --tw-translate-x: 2.5rem; + } + + .sm\:translate-x-11{ + --tw-translate-x: 2.75rem; + } + + .sm\:translate-x-12{ + --tw-translate-x: 3rem; + } + + .sm\:translate-x-14{ + --tw-translate-x: 3.5rem; + } + + .sm\:translate-x-16{ + --tw-translate-x: 4rem; + } + + .sm\:translate-x-20{ + --tw-translate-x: 5rem; + } + + .sm\:translate-x-24{ + --tw-translate-x: 6rem; + } + + .sm\:translate-x-28{ + --tw-translate-x: 7rem; + } + + .sm\:translate-x-32{ + --tw-translate-x: 8rem; + } + + .sm\:translate-x-36{ + --tw-translate-x: 9rem; + } + + .sm\:translate-x-40{ + --tw-translate-x: 10rem; + } + + .sm\:translate-x-44{ + --tw-translate-x: 11rem; + } + + .sm\:translate-x-48{ + --tw-translate-x: 12rem; + } + + .sm\:translate-x-52{ + --tw-translate-x: 13rem; + } + + .sm\:translate-x-56{ + --tw-translate-x: 14rem; + } + + .sm\:translate-x-60{ + --tw-translate-x: 15rem; + } + + .sm\:translate-x-64{ + --tw-translate-x: 16rem; + } + + .sm\:translate-x-72{ + --tw-translate-x: 18rem; + } + + .sm\:translate-x-80{ + --tw-translate-x: 20rem; + } + + .sm\:translate-x-96{ + --tw-translate-x: 24rem; + } + + .sm\:translate-x-px{ + --tw-translate-x: 1px; + } + + .sm\:translate-x-0\.5{ + --tw-translate-x: 0.125rem; + } + + .sm\:translate-x-1\.5{ + --tw-translate-x: 0.375rem; + } + + .sm\:translate-x-2\.5{ + --tw-translate-x: 0.625rem; + } + + .sm\:translate-x-3\.5{ + --tw-translate-x: 0.875rem; + } + + .sm\:-translate-x-0{ + --tw-translate-x: 0px; + } + + .sm\:-translate-x-1{ + --tw-translate-x: -0.25rem; + } + + .sm\:-translate-x-2{ + --tw-translate-x: -0.5rem; + } + + .sm\:-translate-x-3{ + --tw-translate-x: -0.75rem; + } + + .sm\:-translate-x-4{ + --tw-translate-x: -1rem; + } + + .sm\:-translate-x-5{ + --tw-translate-x: -1.25rem; + } + + .sm\:-translate-x-6{ + --tw-translate-x: -1.5rem; + } + + .sm\:-translate-x-7{ + --tw-translate-x: -1.75rem; + } + + .sm\:-translate-x-8{ + --tw-translate-x: -2rem; + } + + .sm\:-translate-x-9{ + --tw-translate-x: -2.25rem; + } + + .sm\:-translate-x-10{ + --tw-translate-x: -2.5rem; + } + + .sm\:-translate-x-11{ + --tw-translate-x: -2.75rem; + } + + .sm\:-translate-x-12{ + --tw-translate-x: -3rem; + } + + .sm\:-translate-x-14{ + --tw-translate-x: -3.5rem; + } + + .sm\:-translate-x-16{ + --tw-translate-x: -4rem; + } + + .sm\:-translate-x-20{ + --tw-translate-x: -5rem; + } + + .sm\:-translate-x-24{ + --tw-translate-x: -6rem; + } + + .sm\:-translate-x-28{ + --tw-translate-x: -7rem; + } + + .sm\:-translate-x-32{ + --tw-translate-x: -8rem; + } + + .sm\:-translate-x-36{ + --tw-translate-x: -9rem; + } + + .sm\:-translate-x-40{ + --tw-translate-x: -10rem; + } + + .sm\:-translate-x-44{ + --tw-translate-x: -11rem; + } + + .sm\:-translate-x-48{ + --tw-translate-x: -12rem; + } + + .sm\:-translate-x-52{ + --tw-translate-x: -13rem; + } + + .sm\:-translate-x-56{ + --tw-translate-x: -14rem; + } + + .sm\:-translate-x-60{ + --tw-translate-x: -15rem; + } + + .sm\:-translate-x-64{ + --tw-translate-x: -16rem; + } + + .sm\:-translate-x-72{ + --tw-translate-x: -18rem; + } + + .sm\:-translate-x-80{ + --tw-translate-x: -20rem; + } + + .sm\:-translate-x-96{ + --tw-translate-x: -24rem; + } + + .sm\:-translate-x-px{ + --tw-translate-x: -1px; + } + + .sm\:-translate-x-0\.5{ + --tw-translate-x: -0.125rem; + } + + .sm\:-translate-x-1\.5{ + --tw-translate-x: -0.375rem; + } + + .sm\:-translate-x-2\.5{ + --tw-translate-x: -0.625rem; + } + + .sm\:-translate-x-3\.5{ + --tw-translate-x: -0.875rem; + } + + .sm\:translate-x-1\/2{ + --tw-translate-x: 50%; + } + + .sm\:translate-x-1\/3{ + --tw-translate-x: 33.333333%; + } + + .sm\:translate-x-2\/3{ + --tw-translate-x: 66.666667%; + } + + .sm\:translate-x-1\/4{ + --tw-translate-x: 25%; + } + + .sm\:translate-x-2\/4{ + --tw-translate-x: 50%; + } + + .sm\:translate-x-3\/4{ + --tw-translate-x: 75%; + } + + .sm\:translate-x-full{ + --tw-translate-x: 100%; + } + + .sm\:-translate-x-1\/2{ + --tw-translate-x: -50%; + } + + .sm\:-translate-x-1\/3{ + --tw-translate-x: -33.333333%; + } + + .sm\:-translate-x-2\/3{ + --tw-translate-x: -66.666667%; + } + + .sm\:-translate-x-1\/4{ + --tw-translate-x: -25%; + } + + .sm\:-translate-x-2\/4{ + --tw-translate-x: -50%; + } + + .sm\:-translate-x-3\/4{ + --tw-translate-x: -75%; + } + + .sm\:-translate-x-full{ + --tw-translate-x: -100%; + } + + .sm\:translate-y-0{ + --tw-translate-y: 0px; + } + + .sm\:translate-y-1{ + --tw-translate-y: 0.25rem; + } + + .sm\:translate-y-2{ + --tw-translate-y: 0.5rem; + } + + .sm\:translate-y-3{ + --tw-translate-y: 0.75rem; + } + + .sm\:translate-y-4{ + --tw-translate-y: 1rem; + } + + .sm\:translate-y-5{ + --tw-translate-y: 1.25rem; + } + + .sm\:translate-y-6{ + --tw-translate-y: 1.5rem; + } + + .sm\:translate-y-7{ + --tw-translate-y: 1.75rem; + } + + .sm\:translate-y-8{ + --tw-translate-y: 2rem; + } + + .sm\:translate-y-9{ + --tw-translate-y: 2.25rem; + } + + .sm\:translate-y-10{ + --tw-translate-y: 2.5rem; + } + + .sm\:translate-y-11{ + --tw-translate-y: 2.75rem; + } + + .sm\:translate-y-12{ + --tw-translate-y: 3rem; + } + + .sm\:translate-y-14{ + --tw-translate-y: 3.5rem; + } + + .sm\:translate-y-16{ + --tw-translate-y: 4rem; + } + + .sm\:translate-y-20{ + --tw-translate-y: 5rem; + } + + .sm\:translate-y-24{ + --tw-translate-y: 6rem; + } + + .sm\:translate-y-28{ + --tw-translate-y: 7rem; + } + + .sm\:translate-y-32{ + --tw-translate-y: 8rem; + } + + .sm\:translate-y-36{ + --tw-translate-y: 9rem; + } + + .sm\:translate-y-40{ + --tw-translate-y: 10rem; + } + + .sm\:translate-y-44{ + --tw-translate-y: 11rem; + } + + .sm\:translate-y-48{ + --tw-translate-y: 12rem; + } + + .sm\:translate-y-52{ + --tw-translate-y: 13rem; + } + + .sm\:translate-y-56{ + --tw-translate-y: 14rem; + } + + .sm\:translate-y-60{ + --tw-translate-y: 15rem; + } + + .sm\:translate-y-64{ + --tw-translate-y: 16rem; + } + + .sm\:translate-y-72{ + --tw-translate-y: 18rem; + } + + .sm\:translate-y-80{ + --tw-translate-y: 20rem; + } + + .sm\:translate-y-96{ + --tw-translate-y: 24rem; + } + + .sm\:translate-y-px{ + --tw-translate-y: 1px; + } + + .sm\:translate-y-0\.5{ + --tw-translate-y: 0.125rem; + } + + .sm\:translate-y-1\.5{ + --tw-translate-y: 0.375rem; + } + + .sm\:translate-y-2\.5{ + --tw-translate-y: 0.625rem; + } + + .sm\:translate-y-3\.5{ + --tw-translate-y: 0.875rem; + } + + .sm\:-translate-y-0{ + --tw-translate-y: 0px; + } + + .sm\:-translate-y-1{ + --tw-translate-y: -0.25rem; + } + + .sm\:-translate-y-2{ + --tw-translate-y: -0.5rem; + } + + .sm\:-translate-y-3{ + --tw-translate-y: -0.75rem; + } + + .sm\:-translate-y-4{ + --tw-translate-y: -1rem; + } + + .sm\:-translate-y-5{ + --tw-translate-y: -1.25rem; + } + + .sm\:-translate-y-6{ + --tw-translate-y: -1.5rem; + } + + .sm\:-translate-y-7{ + --tw-translate-y: -1.75rem; + } + + .sm\:-translate-y-8{ + --tw-translate-y: -2rem; + } + + .sm\:-translate-y-9{ + --tw-translate-y: -2.25rem; + } + + .sm\:-translate-y-10{ + --tw-translate-y: -2.5rem; + } + + .sm\:-translate-y-11{ + --tw-translate-y: -2.75rem; + } + + .sm\:-translate-y-12{ + --tw-translate-y: -3rem; + } + + .sm\:-translate-y-14{ + --tw-translate-y: -3.5rem; + } + + .sm\:-translate-y-16{ + --tw-translate-y: -4rem; + } + + .sm\:-translate-y-20{ + --tw-translate-y: -5rem; + } + + .sm\:-translate-y-24{ + --tw-translate-y: -6rem; + } + + .sm\:-translate-y-28{ + --tw-translate-y: -7rem; + } + + .sm\:-translate-y-32{ + --tw-translate-y: -8rem; + } + + .sm\:-translate-y-36{ + --tw-translate-y: -9rem; + } + + .sm\:-translate-y-40{ + --tw-translate-y: -10rem; + } + + .sm\:-translate-y-44{ + --tw-translate-y: -11rem; + } + + .sm\:-translate-y-48{ + --tw-translate-y: -12rem; + } + + .sm\:-translate-y-52{ + --tw-translate-y: -13rem; + } + + .sm\:-translate-y-56{ + --tw-translate-y: -14rem; + } + + .sm\:-translate-y-60{ + --tw-translate-y: -15rem; + } + + .sm\:-translate-y-64{ + --tw-translate-y: -16rem; + } + + .sm\:-translate-y-72{ + --tw-translate-y: -18rem; + } + + .sm\:-translate-y-80{ + --tw-translate-y: -20rem; + } + + .sm\:-translate-y-96{ + --tw-translate-y: -24rem; + } + + .sm\:-translate-y-px{ + --tw-translate-y: -1px; + } + + .sm\:-translate-y-0\.5{ + --tw-translate-y: -0.125rem; + } + + .sm\:-translate-y-1\.5{ + --tw-translate-y: -0.375rem; + } + + .sm\:-translate-y-2\.5{ + --tw-translate-y: -0.625rem; + } + + .sm\:-translate-y-3\.5{ + --tw-translate-y: -0.875rem; + } + + .sm\:translate-y-1\/2{ + --tw-translate-y: 50%; + } + + .sm\:translate-y-1\/3{ + --tw-translate-y: 33.333333%; + } + + .sm\:translate-y-2\/3{ + --tw-translate-y: 66.666667%; + } + + .sm\:translate-y-1\/4{ + --tw-translate-y: 25%; + } + + .sm\:translate-y-2\/4{ + --tw-translate-y: 50%; + } + + .sm\:translate-y-3\/4{ + --tw-translate-y: 75%; + } + + .sm\:translate-y-full{ + --tw-translate-y: 100%; + } + + .sm\:-translate-y-1\/2{ + --tw-translate-y: -50%; + } + + .sm\:-translate-y-1\/3{ + --tw-translate-y: -33.333333%; + } + + .sm\:-translate-y-2\/3{ + --tw-translate-y: -66.666667%; + } + + .sm\:-translate-y-1\/4{ + --tw-translate-y: -25%; + } + + .sm\:-translate-y-2\/4{ + --tw-translate-y: -50%; + } + + .sm\:-translate-y-3\/4{ + --tw-translate-y: -75%; + } + + .sm\:-translate-y-full{ + --tw-translate-y: -100%; + } + + .sm\:hover\:translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .sm\:hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; + } + + .sm\:hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; + } + + .sm\:hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; + } + + .sm\:hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; + } + + .sm\:hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; + } + + .sm\:hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; + } + + .sm\:hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; + } + + .sm\:hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; + } + + .sm\:hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; + } + + .sm\:hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; + } + + .sm\:hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; + } + + .sm\:hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; + } + + .sm\:hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; + } + + .sm\:hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; + } + + .sm\:hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; + } + + .sm\:hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; + } + + .sm\:hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; + } + + .sm\:hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; + } + + .sm\:hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; + } + + .sm\:hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; + } + + .sm\:hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; + } + + .sm\:hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; + } + + .sm\:hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; + } + + .sm\:hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; + } + + .sm\:hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; + } + + .sm\:hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; + } + + .sm\:hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; + } + + .sm\:hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; + } + + .sm\:hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; + } + + .sm\:hover\:translate-x-px:hover{ + --tw-translate-x: 1px; + } + + .sm\:hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; + } + + .sm\:hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; + } + + .sm\:hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; + } + + .sm\:hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; + } + + .sm\:hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .sm\:hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; + } + + .sm\:hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; + } + + .sm\:hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; + } + + .sm\:hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; + } + + .sm\:hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; + } + + .sm\:hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; + } + + .sm\:hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; + } + + .sm\:hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; + } + + .sm\:hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; + } + + .sm\:hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; + } + + .sm\:hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; + } + + .sm\:hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; + } + + .sm\:hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; + } + + .sm\:hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; + } + + .sm\:hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; + } + + .sm\:hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; + } + + .sm\:hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; + } + + .sm\:hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; + } + + .sm\:hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; + } + + .sm\:hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; + } + + .sm\:hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; + } + + .sm\:hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; + } + + .sm\:hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; + } + + .sm\:hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; + } + + .sm\:hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; + } + + .sm\:hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; + } + + .sm\:hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; + } + + .sm\:hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; + } + + .sm\:hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; + } + + .sm\:hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; + } + + .sm\:hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; + } + + .sm\:hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; + } + + .sm\:hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; + } + + .sm\:hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; + } + + .sm\:hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; + } + + .sm\:hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; + } + + .sm\:hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; + } + + .sm\:hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; + } + + .sm\:hover\:translate-x-full:hover{ + --tw-translate-x: 100%; + } + + .sm\:hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; + } + + .sm\:hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; + } + + .sm\:hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; + } + + .sm\:hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; + } + + .sm\:hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; + } + + .sm\:hover\:translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .sm\:hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; + } + + .sm\:hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; + } + + .sm\:hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; + } + + .sm\:hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; + } + + .sm\:hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; + } + + .sm\:hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; + } + + .sm\:hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; + } + + .sm\:hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; + } + + .sm\:hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; + } + + .sm\:hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; + } + + .sm\:hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; + } + + .sm\:hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; + } + + .sm\:hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; + } + + .sm\:hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; + } + + .sm\:hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; + } + + .sm\:hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; + } + + .sm\:hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; + } + + .sm\:hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; + } + + .sm\:hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; + } + + .sm\:hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; + } + + .sm\:hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; + } + + .sm\:hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; + } + + .sm\:hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; + } + + .sm\:hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; + } + + .sm\:hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; + } + + .sm\:hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; + } + + .sm\:hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; + } + + .sm\:hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; + } + + .sm\:hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; + } + + .sm\:hover\:translate-y-px:hover{ + --tw-translate-y: 1px; + } + + .sm\:hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; + } + + .sm\:hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; + } + + .sm\:hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; + } + + .sm\:hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; + } + + .sm\:hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .sm\:hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; + } + + .sm\:hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; + } + + .sm\:hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; + } + + .sm\:hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; + } + + .sm\:hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; + } + + .sm\:hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; + } + + .sm\:hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; + } + + .sm\:hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; + } + + .sm\:hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; + } + + .sm\:hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; + } + + .sm\:hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; + } + + .sm\:hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; + } + + .sm\:hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; + } + + .sm\:hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; + } + + .sm\:hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; + } + + .sm\:hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; + } + + .sm\:hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; + } + + .sm\:hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; + } + + .sm\:hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; + } + + .sm\:hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; + } + + .sm\:hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; + } + + .sm\:hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; + } + + .sm\:hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; + } + + .sm\:hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; + } + + .sm\:hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; + } + + .sm\:hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; + } + + .sm\:hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; + } + + .sm\:hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; + } + + .sm\:hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; + } + + .sm\:hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; + } + + .sm\:hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; + } + + .sm\:hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; + } + + .sm\:hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; + } + + .sm\:hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; + } + + .sm\:hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; + } + + .sm\:hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; + } + + .sm\:hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; + } + + .sm\:hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; + } + + .sm\:hover\:translate-y-full:hover{ + --tw-translate-y: 100%; + } + + .sm\:hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; + } + + .sm\:hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; + } + + .sm\:hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; + } + + .sm\:hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; + } + + .sm\:hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; + } + + .sm\:focus\:translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .sm\:focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; + } + + .sm\:focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; + } + + .sm\:focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; + } + + .sm\:focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; + } + + .sm\:focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; + } + + .sm\:focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; + } + + .sm\:focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; + } + + .sm\:focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; + } + + .sm\:focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; + } + + .sm\:focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; + } + + .sm\:focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; + } + + .sm\:focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; + } + + .sm\:focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; + } + + .sm\:focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; + } + + .sm\:focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; + } + + .sm\:focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; + } + + .sm\:focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; + } + + .sm\:focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; + } + + .sm\:focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; + } + + .sm\:focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; + } + + .sm\:focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; + } + + .sm\:focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; + } + + .sm\:focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; + } + + .sm\:focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; + } + + .sm\:focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; + } + + .sm\:focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; + } + + .sm\:focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; + } + + .sm\:focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; + } + + .sm\:focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; + } + + .sm\:focus\:translate-x-px:focus{ + --tw-translate-x: 1px; + } + + .sm\:focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; + } + + .sm\:focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; + } + + .sm\:focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; + } + + .sm\:focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; + } + + .sm\:focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .sm\:focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; + } + + .sm\:focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; + } + + .sm\:focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; + } + + .sm\:focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; + } + + .sm\:focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; + } + + .sm\:focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; + } + + .sm\:focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; + } + + .sm\:focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; + } + + .sm\:focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; + } + + .sm\:focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; + } + + .sm\:focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; + } + + .sm\:focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; + } + + .sm\:focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; + } + + .sm\:focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; + } + + .sm\:focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; + } + + .sm\:focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; + } + + .sm\:focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; + } + + .sm\:focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; + } + + .sm\:focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; + } + + .sm\:focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; + } + + .sm\:focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; + } + + .sm\:focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; + } + + .sm\:focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; + } + + .sm\:focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; + } + + .sm\:focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; + } + + .sm\:focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; + } + + .sm\:focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; + } + + .sm\:focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; + } + + .sm\:focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; + } + + .sm\:focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; + } + + .sm\:focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; + } + + .sm\:focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; + } + + .sm\:focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; + } + + .sm\:focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; + } + + .sm\:focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; + } + + .sm\:focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; + } + + .sm\:focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; + } + + .sm\:focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; + } + + .sm\:focus\:translate-x-full:focus{ + --tw-translate-x: 100%; + } + + .sm\:focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; + } + + .sm\:focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; + } + + .sm\:focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; + } + + .sm\:focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; + } + + .sm\:focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; + } + + .sm\:focus\:translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .sm\:focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; + } + + .sm\:focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; + } + + .sm\:focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; + } + + .sm\:focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; + } + + .sm\:focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; + } + + .sm\:focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; + } + + .sm\:focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; + } + + .sm\:focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; + } + + .sm\:focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; + } + + .sm\:focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; + } + + .sm\:focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; + } + + .sm\:focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; + } + + .sm\:focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; + } + + .sm\:focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; + } + + .sm\:focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; + } + + .sm\:focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; + } + + .sm\:focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; + } + + .sm\:focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; + } + + .sm\:focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; + } + + .sm\:focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; + } + + .sm\:focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; + } + + .sm\:focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; + } + + .sm\:focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; + } + + .sm\:focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; + } + + .sm\:focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; + } + + .sm\:focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; + } + + .sm\:focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; + } + + .sm\:focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; + } + + .sm\:focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; + } + + .sm\:focus\:translate-y-px:focus{ + --tw-translate-y: 1px; + } + + .sm\:focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; + } + + .sm\:focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; + } + + .sm\:focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; + } + + .sm\:focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; + } + + .sm\:focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .sm\:focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; + } + + .sm\:focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; + } + + .sm\:focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; + } + + .sm\:focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; + } + + .sm\:focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; + } + + .sm\:focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; + } + + .sm\:focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; + } + + .sm\:focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; + } + + .sm\:focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; + } + + .sm\:focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; + } + + .sm\:focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; + } + + .sm\:focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; + } + + .sm\:focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; + } + + .sm\:focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; + } + + .sm\:focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; + } + + .sm\:focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; + } + + .sm\:focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; + } + + .sm\:focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; + } + + .sm\:focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; + } + + .sm\:focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; + } + + .sm\:focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; + } + + .sm\:focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; + } + + .sm\:focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; + } + + .sm\:focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; + } + + .sm\:focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; + } + + .sm\:focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; + } + + .sm\:focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; + } + + .sm\:focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; + } + + .sm\:focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; + } + + .sm\:focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; + } + + .sm\:focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; + } + + .sm\:focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; + } + + .sm\:focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; + } + + .sm\:focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; + } + + .sm\:focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; + } + + .sm\:focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; + } + + .sm\:focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; + } + + .sm\:focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; + } + + .sm\:focus\:translate-y-full:focus{ + --tw-translate-y: 100%; + } + + .sm\:focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; + } + + .sm\:focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; + } + + .sm\:focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; + } + + .sm\:focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; + } + + .sm\:focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; + } + + .sm\:rotate-0{ + --tw-rotate: 0deg; + } + + .sm\:rotate-1{ + --tw-rotate: 1deg; + } + + .sm\:rotate-2{ + --tw-rotate: 2deg; + } + + .sm\:rotate-3{ + --tw-rotate: 3deg; + } + + .sm\:rotate-6{ + --tw-rotate: 6deg; + } + + .sm\:rotate-12{ + --tw-rotate: 12deg; + } + + .sm\:rotate-45{ + --tw-rotate: 45deg; + } + + .sm\:rotate-90{ + --tw-rotate: 90deg; + } + + .sm\:rotate-180{ + --tw-rotate: 180deg; + } + + .sm\:-rotate-180{ + --tw-rotate: -180deg; + } + + .sm\:-rotate-90{ + --tw-rotate: -90deg; + } + + .sm\:-rotate-45{ + --tw-rotate: -45deg; + } + + .sm\:-rotate-12{ + --tw-rotate: -12deg; + } + + .sm\:-rotate-6{ + --tw-rotate: -6deg; + } + + .sm\:-rotate-3{ + --tw-rotate: -3deg; + } + + .sm\:-rotate-2{ + --tw-rotate: -2deg; + } + + .sm\:-rotate-1{ + --tw-rotate: -1deg; + } + + .sm\:hover\:rotate-0:hover{ + --tw-rotate: 0deg; + } + + .sm\:hover\:rotate-1:hover{ + --tw-rotate: 1deg; + } + + .sm\:hover\:rotate-2:hover{ + --tw-rotate: 2deg; + } + + .sm\:hover\:rotate-3:hover{ + --tw-rotate: 3deg; + } + + .sm\:hover\:rotate-6:hover{ + --tw-rotate: 6deg; + } + + .sm\:hover\:rotate-12:hover{ + --tw-rotate: 12deg; + } + + .sm\:hover\:rotate-45:hover{ + --tw-rotate: 45deg; + } + + .sm\:hover\:rotate-90:hover{ + --tw-rotate: 90deg; + } + + .sm\:hover\:rotate-180:hover{ + --tw-rotate: 180deg; + } + + .sm\:hover\:-rotate-180:hover{ + --tw-rotate: -180deg; + } + + .sm\:hover\:-rotate-90:hover{ + --tw-rotate: -90deg; + } + + .sm\:hover\:-rotate-45:hover{ + --tw-rotate: -45deg; + } + + .sm\:hover\:-rotate-12:hover{ + --tw-rotate: -12deg; + } + + .sm\:hover\:-rotate-6:hover{ + --tw-rotate: -6deg; + } + + .sm\:hover\:-rotate-3:hover{ + --tw-rotate: -3deg; + } + + .sm\:hover\:-rotate-2:hover{ + --tw-rotate: -2deg; + } + + .sm\:hover\:-rotate-1:hover{ + --tw-rotate: -1deg; + } + + .sm\:focus\:rotate-0:focus{ + --tw-rotate: 0deg; + } + + .sm\:focus\:rotate-1:focus{ + --tw-rotate: 1deg; + } + + .sm\:focus\:rotate-2:focus{ + --tw-rotate: 2deg; + } + + .sm\:focus\:rotate-3:focus{ + --tw-rotate: 3deg; + } + + .sm\:focus\:rotate-6:focus{ + --tw-rotate: 6deg; + } + + .sm\:focus\:rotate-12:focus{ + --tw-rotate: 12deg; + } + + .sm\:focus\:rotate-45:focus{ + --tw-rotate: 45deg; + } + + .sm\:focus\:rotate-90:focus{ + --tw-rotate: 90deg; + } + + .sm\:focus\:rotate-180:focus{ + --tw-rotate: 180deg; + } + + .sm\:focus\:-rotate-180:focus{ + --tw-rotate: -180deg; + } + + .sm\:focus\:-rotate-90:focus{ + --tw-rotate: -90deg; + } + + .sm\:focus\:-rotate-45:focus{ + --tw-rotate: -45deg; + } + + .sm\:focus\:-rotate-12:focus{ + --tw-rotate: -12deg; + } + + .sm\:focus\:-rotate-6:focus{ + --tw-rotate: -6deg; + } + + .sm\:focus\:-rotate-3:focus{ + --tw-rotate: -3deg; + } + + .sm\:focus\:-rotate-2:focus{ + --tw-rotate: -2deg; + } + + .sm\:focus\:-rotate-1:focus{ + --tw-rotate: -1deg; + } + + .sm\:skew-x-0{ + --tw-skew-x: 0deg; + } + + .sm\:skew-x-1{ + --tw-skew-x: 1deg; + } + + .sm\:skew-x-2{ + --tw-skew-x: 2deg; + } + + .sm\:skew-x-3{ + --tw-skew-x: 3deg; + } + + .sm\:skew-x-6{ + --tw-skew-x: 6deg; + } + + .sm\:skew-x-12{ + --tw-skew-x: 12deg; + } + + .sm\:-skew-x-12{ + --tw-skew-x: -12deg; + } + + .sm\:-skew-x-6{ + --tw-skew-x: -6deg; + } + + .sm\:-skew-x-3{ + --tw-skew-x: -3deg; + } + + .sm\:-skew-x-2{ + --tw-skew-x: -2deg; + } + + .sm\:-skew-x-1{ + --tw-skew-x: -1deg; + } + + .sm\:skew-y-0{ + --tw-skew-y: 0deg; + } + + .sm\:skew-y-1{ + --tw-skew-y: 1deg; + } + + .sm\:skew-y-2{ + --tw-skew-y: 2deg; + } + + .sm\:skew-y-3{ + --tw-skew-y: 3deg; + } + + .sm\:skew-y-6{ + --tw-skew-y: 6deg; + } + + .sm\:skew-y-12{ + --tw-skew-y: 12deg; + } + + .sm\:-skew-y-12{ + --tw-skew-y: -12deg; + } + + .sm\:-skew-y-6{ + --tw-skew-y: -6deg; + } + + .sm\:-skew-y-3{ + --tw-skew-y: -3deg; + } + + .sm\:-skew-y-2{ + --tw-skew-y: -2deg; + } + + .sm\:-skew-y-1{ + --tw-skew-y: -1deg; + } + + .sm\:hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; + } + + .sm\:hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; + } + + .sm\:hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; + } + + .sm\:hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; + } + + .sm\:hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; + } + + .sm\:hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; + } + + .sm\:hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; + } + + .sm\:hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; + } + + .sm\:hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; + } + + .sm\:hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; + } + + .sm\:hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; + } + + .sm\:hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; + } + + .sm\:hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; + } + + .sm\:hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; + } + + .sm\:hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; + } + + .sm\:hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; + } + + .sm\:hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; + } + + .sm\:hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; + } + + .sm\:hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; + } + + .sm\:hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; + } + + .sm\:hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; + } + + .sm\:hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; + } + + .sm\:focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; + } + + .sm\:focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; + } + + .sm\:focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; + } + + .sm\:focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; + } + + .sm\:focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; + } + + .sm\:focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; + } + + .sm\:focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; + } + + .sm\:focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; + } + + .sm\:focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; + } + + .sm\:focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; + } + + .sm\:focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; + } + + .sm\:focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; + } + + .sm\:focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; + } + + .sm\:focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; + } + + .sm\:focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; + } + + .sm\:focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; + } + + .sm\:focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; + } + + .sm\:focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; + } + + .sm\:focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; + } + + .sm\:focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; + } + + .sm\:focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; + } + + .sm\:focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; + } + + .sm\:scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:scale-x-0{ + --tw-scale-x: 0; + } + + .sm\:scale-x-50{ + --tw-scale-x: .5; + } + + .sm\:scale-x-75{ + --tw-scale-x: .75; + } + + .sm\:scale-x-90{ + --tw-scale-x: .9; + } + + .sm\:scale-x-95{ + --tw-scale-x: .95; + } + + .sm\:scale-x-100{ + --tw-scale-x: 1; + } + + .sm\:scale-x-105{ + --tw-scale-x: 1.05; + } + + .sm\:scale-x-110{ + --tw-scale-x: 1.1; + } + + .sm\:scale-x-125{ + --tw-scale-x: 1.25; + } + + .sm\:scale-x-150{ + --tw-scale-x: 1.5; + } + + .sm\:scale-y-0{ + --tw-scale-y: 0; + } + + .sm\:scale-y-50{ + --tw-scale-y: .5; + } + + .sm\:scale-y-75{ + --tw-scale-y: .75; + } + + .sm\:scale-y-90{ + --tw-scale-y: .9; + } + + .sm\:scale-y-95{ + --tw-scale-y: .95; + } + + .sm\:scale-y-100{ + --tw-scale-y: 1; + } + + .sm\:scale-y-105{ + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110{ + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125{ + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150{ + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-x-0:hover{ + --tw-scale-x: 0; + } + + .sm\:hover\:scale-x-50:hover{ + --tw-scale-x: .5; + } + + .sm\:hover\:scale-x-75:hover{ + --tw-scale-x: .75; + } + + .sm\:hover\:scale-x-90:hover{ + --tw-scale-x: .9; + } + + .sm\:hover\:scale-x-95:hover{ + --tw-scale-x: .95; + } + + .sm\:hover\:scale-x-100:hover{ + --tw-scale-x: 1; + } + + .sm\:hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; + } + + .sm\:hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; + } + + .sm\:hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; + } + + .sm\:hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; + } + + .sm\:hover\:scale-y-0:hover{ + --tw-scale-y: 0; + } + + .sm\:hover\:scale-y-50:hover{ + --tw-scale-y: .5; + } + + .sm\:hover\:scale-y-75:hover{ + --tw-scale-y: .75; + } + + .sm\:hover\:scale-y-90:hover{ + --tw-scale-y: .9; + } + + .sm\:hover\:scale-y-95:hover{ + --tw-scale-y: .95; + } + + .sm\:hover\:scale-y-100:hover{ + --tw-scale-y: 1; + } + + .sm\:hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-x-0:focus{ + --tw-scale-x: 0; + } + + .sm\:focus\:scale-x-50:focus{ + --tw-scale-x: .5; + } + + .sm\:focus\:scale-x-75:focus{ + --tw-scale-x: .75; + } + + .sm\:focus\:scale-x-90:focus{ + --tw-scale-x: .9; + } + + .sm\:focus\:scale-x-95:focus{ + --tw-scale-x: .95; + } + + .sm\:focus\:scale-x-100:focus{ + --tw-scale-x: 1; + } + + .sm\:focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; + } + + .sm\:focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; + } + + .sm\:focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; + } + + .sm\:focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; + } + + .sm\:focus\:scale-y-0:focus{ + --tw-scale-y: 0; + } + + .sm\:focus\:scale-y-50:focus{ + --tw-scale-y: .5; + } + + .sm\:focus\:scale-y-75:focus{ + --tw-scale-y: .75; + } + + .sm\:focus\:scale-y-90:focus{ + --tw-scale-y: .9; + } + + .sm\:focus\:scale-y-95:focus{ + --tw-scale-y: .95; + } + + .sm\:focus\:scale-y-100:focus{ + --tw-scale-y: 1; + } + + .sm\:focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; + } + + .sm\:animate-none{ + -webkit-animation: none; + animation: none; + } + + .sm\:animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .sm\:animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .sm\:animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .sm\:animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } + + .sm\:cursor-auto{ + cursor: auto; + } + + .sm\:cursor-default{ + cursor: default; + } + + .sm\:cursor-pointer{ + cursor: pointer; + } + + .sm\:cursor-wait{ + cursor: wait; + } + + .sm\:cursor-text{ + cursor: text; + } + + .sm\:cursor-move{ + cursor: move; + } + + .sm\:cursor-help{ + cursor: help; + } + + .sm\:cursor-not-allowed{ + cursor: not-allowed; + } + + .sm\:select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .sm\:select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .sm\:select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; + } + + .sm\:select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .sm\:resize-none{ + resize: none; + } + + .sm\:resize-y{ + resize: vertical; + } + + .sm\:resize-x{ + resize: horizontal; + } + + .sm\:resize{ + resize: both; + } + + .sm\:list-inside{ + list-style-position: inside; + } + + .sm\:list-outside{ + list-style-position: outside; + } + + .sm\:list-none{ + list-style-type: none; + } + + .sm\:list-disc{ + list-style-type: disc; + } + + .sm\:list-decimal{ + list-style-type: decimal; + } + + .sm\:appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .sm\:auto-cols-auto{ + grid-auto-columns: auto; + } + + .sm\:auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .sm\:auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .sm\:auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); + } + + .sm\:grid-flow-row{ + grid-auto-flow: row; + } + + .sm\:grid-flow-col{ + grid-auto-flow: column; + } + + .sm\:grid-flow-row-dense{ + grid-auto-flow: row dense; + } + + .sm\:grid-flow-col-dense{ + grid-auto-flow: column dense; + } + + .sm\:auto-rows-auto{ + grid-auto-rows: auto; + } + + .sm\:auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .sm\:auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .sm\:auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); + } + + .sm\:grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .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-5{ + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-cols-6{ + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-cols-7{ + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .sm\:grid-cols-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .sm\:grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .sm\:grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .sm\:grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .sm\:grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .sm\:grid-cols-none{ + grid-template-columns: none; + } + + .sm\:grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .sm\:grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-rows-none{ + grid-template-rows: none; + } + + .sm\:flex-row{ + flex-direction: row; + } + + .sm\:flex-row-reverse{ + flex-direction: row-reverse; + } + + .sm\:flex-col{ + flex-direction: column; + } + + .sm\:flex-col-reverse{ + flex-direction: column-reverse; + } + + .sm\:flex-wrap{ + flex-wrap: wrap; + } + + .sm\:flex-wrap-reverse{ + flex-wrap: wrap-reverse; + } + + .sm\:flex-nowrap{ + flex-wrap: nowrap; + } + + .sm\:place-content-center{ + place-content: center; + } + + .sm\:place-content-start{ + place-content: start; + } + + .sm\:place-content-end{ + place-content: end; + } + + .sm\:place-content-between{ + place-content: space-between; + } + + .sm\:place-content-around{ + place-content: space-around; + } + + .sm\:place-content-evenly{ + place-content: space-evenly; + } + + .sm\:place-content-stretch{ + place-content: stretch; + } + + .sm\:place-items-start{ + place-items: start; + } + + .sm\:place-items-end{ + place-items: end; + } + + .sm\:place-items-center{ + place-items: center; + } + + .sm\:place-items-stretch{ + place-items: stretch; + } + + .sm\:content-center{ + align-content: center; + } + + .sm\:content-start{ + align-content: flex-start; + } + + .sm\:content-end{ + align-content: flex-end; + } + + .sm\:content-between{ + align-content: space-between; + } + + .sm\:content-around{ + align-content: space-around; + } + + .sm\:content-evenly{ + align-content: space-evenly; + } + + .sm\:items-start{ + align-items: flex-start; + } + + .sm\:items-end{ + align-items: flex-end; + } + + .sm\:items-center{ + align-items: center; + } + + .sm\:items-baseline{ + align-items: baseline; + } + + .sm\:items-stretch{ + align-items: stretch; + } + + .sm\:justify-start{ + justify-content: flex-start; + } + + .sm\:justify-end{ + justify-content: flex-end; + } + + .sm\:justify-center{ + justify-content: center; + } + + .sm\:justify-between{ + justify-content: space-between; + } + + .sm\:justify-around{ + justify-content: space-around; + } + + .sm\:justify-evenly{ + justify-content: space-evenly; + } + + .sm\:justify-items-start{ + justify-items: start; + } + + .sm\:justify-items-end{ + justify-items: end; + } + + .sm\:justify-items-center{ + justify-items: center; + } + + .sm\:justify-items-stretch{ + justify-items: stretch; + } + + .sm\:gap-0{ + gap: 0px; + } + + .sm\:gap-1{ + gap: 0.25rem; + } + + .sm\:gap-2{ + gap: 0.5rem; + } + + .sm\:gap-3{ + gap: 0.75rem; + } + + .sm\:gap-4{ + gap: 1rem; + } + + .sm\:gap-5{ + gap: 1.25rem; + } + + .sm\:gap-6{ + gap: 1.5rem; + } + + .sm\:gap-7{ + gap: 1.75rem; + } + + .sm\:gap-8{ + gap: 2rem; + } + + .sm\:gap-9{ + gap: 2.25rem; + } + + .sm\:gap-10{ + gap: 2.5rem; + } + + .sm\:gap-11{ + gap: 2.75rem; + } + + .sm\:gap-12{ + gap: 3rem; + } + + .sm\:gap-14{ + gap: 3.5rem; + } + + .sm\:gap-16{ + gap: 4rem; + } + + .sm\:gap-20{ + gap: 5rem; + } + + .sm\:gap-24{ + gap: 6rem; + } + + .sm\:gap-28{ + gap: 7rem; + } + + .sm\:gap-32{ + gap: 8rem; + } + + .sm\:gap-36{ + gap: 9rem; + } + + .sm\:gap-40{ + gap: 10rem; + } + + .sm\:gap-44{ + gap: 11rem; + } + + .sm\:gap-48{ + gap: 12rem; + } + + .sm\:gap-52{ + gap: 13rem; + } + + .sm\:gap-56{ + gap: 14rem; + } + + .sm\:gap-60{ + gap: 15rem; + } + + .sm\:gap-64{ + gap: 16rem; + } + + .sm\:gap-72{ + gap: 18rem; + } + + .sm\:gap-80{ + gap: 20rem; + } + + .sm\:gap-96{ + gap: 24rem; + } + + .sm\:gap-px{ + gap: 1px; + } + + .sm\:gap-0\.5{ + gap: 0.125rem; + } + + .sm\:gap-1\.5{ + gap: 0.375rem; + } + + .sm\:gap-2\.5{ + gap: 0.625rem; + } + + .sm\:gap-3\.5{ + gap: 0.875rem; + } + + .sm\:gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; + } + + .sm\:gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .sm\:gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .sm\:gap-x-3{ + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .sm\:gap-x-4{ + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:gap-x-5{ + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .sm\:gap-x-6{ + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:gap-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .sm\:gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .sm\:gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .sm\:gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .sm\:gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .sm\:gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .sm\:gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .sm\:gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .sm\:gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .sm\:gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .sm\:gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .sm\:gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .sm\:gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .sm\:gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .sm\:gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .sm\:gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .sm\:gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .sm\:gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .sm\:gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .sm\:gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .sm\:gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .sm\:gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .sm\:gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .sm\:gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; + } + + .sm\:gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .sm\:gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .sm\:gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .sm\:gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .sm\:gap-y-0{ + row-gap: 0px; + } + + .sm\:gap-y-1{ + row-gap: 0.25rem; + } + + .sm\:gap-y-2{ + row-gap: 0.5rem; + } + + .sm\:gap-y-3{ + row-gap: 0.75rem; + } + + .sm\:gap-y-4{ + row-gap: 1rem; + } + + .sm\:gap-y-5{ + row-gap: 1.25rem; + } + + .sm\:gap-y-6{ + row-gap: 1.5rem; + } + + .sm\:gap-y-7{ + row-gap: 1.75rem; + } + + .sm\:gap-y-8{ + row-gap: 2rem; + } + + .sm\:gap-y-9{ + row-gap: 2.25rem; + } + + .sm\:gap-y-10{ + row-gap: 2.5rem; + } + + .sm\:gap-y-11{ + row-gap: 2.75rem; + } + + .sm\:gap-y-12{ + row-gap: 3rem; + } + + .sm\:gap-y-14{ + row-gap: 3.5rem; + } + + .sm\:gap-y-16{ + row-gap: 4rem; + } + + .sm\:gap-y-20{ + row-gap: 5rem; + } + + .sm\:gap-y-24{ + row-gap: 6rem; + } + + .sm\:gap-y-28{ + row-gap: 7rem; + } + + .sm\:gap-y-32{ + row-gap: 8rem; + } + + .sm\:gap-y-36{ + row-gap: 9rem; + } + + .sm\:gap-y-40{ + row-gap: 10rem; + } + + .sm\:gap-y-44{ + row-gap: 11rem; + } + + .sm\:gap-y-48{ + row-gap: 12rem; + } + + .sm\:gap-y-52{ + row-gap: 13rem; + } + + .sm\:gap-y-56{ + row-gap: 14rem; + } + + .sm\:gap-y-60{ + row-gap: 15rem; + } + + .sm\:gap-y-64{ + row-gap: 16rem; + } + + .sm\:gap-y-72{ + row-gap: 18rem; + } + + .sm\:gap-y-80{ + row-gap: 20rem; + } + + .sm\:gap-y-96{ + row-gap: 24rem; + } + + .sm\:gap-y-px{ + row-gap: 1px; + } + + .sm\:gap-y-0\.5{ + row-gap: 0.125rem; + } + + .sm\:gap-y-1\.5{ + row-gap: 0.375rem; + } + + .sm\:gap-y-2\.5{ + row-gap: 0.625rem; + } + + .sm\:gap-y-3\.5{ + row-gap: 0.875rem; + } + + .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\: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))); + } + + .sm\: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))); + } + + .sm\: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))); + } + + .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-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))); + } + + .sm\: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))); + } + + .sm\: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))); + } + + .sm\: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))); + } + + .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-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))); + } + + .sm\:-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))); + } + + .sm\:-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))); + } + + .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-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))); + } + + .sm\:-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))); + } + + .sm\:-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))); + } + + .sm\:-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))); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * 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\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\: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)); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\: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)); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\: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)); + } + + .sm\: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)); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-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\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-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)); + } + + .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-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)); + } + + .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-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)); + } + + .sm\:-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)); + } + + .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; + } + + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; + } + + .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\: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))); + } + + .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\: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))); + } + + .sm\: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)); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\: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)); + } + + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; + } + + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; + } + + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; + } + + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; + } + + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; + } + + .sm\:divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; + } + + .sm\:divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; + } + + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; + } + + .sm\:divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; + } + + .sm\:divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .sm\:divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); + } + + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); + } + + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); + } + + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); + } + + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); + } + + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); + } + + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); + } + + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); + } + + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); + } + + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); + } + + .sm\:divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); + } + + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); + } + + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); + } + + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); + } + + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); + } + + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); + } + + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); + } + + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); + } + + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); + } + + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); + } + + .sm\:divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); + } + + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); + } + + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); + } + + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; + } + + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; + } + + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; + } + + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; + } + + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; + } + + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; + } + + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; + } + + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; + } + + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; + } + + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; + } + + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; + } + + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; + } + + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; + } + + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; + } + + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + } + + .sm\:place-self-auto{ + place-self: auto; + } + + .sm\:place-self-start{ + place-self: start; + } + + .sm\:place-self-end{ + place-self: end; + } + + .sm\:place-self-center{ + place-self: center; + } + + .sm\:place-self-stretch{ + place-self: stretch; + } + + .sm\:self-auto{ + align-self: auto; + } + + .sm\:self-start{ + align-self: flex-start; + } + + .sm\:self-end{ + align-self: flex-end; + } + + .sm\:self-center{ + align-self: center; + } + + .sm\:self-stretch{ + align-self: stretch; + } + + .sm\:self-baseline{ + align-self: baseline; + } + + .sm\:justify-self-auto{ + justify-self: auto; + } + + .sm\:justify-self-start{ + justify-self: start; + } + + .sm\:justify-self-end{ + justify-self: end; + } + + .sm\:justify-self-center{ + justify-self: center; + } + + .sm\:justify-self-stretch{ + justify-self: stretch; + } + + .sm\:overflow-auto{ + overflow: auto; + } + + .sm\:overflow-hidden{ + overflow: hidden; + } + + .sm\:overflow-visible{ + overflow: visible; + } + + .sm\:overflow-scroll{ + overflow: scroll; + } + + .sm\:overflow-x-auto{ + overflow-x: auto; + } + + .sm\:overflow-y-auto{ + overflow-y: auto; + } + + .sm\:overflow-x-hidden{ + overflow-x: hidden; + } + + .sm\:overflow-y-hidden{ + overflow-y: hidden; + } + + .sm\:overflow-x-visible{ + overflow-x: visible; + } + + .sm\:overflow-y-visible{ + overflow-y: visible; + } + + .sm\:overflow-x-scroll{ + overflow-x: scroll; + } + + .sm\:overflow-y-scroll{ + overflow-y: scroll; + } + + .sm\:overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .sm\:overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .sm\:overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .sm\:overscroll-y-auto{ + overscroll-behavior-y: auto; + } + + .sm\:overscroll-y-contain{ + overscroll-behavior-y: contain; + } + + .sm\:overscroll-y-none{ + overscroll-behavior-y: none; + } + + .sm\:overscroll-x-auto{ + overscroll-behavior-x: auto; + } + + .sm\:overscroll-x-contain{ + overscroll-behavior-x: contain; + } + + .sm\:overscroll-x-none{ + overscroll-behavior-x: none; + } + + .sm\:truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:overflow-ellipsis{ + text-overflow: ellipsis; + } + + .sm\:overflow-clip{ + text-overflow: clip; + } + + .sm\:whitespace-normal{ + white-space: normal; + } + + .sm\:whitespace-nowrap{ + white-space: nowrap; + } + + .sm\:whitespace-pre{ + white-space: pre; + } + + .sm\:whitespace-pre-line{ + white-space: pre-line; + } + + .sm\:whitespace-pre-wrap{ + white-space: pre-wrap; + } + + .sm\:break-normal{ + overflow-wrap: normal; + word-break: normal; + } + + .sm\:break-words{ + overflow-wrap: break-word; + } + + .sm\:break-all{ + word-break: break-all; + } + + .sm\:rounded-none{ + border-radius: 0px; + } + + .sm\:rounded-sm{ + border-radius: 0.125rem; + } + + .sm\:rounded{ + border-radius: 0.25rem; + } + + .sm\:rounded-md{ + border-radius: 0.375rem; + } + + .sm\:rounded-lg{ + border-radius: 0.5rem; + } + + .sm\:rounded-xl{ + border-radius: 0.75rem; + } + + .sm\:rounded-2xl{ + border-radius: 1rem; + } + + .sm\:rounded-3xl{ + border-radius: 1.5rem; + } + + .sm\:rounded-full{ + border-radius: 9999px; + } + + .sm\:rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; + } + + .sm\:rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .sm\:rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .sm\:rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + } + + .sm\:rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .sm\:rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + } + + .sm\:rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .sm\:rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + } + + .sm\:rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .sm\:rounded-tl-none{ + border-top-left-radius: 0px; + } + + .sm\:rounded-tl-sm{ + border-top-left-radius: 0.125rem; + } + + .sm\:rounded-tl{ + border-top-left-radius: 0.25rem; + } + + .sm\:rounded-tl-md{ + border-top-left-radius: 0.375rem; + } + + .sm\:rounded-tl-lg{ + border-top-left-radius: 0.5rem; + } + + .sm\:rounded-tl-xl{ + border-top-left-radius: 0.75rem; + } + + .sm\:rounded-tl-2xl{ + border-top-left-radius: 1rem; + } + + .sm\:rounded-tl-3xl{ + border-top-left-radius: 1.5rem; + } + + .sm\:rounded-tl-full{ + border-top-left-radius: 9999px; + } + + .sm\:rounded-tr-none{ + border-top-right-radius: 0px; + } + + .sm\:rounded-tr-sm{ + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-tr{ + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-tr-md{ + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-tr-lg{ + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-tr-xl{ + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-tr-2xl{ + border-top-right-radius: 1rem; + } + + .sm\:rounded-tr-3xl{ + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-tr-full{ + border-top-right-radius: 9999px; + } + + .sm\:rounded-br-none{ + border-bottom-right-radius: 0px; + } + + .sm\:rounded-br-sm{ + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-br{ + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-br-md{ + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-br-lg{ + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-br-xl{ + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-br-2xl{ + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-br-full{ + border-bottom-right-radius: 9999px; + } + + .sm\:rounded-bl-none{ + border-bottom-left-radius: 0px; + } + + .sm\:rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-bl{ + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-bl-md{ + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-bl-2xl{ + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-bl-full{ + border-bottom-left-radius: 9999px; + } + + .sm\:border-0{ + border-width: 0px; + } + + .sm\:border-2{ + border-width: 2px; + } + + .sm\:border-4{ + border-width: 4px; + } + + .sm\:border-8{ + border-width: 8px; + } + + .sm\:border{ + border-width: 1px; + } + + .sm\:border-t-0{ + border-top-width: 0px; + } + + .sm\:border-t-2{ + border-top-width: 2px; + } + + .sm\:border-t-4{ + border-top-width: 4px; + } + + .sm\:border-t-8{ + border-top-width: 8px; + } + + .sm\:border-t{ + border-top-width: 1px; + } + + .sm\:border-r-0{ + border-right-width: 0px; + } + + .sm\:border-r-2{ + border-right-width: 2px; + } + + .sm\:border-r-4{ + border-right-width: 4px; + } + + .sm\:border-r-8{ + border-right-width: 8px; + } + + .sm\:border-r{ + border-right-width: 1px; + } + + .sm\:border-b-0{ + border-bottom-width: 0px; + } + + .sm\:border-b-2{ + border-bottom-width: 2px; + } + + .sm\:border-b-4{ + border-bottom-width: 4px; + } + + .sm\:border-b-8{ + border-bottom-width: 8px; + } + + .sm\:border-b{ + border-bottom-width: 1px; + } + + .sm\:border-l-0{ + border-left-width: 0px; + } + + .sm\:border-l-2{ + border-left-width: 2px; + } + + .sm\:border-l-4{ + border-left-width: 4px; + } + + .sm\:border-l-8{ + border-left-width: 8px; + } + + .sm\:border-l{ + border-left-width: 1px; + } + + .sm\:border-solid{ + border-style: solid; + } + + .sm\:border-dashed{ + border-style: dashed; + } + + .sm\:border-dotted{ + border-style: dotted; + } + + .sm\:border-double{ + border-style: double; + } + + .sm\:border-none{ + border-style: none; + } + + .sm\:border-transparent{ + border-color: transparent; + } + + .sm\:border-current{ + border-color: currentColor; + } + + .sm\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .sm\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .sm\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .sm\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .sm\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .sm\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .sm\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .sm\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .sm\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .sm\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .sm\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .sm\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .sm\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .sm\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .sm\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .sm\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .sm\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .sm\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .sm\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .sm\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .sm\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .sm\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .sm\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .sm\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .sm\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .sm\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .sm\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .sm\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .sm\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .sm\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .sm\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .sm\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .sm\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .sm\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .sm\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .sm\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .sm\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .sm\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .sm\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .sm\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .sm\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .sm\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .sm\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .sm\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .sm\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .sm\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .sm\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .sm\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .sm\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .sm\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .sm\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .sm\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .sm\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .sm\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .sm\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .sm\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .sm\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .sm\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .sm\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .sm\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .sm\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .sm\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .sm\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .sm\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .sm\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .sm\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .sm\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .sm\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .sm\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .sm\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .sm\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .sm\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .sm\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .sm\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .sm\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .sm\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .sm\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .sm\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .sm\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .sm\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .sm\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .sm\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .sm\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .sm\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .sm\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .sm\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .sm\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .sm\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .sm\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-transparent{ + border-color: transparent; + } + + .group:hover .sm\:group-hover\:border-current{ + border-color: currentColor; + } + + .group:hover .sm\:group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-transparent:focus-within{ + border-color: transparent; + } + + .sm\:focus-within\:border-current:focus-within{ + border-color: currentColor; + } + + .sm\:focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .sm\:hover\:border-transparent:hover{ + border-color: transparent; + } + + .sm\:hover\:border-current:hover{ + border-color: currentColor; + } + + .sm\:hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .sm\:hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .sm\:hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .sm\:hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .sm\:hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .sm\:focus\:border-transparent:focus{ + border-color: transparent; + } + + .sm\:focus\:border-current:focus{ + border-color: currentColor; + } + + .sm\:focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .sm\:focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .sm\:focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .sm\:focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .sm\:focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .sm\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .sm\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .sm\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .sm\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .sm\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .sm\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .sm\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .sm\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .sm\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .sm\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .sm\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .sm\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .sm\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .sm\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .sm\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .group:hover .sm\:group-hover\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .group:hover .sm\:group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .sm\:focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; + } + + .sm\:focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; + } + + .sm\:focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; + } + + .sm\:focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; + } + + .sm\:focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; + } + + .sm\:focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; + } + + .sm\:focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; + } + + .sm\:focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; + } + + .sm\:focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; + } + + .sm\:focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; + } + + .sm\:focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; + } + + .sm\:focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; + } + + .sm\:focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; + } + + .sm\:focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; + } + + .sm\:focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; + } + + .sm\:hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; + } + + .sm\:hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; + } + + .sm\:hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; + } + + .sm\:hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; + } + + .sm\:hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; + } + + .sm\:hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; + } + + .sm\:hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; + } + + .sm\:hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; + } + + .sm\:hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; + } + + .sm\:hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; + } + + .sm\:hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; + } + + .sm\:hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; + } + + .sm\:hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; + } + + .sm\:hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; + } + + .sm\:hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; + } + + .sm\:focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; + } + + .sm\:focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; + } + + .sm\:focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; + } + + .sm\:focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; + } + + .sm\:focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; + } + + .sm\:focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; + } + + .sm\:focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; + } + + .sm\:focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; + } + + .sm\:focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; + } + + .sm\:focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; + } + + .sm\:focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; + } + + .sm\:focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; + } + + .sm\:focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; + } + + .sm\:focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; + } + + .sm\:focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; + } + + .sm\:bg-transparent{ + background-color: transparent; + } + + .sm\:bg-current{ + background-color: currentColor; + } + + .sm\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .sm\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .sm\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .sm\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .sm\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .sm\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .sm\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .sm\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .sm\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .sm\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .sm\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .sm\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .sm\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .sm\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .sm\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .sm\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .sm\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .sm\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .sm\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .sm\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .sm\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .sm\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .sm\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-transparent{ + background-color: transparent; + } + + .group:hover .sm\:group-hover\:bg-current{ + background-color: currentColor; + } + + .group:hover .sm\:group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-transparent:focus-within{ + background-color: transparent; + } + + .sm\:focus-within\:bg-current:focus-within{ + background-color: currentColor; + } + + .sm\:focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-transparent:hover{ + background-color: transparent; + } + + .sm\:hover\:bg-current:hover{ + background-color: currentColor; + } + + .sm\:hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-transparent:focus{ + background-color: transparent; + } + + .sm\:focus\:bg-current:focus{ + background-color: currentColor; + } + + .sm\:focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .sm\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .sm\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .sm\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .sm\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .sm\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .sm\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .sm\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .sm\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .sm\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .sm\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .sm\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .sm\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .sm\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .sm\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .sm\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .group:hover .sm\:group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .group:hover .sm\:group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .sm\:focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; + } + + .sm\:focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; + } + + .sm\:focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; + } + + .sm\:focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; + } + + .sm\:focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; + } + + .sm\:focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; + } + + .sm\:focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; + } + + .sm\:focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; + } + + .sm\:focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; + } + + .sm\:focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; + } + + .sm\:focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; + } + + .sm\:focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; + } + + .sm\:focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; + } + + .sm\:focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; + } + + .sm\:focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; + } + + .sm\:hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; + } + + .sm\:hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; + } + + .sm\:hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; + } + + .sm\:hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; + } + + .sm\:hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; + } + + .sm\:hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; + } + + .sm\:hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; + } + + .sm\:hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; + } + + .sm\:hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; + } + + .sm\:hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; + } + + .sm\:hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; + } + + .sm\:hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; + } + + .sm\:hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; + } + + .sm\:hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; + } + + .sm\:hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; + } + + .sm\:focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; + } + + .sm\:focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; + } + + .sm\:focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; + } + + .sm\:focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; + } + + .sm\:focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; + } + + .sm\:focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; + } + + .sm\:focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; + } + + .sm\:focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; + } + + .sm\:focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; + } + + .sm\:focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; + } + + .sm\:focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; + } + + .sm\:focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; + } + + .sm\:focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; + } + + .sm\:focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; + } + + .sm\:focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; + } + + .sm\:bg-none{ + background-image: none; + } + + .sm\:bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .sm\:from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .sm\:focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .sm\:focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .sm\:focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .sm\:focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .sm\:focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .sm\:focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .sm\:focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .sm\:focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .sm\:focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .sm\:focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .sm\:focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .sm\:focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .sm\:focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .sm\:focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .sm\:focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .sm\:focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .sm\:focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .sm\:focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .sm\:focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .sm\:focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .sm\:focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .sm\:focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .sm\:focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .sm\:focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .sm\:focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .sm\:focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .sm\:focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .sm\:focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .sm\:focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .sm\:focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .sm\:focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .sm\:focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .sm\:focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .sm\:focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .sm\:focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .sm\:focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .sm\:focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .sm\:focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .sm\:focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .sm\:focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .sm\:focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .sm\:focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .sm\:focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .sm\:focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .sm\:focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .sm\:focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .sm\:focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .sm\:focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .sm\:focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .sm\:focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .sm\:focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .sm\:focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .sm\:focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .sm\:focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .sm\:focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .sm\:focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .sm\:focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .sm\:focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .sm\:focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .sm\:focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .sm\:focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .sm\:focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .sm\:focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .sm\:focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .sm\:focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .sm\:focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .sm\:focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .sm\:focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .sm\:focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .sm\:focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .sm\:focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .sm\:focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .sm\:focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .sm\:focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .sm\:focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .sm\:focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .sm\:focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .sm\:focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .sm\:focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .sm\:focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .sm\:focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .sm\:focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .sm\:focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .sm\:focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .sm\:focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .sm\:focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .sm\:focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .sm\:focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .sm\:focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .sm\:to-transparent{ + --tw-gradient-to: transparent; + } + + .sm\:to-current{ + --tw-gradient-to: currentColor; + } + + .sm\:to-black{ + --tw-gradient-to: #000; + } + + .sm\:to-white{ + --tw-gradient-to: #fff; + } + + .sm\:to-gray-100{ + --tw-gradient-to: #f7fafc; + } + + .sm\:to-gray-200{ + --tw-gradient-to: #edf2f7; + } + + .sm\:to-gray-300{ + --tw-gradient-to: #e2e8f0; + } + + .sm\:to-gray-400{ + --tw-gradient-to: #cbd5e0; + } + + .sm\:to-gray-500{ + --tw-gradient-to: #a0aec0; + } + + .sm\:to-gray-600{ + --tw-gradient-to: #718096; + } + + .sm\:to-gray-700{ + --tw-gradient-to: #4a5568; + } + + .sm\:to-gray-800{ + --tw-gradient-to: #2d3748; + } + + .sm\:to-gray-900{ + --tw-gradient-to: #1a202c; + } + + .sm\:to-red-100{ + --tw-gradient-to: #fff5f5; + } + + .sm\:to-red-200{ + --tw-gradient-to: #fed7d7; + } + + .sm\:to-red-300{ + --tw-gradient-to: #feb2b2; + } + + .sm\:to-red-400{ + --tw-gradient-to: #fc8181; + } + + .sm\:to-red-500{ + --tw-gradient-to: #f56565; + } + + .sm\:to-red-600{ + --tw-gradient-to: #e53e3e; + } + + .sm\:to-red-700{ + --tw-gradient-to: #c53030; + } + + .sm\:to-red-800{ + --tw-gradient-to: #9b2c2c; + } + + .sm\:to-red-900{ + --tw-gradient-to: #742a2a; + } + + .sm\:to-orange-100{ + --tw-gradient-to: #fffaf0; + } + + .sm\:to-orange-200{ + --tw-gradient-to: #feebc8; + } + + .sm\:to-orange-300{ + --tw-gradient-to: #fbd38d; + } + + .sm\:to-orange-400{ + --tw-gradient-to: #f6ad55; + } + + .sm\:to-orange-500{ + --tw-gradient-to: #ed8936; + } + + .sm\:to-orange-600{ + --tw-gradient-to: #dd6b20; + } + + .sm\:to-orange-700{ + --tw-gradient-to: #c05621; + } + + .sm\:to-orange-800{ + --tw-gradient-to: #9c4221; + } + + .sm\:to-orange-900{ + --tw-gradient-to: #7b341e; + } + + .sm\:to-yellow-100{ + --tw-gradient-to: #fffff0; + } + + .sm\:to-yellow-200{ + --tw-gradient-to: #fefcbf; + } + + .sm\:to-yellow-300{ + --tw-gradient-to: #faf089; + } + + .sm\:to-yellow-400{ + --tw-gradient-to: #f6e05e; + } + + .sm\:to-yellow-500{ + --tw-gradient-to: #ecc94b; + } + + .sm\:to-yellow-600{ + --tw-gradient-to: #d69e2e; + } + + .sm\:to-yellow-700{ + --tw-gradient-to: #b7791f; + } + + .sm\:to-yellow-800{ + --tw-gradient-to: #975a16; + } + + .sm\:to-yellow-900{ + --tw-gradient-to: #744210; + } + + .sm\:to-green-100{ + --tw-gradient-to: #f0fff4; + } + + .sm\:to-green-200{ + --tw-gradient-to: #c6f6d5; + } + + .sm\:to-green-300{ + --tw-gradient-to: #9ae6b4; + } + + .sm\:to-green-400{ + --tw-gradient-to: #68d391; + } + + .sm\:to-green-500{ + --tw-gradient-to: #48bb78; + } + + .sm\:to-green-600{ + --tw-gradient-to: #38a169; + } + + .sm\:to-green-700{ + --tw-gradient-to: #2f855a; + } + + .sm\:to-green-800{ + --tw-gradient-to: #276749; + } + + .sm\:to-green-900{ + --tw-gradient-to: #22543d; + } + + .sm\:to-teal-100{ + --tw-gradient-to: #e6fffa; + } + + .sm\:to-teal-200{ + --tw-gradient-to: #b2f5ea; + } + + .sm\:to-teal-300{ + --tw-gradient-to: #81e6d9; + } + + .sm\:to-teal-400{ + --tw-gradient-to: #4fd1c5; + } + + .sm\:to-teal-500{ + --tw-gradient-to: #38b2ac; + } + + .sm\:to-teal-600{ + --tw-gradient-to: #319795; + } + + .sm\:to-teal-700{ + --tw-gradient-to: #2c7a7b; + } + + .sm\:to-teal-800{ + --tw-gradient-to: #285e61; + } + + .sm\:to-teal-900{ + --tw-gradient-to: #234e52; + } + + .sm\:to-blue-100{ + --tw-gradient-to: #ebf8ff; + } + + .sm\:to-blue-200{ + --tw-gradient-to: #bee3f8; + } + + .sm\:to-blue-300{ + --tw-gradient-to: #90cdf4; + } + + .sm\:to-blue-400{ + --tw-gradient-to: #63b3ed; + } + + .sm\:to-blue-500{ + --tw-gradient-to: #4299e1; + } + + .sm\:to-blue-600{ + --tw-gradient-to: #3182ce; + } + + .sm\:to-blue-700{ + --tw-gradient-to: #2b6cb0; + } + + .sm\:to-blue-800{ + --tw-gradient-to: #2c5282; + } + + .sm\:to-blue-900{ + --tw-gradient-to: #2a4365; + } + + .sm\:to-indigo-100{ + --tw-gradient-to: #ebf4ff; + } + + .sm\:to-indigo-200{ + --tw-gradient-to: #c3dafe; + } + + .sm\:to-indigo-300{ + --tw-gradient-to: #a3bffa; + } + + .sm\:to-indigo-400{ + --tw-gradient-to: #7f9cf5; + } + + .sm\:to-indigo-500{ + --tw-gradient-to: #667eea; + } + + .sm\:to-indigo-600{ + --tw-gradient-to: #5a67d8; + } + + .sm\:to-indigo-700{ + --tw-gradient-to: #4c51bf; + } + + .sm\:to-indigo-800{ + --tw-gradient-to: #434190; + } + + .sm\:to-indigo-900{ + --tw-gradient-to: #3c366b; + } + + .sm\:to-purple-100{ + --tw-gradient-to: #faf5ff; + } + + .sm\:to-purple-200{ + --tw-gradient-to: #e9d8fd; + } + + .sm\:to-purple-300{ + --tw-gradient-to: #d6bcfa; + } + + .sm\:to-purple-400{ + --tw-gradient-to: #b794f4; + } + + .sm\:to-purple-500{ + --tw-gradient-to: #9f7aea; + } + + .sm\:to-purple-600{ + --tw-gradient-to: #805ad5; + } + + .sm\:to-purple-700{ + --tw-gradient-to: #6b46c1; + } + + .sm\:to-purple-800{ + --tw-gradient-to: #553c9a; + } + + .sm\:to-purple-900{ + --tw-gradient-to: #44337a; + } + + .sm\:to-pink-100{ + --tw-gradient-to: #fff5f7; + } + + .sm\:to-pink-200{ + --tw-gradient-to: #fed7e2; + } + + .sm\:to-pink-300{ + --tw-gradient-to: #fbb6ce; + } + + .sm\:to-pink-400{ + --tw-gradient-to: #f687b3; + } + + .sm\:to-pink-500{ + --tw-gradient-to: #ed64a6; + } + + .sm\:to-pink-600{ + --tw-gradient-to: #d53f8c; + } + + .sm\:to-pink-700{ + --tw-gradient-to: #b83280; + } + + .sm\:to-pink-800{ + --tw-gradient-to: #97266d; + } + + .sm\:to-pink-900{ + --tw-gradient-to: #702459; + } + + .sm\:hover\:to-transparent:hover{ + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-current:hover{ + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-black:hover{ + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover{ + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; + } + + .sm\:hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; + } + + .sm\:hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; + } + + .sm\:hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; + } + + .sm\:hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; + } + + .sm\:hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; + } + + .sm\:hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; + } + + .sm\:hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; + } + + .sm\:hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; + } + + .sm\:hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; + } + + .sm\:hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; + } + + .sm\:hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; + } + + .sm\:hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; + } + + .sm\:hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; + } + + .sm\:hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; + } + + .sm\:hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; + } + + .sm\:hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; + } + + .sm\:hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; + } + + .sm\:hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; + } + + .sm\:hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; + } + + .sm\:hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; + } + + .sm\:hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; + } + + .sm\:hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; + } + + .sm\:hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; + } + + .sm\:hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; + } + + .sm\:hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; + } + + .sm\:hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; + } + + .sm\:hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; + } + + .sm\:hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; + } + + .sm\:hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; + } + + .sm\:hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; + } + + .sm\:hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; + } + + .sm\:hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; + } + + .sm\:hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; + } + + .sm\:hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; + } + + .sm\:hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; + } + + .sm\:hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; + } + + .sm\:hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; + } + + .sm\:hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; + } + + .sm\:hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; + } + + .sm\:hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; + } + + .sm\:hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; + } + + .sm\:hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; + } + + .sm\:hover\:to-green-800:hover{ + --tw-gradient-to: #276749; + } + + .sm\:hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; + } + + .sm\:hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; + } + + .sm\:hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; + } + + .sm\:hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; + } + + .sm\:hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; + } + + .sm\:hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; + } + + .sm\:hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; + } + + .sm\:hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; + } + + .sm\:hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; + } + + .sm\:hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; + } + + .sm\:hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; + } + + .sm\:hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; + } + + .sm\:hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; + } + + .sm\:hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; + } + + .sm\:hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; + } + + .sm\:hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; + } + + .sm\:hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; + } + + .sm\:hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; + } + + .sm\:hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; + } + + .sm\:hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; + } + + .sm\:hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; + } + + .sm\:hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; + } + + .sm\:hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; + } + + .sm\:hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; + } + + .sm\:hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; + } + + .sm\:hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; + } + + .sm\:hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; + } + + .sm\:hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; + } + + .sm\:hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; + } + + .sm\:hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; + } + + .sm\:hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; + } + + .sm\:hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; + } + + .sm\:hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; + } + + .sm\:hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; + } + + .sm\:hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; + } + + .sm\:hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; + } + + .sm\:hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; + } + + .sm\:hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; + } + + .sm\:hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; + } + + .sm\:hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; + } + + .sm\:hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; + } + + .sm\:hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; + } + + .sm\:hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; + } + + .sm\:hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; + } + + .sm\:hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; + } + + .sm\:hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; + } + + .sm\:focus\:to-transparent:focus{ + --tw-gradient-to: transparent; + } + + .sm\:focus\:to-current:focus{ + --tw-gradient-to: currentColor; + } + + .sm\:focus\:to-black:focus{ + --tw-gradient-to: #000; + } + + .sm\:focus\:to-white:focus{ + --tw-gradient-to: #fff; + } + + .sm\:focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; + } + + .sm\:focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; + } + + .sm\:focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; + } + + .sm\:focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; + } + + .sm\:focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; + } + + .sm\:focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; + } + + .sm\:focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; + } + + .sm\:focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; + } + + .sm\:focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; + } + + .sm\:focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; + } + + .sm\:focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; + } + + .sm\:focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; + } + + .sm\:focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; + } + + .sm\:focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; + } + + .sm\:focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; + } + + .sm\:focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; + } + + .sm\:focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; + } + + .sm\:focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; + } + + .sm\:focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; + } + + .sm\:focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; + } + + .sm\:focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; + } + + .sm\:focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; + } + + .sm\:focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; + } + + .sm\:focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; + } + + .sm\:focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; + } + + .sm\:focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; + } + + .sm\:focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; + } + + .sm\:focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; + } + + .sm\:focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; + } + + .sm\:focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; + } + + .sm\:focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; + } + + .sm\:focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; + } + + .sm\:focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; + } + + .sm\:focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; + } + + .sm\:focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; + } + + .sm\:focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; + } + + .sm\:focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; + } + + .sm\:focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; + } + + .sm\:focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; + } + + .sm\:focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; + } + + .sm\:focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; + } + + .sm\:focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; + } + + .sm\:focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; + } + + .sm\:focus\:to-green-800:focus{ + --tw-gradient-to: #276749; + } + + .sm\:focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; + } + + .sm\:focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; + } + + .sm\:focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; + } + + .sm\:focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; + } + + .sm\:focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; + } + + .sm\:focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; + } + + .sm\:focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; + } + + .sm\:focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; + } + + .sm\:focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; + } + + .sm\:focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; + } + + .sm\:focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; + } + + .sm\:focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; + } + + .sm\:focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; + } + + .sm\:focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; + } + + .sm\:focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; + } + + .sm\:focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; + } + + .sm\:focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; + } + + .sm\:focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; + } + + .sm\:focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; + } + + .sm\:focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; + } + + .sm\:focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; + } + + .sm\:focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; + } + + .sm\:focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; + } + + .sm\:focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; + } + + .sm\:focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; + } + + .sm\:focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; + } + + .sm\:focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; + } + + .sm\:focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; + } + + .sm\:focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; + } + + .sm\:focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; + } + + .sm\:focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; + } + + .sm\:focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; + } + + .sm\:focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; + } + + .sm\:focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; + } + + .sm\:focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; + } + + .sm\:focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; + } + + .sm\:focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; + } + + .sm\:focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; + } + + .sm\:focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; + } + + .sm\:focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; + } + + .sm\:focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; + } + + .sm\:focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; + } + + .sm\:focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; + } + + .sm\:focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; + } + + .sm\:focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; + } + + .sm\:focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; + } + + .sm\:decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; + } + + .sm\:decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + } + + .sm\:bg-auto{ + background-size: auto; + } + + .sm\:bg-cover{ + background-size: cover; + } + + .sm\:bg-contain{ + background-size: contain; + } + + .sm\:bg-fixed{ + background-attachment: fixed; + } + + .sm\:bg-local{ + background-attachment: local; + } + + .sm\:bg-scroll{ + background-attachment: scroll; + } + + .sm\:bg-clip-border{ + background-clip: border-box; + } + + .sm\:bg-clip-padding{ + background-clip: padding-box; + } + + .sm\:bg-clip-content{ + background-clip: content-box; + } + + .sm\:bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; + } + + .sm\:bg-bottom{ + background-position: bottom; + } + + .sm\:bg-center{ + background-position: center; + } + + .sm\:bg-left{ + background-position: left; + } + + .sm\:bg-left-bottom{ + background-position: left bottom; + } + + .sm\:bg-left-top{ + background-position: left top; + } + + .sm\:bg-right{ + background-position: right; + } + + .sm\:bg-right-bottom{ + background-position: right bottom; + } + + .sm\:bg-right-top{ + background-position: right top; + } + + .sm\:bg-top{ + background-position: top; + } + + .sm\:bg-repeat{ + background-repeat: repeat; + } + + .sm\:bg-no-repeat{ + background-repeat: no-repeat; + } + + .sm\:bg-repeat-x{ + background-repeat: repeat-x; + } + + .sm\:bg-repeat-y{ + background-repeat: repeat-y; + } + + .sm\:bg-repeat-round{ + background-repeat: round; + } + + .sm\:bg-repeat-space{ + background-repeat: space; + } + + .sm\:bg-origin-border{ + background-origin: border-box; + } + + .sm\:bg-origin-padding{ + background-origin: padding-box; + } + + .sm\:bg-origin-content{ + background-origin: content-box; + } + + .sm\:fill-current{ + fill: currentColor; + } + + .sm\:stroke-current{ + stroke: currentColor; + } + + .sm\:stroke-0{ + stroke-width: 0; + } + + .sm\:stroke-1{ + stroke-width: 1; + } + + .sm\:stroke-2{ + stroke-width: 2; + } + + .sm\:object-contain{ + -o-object-fit: contain; + object-fit: contain; + } + + .sm\:object-cover{ + -o-object-fit: cover; + object-fit: cover; + } + + .sm\:object-fill{ + -o-object-fit: fill; + object-fit: fill; + } + + .sm\:object-none{ + -o-object-fit: none; + object-fit: none; + } + + .sm\:object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .sm\:object-bottom{ + -o-object-position: bottom; + object-position: bottom; + } + + .sm\:object-center{ + -o-object-position: center; + object-position: center; + } + + .sm\:object-left{ + -o-object-position: left; + object-position: left; + } + + .sm\:object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; + } + + .sm\:object-left-top{ + -o-object-position: left top; + object-position: left top; + } + + .sm\:object-right{ + -o-object-position: right; + object-position: right; + } + + .sm\:object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; + } + + .sm\:object-right-top{ + -o-object-position: right top; + object-position: right top; + } + + .sm\:object-top{ + -o-object-position: top; + object-position: top; + } + + .sm\:p-0{ + padding: 0px; + } + + .sm\:p-1{ + padding: 0.25rem; + } + + .sm\:p-2{ + padding: 0.5rem; + } + + .sm\:p-3{ + padding: 0.75rem; + } + + .sm\:p-4{ + padding: 1rem; + } + + .sm\:p-5{ + padding: 1.25rem; + } + + .sm\:p-6{ + padding: 1.5rem; + } + + .sm\:p-7{ + padding: 1.75rem; + } + + .sm\:p-8{ + padding: 2rem; + } + + .sm\:p-9{ + padding: 2.25rem; + } + + .sm\:p-10{ + padding: 2.5rem; + } + + .sm\:p-11{ + padding: 2.75rem; + } + + .sm\:p-12{ + padding: 3rem; + } + + .sm\:p-14{ + padding: 3.5rem; + } + + .sm\:p-16{ + padding: 4rem; + } + + .sm\:p-20{ + padding: 5rem; + } + + .sm\:p-24{ + padding: 6rem; + } + + .sm\:p-28{ + padding: 7rem; + } + + .sm\:p-32{ + padding: 8rem; + } + + .sm\:p-36{ + padding: 9rem; + } + + .sm\:p-40{ + padding: 10rem; + } + + .sm\:p-44{ + padding: 11rem; + } + + .sm\:p-48{ + padding: 12rem; + } + + .sm\:p-52{ + padding: 13rem; + } + + .sm\:p-56{ + padding: 14rem; + } + + .sm\:p-60{ + padding: 15rem; + } + + .sm\:p-64{ + padding: 16rem; + } + + .sm\:p-72{ + padding: 18rem; + } + + .sm\:p-80{ + padding: 20rem; + } + + .sm\:p-96{ + padding: 24rem; + } + + .sm\:p-px{ + padding: 1px; + } + + .sm\:p-0\.5{ + padding: 0.125rem; + } + + .sm\:p-1\.5{ + padding: 0.375rem; + } + + .sm\:p-2\.5{ + padding: 0.625rem; + } + + .sm\:p-3\.5{ + padding: 0.875rem; + } + + .sm\:px-0{ + padding-left: 0px; + padding-right: 0px; + } + + .sm\:px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .sm\:px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .sm\:px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .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\:px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .sm\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } + + .sm\:px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .sm\:px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .sm\:px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .sm\:px-12{ + padding-left: 3rem; + padding-right: 3rem; + } + + .sm\:px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .sm\:px-16{ + padding-left: 4rem; + padding-right: 4rem; + } + + .sm\:px-20{ + padding-left: 5rem; + padding-right: 5rem; + } + + .sm\:px-24{ + padding-left: 6rem; + padding-right: 6rem; + } + + .sm\:px-28{ + padding-left: 7rem; + padding-right: 7rem; + } + + .sm\:px-32{ + padding-left: 8rem; + padding-right: 8rem; + } + + .sm\:px-36{ + padding-left: 9rem; + padding-right: 9rem; + } + + .sm\:px-40{ + padding-left: 10rem; + padding-right: 10rem; + } + + .sm\:px-44{ + padding-left: 11rem; + padding-right: 11rem; + } + + .sm\:px-48{ + padding-left: 12rem; + padding-right: 12rem; + } + + .sm\:px-52{ + padding-left: 13rem; + padding-right: 13rem; + } + + .sm\:px-56{ + padding-left: 14rem; + padding-right: 14rem; + } + + .sm\:px-60{ + padding-left: 15rem; + padding-right: 15rem; + } + + .sm\:px-64{ + padding-left: 16rem; + padding-right: 16rem; + } + + .sm\:px-72{ + padding-left: 18rem; + padding-right: 18rem; + } + + .sm\:px-80{ + padding-left: 20rem; + padding-right: 20rem; + } + + .sm\:px-96{ + padding-left: 24rem; + padding-right: 24rem; + } + + .sm\:px-px{ + padding-left: 1px; + padding-right: 1px; + } + + .sm\:px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .sm\:px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .sm\:px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .sm\:px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .sm\:py-0{ + padding-top: 0px; + padding-bottom: 0px; + } + + .sm\:py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .sm\:py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .sm\:py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .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\:py-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .sm\:py-8{ + padding-top: 2rem; + padding-bottom: 2rem; + } + + .sm\:py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .sm\:py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .sm\:py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .sm\:py-12{ + padding-top: 3rem; + padding-bottom: 3rem; + } + + .sm\:py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .sm\:py-16{ + padding-top: 4rem; + padding-bottom: 4rem; + } + + .sm\:py-20{ + padding-top: 5rem; + padding-bottom: 5rem; + } + + .sm\:py-24{ + padding-top: 6rem; + padding-bottom: 6rem; + } + + .sm\:py-28{ + padding-top: 7rem; + padding-bottom: 7rem; + } + + .sm\:py-32{ + padding-top: 8rem; + padding-bottom: 8rem; + } + + .sm\:py-36{ + padding-top: 9rem; + padding-bottom: 9rem; + } + + .sm\:py-40{ + padding-top: 10rem; + padding-bottom: 10rem; + } + + .sm\:py-44{ + padding-top: 11rem; + padding-bottom: 11rem; + } + + .sm\:py-48{ + padding-top: 12rem; + padding-bottom: 12rem; + } + + .sm\:py-52{ + padding-top: 13rem; + padding-bottom: 13rem; + } + + .sm\:py-56{ + padding-top: 14rem; + padding-bottom: 14rem; + } + + .sm\:py-60{ + padding-top: 15rem; + padding-bottom: 15rem; + } + + .sm\:py-64{ + padding-top: 16rem; + padding-bottom: 16rem; + } + + .sm\:py-72{ + padding-top: 18rem; + padding-bottom: 18rem; + } + + .sm\:py-80{ + padding-top: 20rem; + padding-bottom: 20rem; + } + + .sm\:py-96{ + padding-top: 24rem; + padding-bottom: 24rem; + } + + .sm\:py-px{ + padding-top: 1px; + padding-bottom: 1px; + } + + .sm\:py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .sm\:py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .sm\:py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .sm\:py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .sm\:pt-0{ + padding-top: 0px; + } + + .sm\:pt-1{ + padding-top: 0.25rem; + } + + .sm\:pt-2{ + padding-top: 0.5rem; + } + + .sm\:pt-3{ + padding-top: 0.75rem; + } + + .sm\:pt-4{ + padding-top: 1rem; + } + + .sm\:pt-5{ + padding-top: 1.25rem; + } + + .sm\:pt-6{ + padding-top: 1.5rem; + } + + .sm\:pt-7{ + padding-top: 1.75rem; + } + + .sm\:pt-8{ + padding-top: 2rem; + } + + .sm\:pt-9{ + padding-top: 2.25rem; + } + + .sm\:pt-10{ + padding-top: 2.5rem; + } + + .sm\:pt-11{ + padding-top: 2.75rem; + } + + .sm\:pt-12{ + padding-top: 3rem; + } + + .sm\:pt-14{ + padding-top: 3.5rem; + } + + .sm\:pt-16{ + padding-top: 4rem; + } + + .sm\:pt-20{ + padding-top: 5rem; + } + + .sm\:pt-24{ + padding-top: 6rem; + } + + .sm\:pt-28{ + padding-top: 7rem; + } + + .sm\:pt-32{ + padding-top: 8rem; + } + + .sm\:pt-36{ + padding-top: 9rem; + } + + .sm\:pt-40{ + padding-top: 10rem; + } + + .sm\:pt-44{ + padding-top: 11rem; + } + + .sm\:pt-48{ + padding-top: 12rem; + } + + .sm\:pt-52{ + padding-top: 13rem; + } + + .sm\:pt-56{ + padding-top: 14rem; + } + + .sm\:pt-60{ + padding-top: 15rem; + } + + .sm\:pt-64{ + padding-top: 16rem; + } + + .sm\:pt-72{ + padding-top: 18rem; + } + + .sm\:pt-80{ + padding-top: 20rem; + } + + .sm\:pt-96{ + padding-top: 24rem; + } + + .sm\:pt-px{ + padding-top: 1px; + } + + .sm\:pt-0\.5{ + padding-top: 0.125rem; + } + + .sm\:pt-1\.5{ + padding-top: 0.375rem; + } + + .sm\:pt-2\.5{ + padding-top: 0.625rem; + } + + .sm\:pt-3\.5{ + padding-top: 0.875rem; + } + + .sm\:pr-0{ + padding-right: 0px; + } + + .sm\:pr-1{ + padding-right: 0.25rem; + } + + .sm\:pr-2{ + padding-right: 0.5rem; + } + + .sm\:pr-3{ + padding-right: 0.75rem; + } + + .sm\:pr-4{ + padding-right: 1rem; + } + + .sm\:pr-5{ + padding-right: 1.25rem; + } + + .sm\:pr-6{ + padding-right: 1.5rem; + } + + .sm\:pr-7{ + padding-right: 1.75rem; + } + + .sm\:pr-8{ + padding-right: 2rem; + } + + .sm\:pr-9{ + padding-right: 2.25rem; + } + + .sm\:pr-10{ + padding-right: 2.5rem; + } + + .sm\:pr-11{ + padding-right: 2.75rem; + } + + .sm\:pr-12{ + padding-right: 3rem; + } + + .sm\:pr-14{ + padding-right: 3.5rem; + } + + .sm\:pr-16{ + padding-right: 4rem; + } + + .sm\:pr-20{ + padding-right: 5rem; + } + + .sm\:pr-24{ + padding-right: 6rem; + } + + .sm\:pr-28{ + padding-right: 7rem; + } + + .sm\:pr-32{ + padding-right: 8rem; + } + + .sm\:pr-36{ + padding-right: 9rem; + } + + .sm\:pr-40{ + padding-right: 10rem; + } + + .sm\:pr-44{ + padding-right: 11rem; + } + + .sm\:pr-48{ + padding-right: 12rem; + } + + .sm\:pr-52{ + padding-right: 13rem; + } + + .sm\:pr-56{ + padding-right: 14rem; + } + + .sm\:pr-60{ + padding-right: 15rem; + } + + .sm\:pr-64{ + padding-right: 16rem; + } + + .sm\:pr-72{ + padding-right: 18rem; + } + + .sm\:pr-80{ + padding-right: 20rem; + } + + .sm\:pr-96{ + padding-right: 24rem; + } + + .sm\:pr-px{ + padding-right: 1px; + } + + .sm\:pr-0\.5{ + padding-right: 0.125rem; + } + + .sm\:pr-1\.5{ + padding-right: 0.375rem; + } + + .sm\:pr-2\.5{ + padding-right: 0.625rem; + } + + .sm\:pr-3\.5{ + padding-right: 0.875rem; + } + + .sm\:pb-0{ + padding-bottom: 0px; + } + + .sm\:pb-1{ + padding-bottom: 0.25rem; + } + + .sm\:pb-2{ + padding-bottom: 0.5rem; + } + + .sm\:pb-3{ + padding-bottom: 0.75rem; + } + + .sm\:pb-4{ + padding-bottom: 1rem; + } + + .sm\:pb-5{ + padding-bottom: 1.25rem; + } + + .sm\:pb-6{ + padding-bottom: 1.5rem; + } + + .sm\:pb-7{ + padding-bottom: 1.75rem; + } + + .sm\:pb-8{ + padding-bottom: 2rem; + } + + .sm\:pb-9{ + padding-bottom: 2.25rem; + } + + .sm\:pb-10{ + padding-bottom: 2.5rem; + } + + .sm\:pb-11{ + padding-bottom: 2.75rem; + } + + .sm\:pb-12{ + padding-bottom: 3rem; + } + + .sm\:pb-14{ + padding-bottom: 3.5rem; + } + + .sm\:pb-16{ + padding-bottom: 4rem; + } + + .sm\:pb-20{ + padding-bottom: 5rem; + } + + .sm\:pb-24{ + padding-bottom: 6rem; + } + + .sm\:pb-28{ + padding-bottom: 7rem; + } + + .sm\:pb-32{ + padding-bottom: 8rem; + } + + .sm\:pb-36{ + padding-bottom: 9rem; + } + + .sm\:pb-40{ + padding-bottom: 10rem; + } + + .sm\:pb-44{ + padding-bottom: 11rem; + } + + .sm\:pb-48{ + padding-bottom: 12rem; + } + + .sm\:pb-52{ + padding-bottom: 13rem; + } + + .sm\:pb-56{ + padding-bottom: 14rem; + } + + .sm\:pb-60{ + padding-bottom: 15rem; + } + + .sm\:pb-64{ + padding-bottom: 16rem; + } + + .sm\:pb-72{ + padding-bottom: 18rem; + } + + .sm\:pb-80{ + padding-bottom: 20rem; + } + + .sm\:pb-96{ + padding-bottom: 24rem; + } + + .sm\:pb-px{ + padding-bottom: 1px; + } + + .sm\:pb-0\.5{ + padding-bottom: 0.125rem; + } + + .sm\:pb-1\.5{ + padding-bottom: 0.375rem; + } + + .sm\:pb-2\.5{ + padding-bottom: 0.625rem; + } + + .sm\:pb-3\.5{ + padding-bottom: 0.875rem; + } + + .sm\:pl-0{ + padding-left: 0px; + } + + .sm\:pl-1{ + padding-left: 0.25rem; + } + + .sm\:pl-2{ + padding-left: 0.5rem; + } + + .sm\:pl-3{ + padding-left: 0.75rem; + } + + .sm\:pl-4{ + padding-left: 1rem; + } + + .sm\:pl-5{ + padding-left: 1.25rem; + } + + .sm\:pl-6{ + padding-left: 1.5rem; + } + + .sm\:pl-7{ + padding-left: 1.75rem; + } + + .sm\:pl-8{ + padding-left: 2rem; + } + + .sm\:pl-9{ + padding-left: 2.25rem; + } + + .sm\:pl-10{ + padding-left: 2.5rem; + } + + .sm\:pl-11{ + padding-left: 2.75rem; + } + + .sm\:pl-12{ + padding-left: 3rem; + } + + .sm\:pl-14{ + padding-left: 3.5rem; + } + + .sm\:pl-16{ + padding-left: 4rem; + } + + .sm\:pl-20{ + padding-left: 5rem; + } + + .sm\:pl-24{ + padding-left: 6rem; + } + + .sm\:pl-28{ + padding-left: 7rem; + } + + .sm\:pl-32{ + padding-left: 8rem; + } + + .sm\:pl-36{ + padding-left: 9rem; + } + + .sm\:pl-40{ + padding-left: 10rem; + } + + .sm\:pl-44{ + padding-left: 11rem; + } + + .sm\:pl-48{ + padding-left: 12rem; + } + + .sm\:pl-52{ + padding-left: 13rem; + } + + .sm\:pl-56{ + padding-left: 14rem; + } + + .sm\:pl-60{ + padding-left: 15rem; + } + + .sm\:pl-64{ + padding-left: 16rem; + } + + .sm\:pl-72{ + padding-left: 18rem; + } + + .sm\:pl-80{ + padding-left: 20rem; + } + + .sm\:pl-96{ + padding-left: 24rem; + } + + .sm\:pl-px{ + padding-left: 1px; + } + + .sm\:pl-0\.5{ + padding-left: 0.125rem; + } + + .sm\:pl-1\.5{ + padding-left: 0.375rem; + } + + .sm\:pl-2\.5{ + padding-left: 0.625rem; + } + + .sm\:pl-3\.5{ + padding-left: 0.875rem; + } + + .sm\:text-left{ + text-align: left; + } + + .sm\:text-center{ + text-align: center; + } + + .sm\:text-right{ + text-align: right; + } + + .sm\:text-justify{ + text-align: justify; + } + + .sm\:align-baseline{ + vertical-align: baseline; + } + + .sm\:align-top{ + vertical-align: top; + } + + .sm\:align-middle{ + vertical-align: middle; + } + + .sm\:align-bottom{ + vertical-align: bottom; + } + + .sm\:align-text-top{ + vertical-align: text-top; + } + + .sm\:align-text-bottom{ + vertical-align: text-bottom; + } + + .sm\:font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .sm\:font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .sm\:font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .sm\:text-xs{ + font-size: 0.75rem; + line-height: 1rem; + } + + .sm\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + + .sm\:text-base{ + font-size: 1rem; + line-height: 1.5rem; + } + + .sm\:text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; + } + + .sm\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } + + .sm\:text-2xl{ + font-size: 1.5rem; + line-height: 2rem; + } + + .sm\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + + .sm\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + + .sm\:text-5xl{ + font-size: 3rem; + line-height: 1; + } + + .sm\:text-6xl{ + font-size: 3.75rem; + line-height: 1; + } + + .sm\:text-7xl{ + font-size: 4.5rem; + line-height: 1; + } + + .sm\:text-8xl{ + font-size: 6rem; + line-height: 1; + } + + .sm\:text-9xl{ + font-size: 8rem; + line-height: 1; + } + + .sm\:font-thin{ + font-weight: 100; + } + + .sm\:font-extralight{ + font-weight: 200; + } + + .sm\:font-light{ + font-weight: 300; + } + + .sm\:font-normal{ + font-weight: 400; + } + + .sm\:font-medium{ + font-weight: 500; + } + + .sm\:font-semibold{ + font-weight: 600; + } + + .sm\:font-bold{ + font-weight: 700; + } + + .sm\:font-extrabold{ + font-weight: 800; + } + + .sm\:font-black{ + font-weight: 900; + } + + .sm\:uppercase{ + text-transform: uppercase; + } + + .sm\:lowercase{ + text-transform: lowercase; + } + + .sm\:capitalize{ + text-transform: capitalize; + } + + .sm\:normal-case{ + text-transform: none; + } + + .sm\:italic{ + font-style: italic; + } + + .sm\:not-italic{ + font-style: normal; + } + + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .sm\:normal-nums{ + font-variant-numeric: normal; + } + + .sm\:ordinal{ + --tw-ordinal: ordinal; + } + + .sm\:slashed-zero{ + --tw-slashed-zero: slashed-zero; + } + + .sm\:lining-nums{ + --tw-numeric-figure: lining-nums; + } + + .sm\:oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; + } + + .sm\:proportional-nums{ + --tw-numeric-spacing: proportional-nums; + } + + .sm\:tabular-nums{ + --tw-numeric-spacing: tabular-nums; + } + + .sm\:diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; + } + + .sm\:stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; + } + + .sm\:leading-3{ + line-height: .75rem; + } + + .sm\:leading-4{ + line-height: 1rem; + } + + .sm\:leading-5{ + line-height: 1.25rem; + } + + .sm\:leading-6{ + line-height: 1.5rem; + } + + .sm\:leading-7{ + line-height: 1.75rem; + } + + .sm\:leading-8{ + line-height: 2rem; + } + + .sm\:leading-9{ + line-height: 2.25rem; + } + + .sm\:leading-10{ + line-height: 2.5rem; + } + + .sm\:leading-none{ + line-height: 1; + } + + .sm\:leading-tight{ + line-height: 1.25; + } + + .sm\:leading-snug{ + line-height: 1.375; + } + + .sm\:leading-normal{ + line-height: 1.5; + } + + .sm\:leading-relaxed{ + line-height: 1.625; + } + + .sm\:leading-loose{ + line-height: 2; + } + + .sm\:tracking-tighter{ + letter-spacing: -0.05em; + } + + .sm\:tracking-tight{ + letter-spacing: -0.025em; + } + + .sm\:tracking-normal{ + letter-spacing: 0em; + } + + .sm\:tracking-wide{ + letter-spacing: 0.025em; + } + + .sm\:tracking-wider{ + letter-spacing: 0.05em; + } + + .sm\:tracking-widest{ + letter-spacing: 0.1em; + } + + .sm\:text-transparent{ + color: transparent; + } + + .sm\:text-current{ + color: currentColor; + } + + .sm\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .sm\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .sm\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .sm\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .sm\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .sm\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .sm\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .sm\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .sm\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .sm\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .sm\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .sm\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .sm\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .sm\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .sm\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .sm\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .sm\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .sm\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .sm\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .sm\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .sm\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .sm\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .sm\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .sm\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .sm\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .sm\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .sm\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .sm\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .sm\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .sm\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .sm\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .sm\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .sm\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .sm\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .sm\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .sm\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .sm\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .sm\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .sm\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .sm\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .sm\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .sm\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .sm\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .sm\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .sm\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .sm\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .sm\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .sm\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .sm\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .sm\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .sm\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .sm\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .sm\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .sm\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .sm\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .sm\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .sm\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .sm\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .sm\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .sm\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .sm\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .sm\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .sm\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .sm\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .sm\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .sm\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .sm\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .sm\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .sm\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .sm\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .sm\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .sm\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .sm\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .sm\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .sm\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .sm\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .sm\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .sm\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .sm\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .sm\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .sm\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .sm\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .sm\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .sm\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .sm\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .sm\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .sm\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .sm\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .sm\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-transparent{ + color: transparent; + } + + .group:hover .sm\:group-hover\:text-current{ + color: currentColor; + } + + .group:hover .sm\:group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-transparent:focus-within{ + color: transparent; + } + + .sm\:focus-within\:text-current:focus-within{ + color: currentColor; + } + + .sm\:focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .sm\:hover\:text-transparent:hover{ + color: transparent; + } + + .sm\:hover\:text-current:hover{ + color: currentColor; + } + + .sm\:hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .sm\:hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .sm\:hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .sm\:hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .sm\:hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .sm\:focus\:text-transparent:focus{ + color: transparent; + } + + .sm\:focus\:text-current:focus{ + color: currentColor; + } + + .sm\:focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .sm\:focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .sm\:focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .sm\:focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .sm\:focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .sm\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .sm\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .sm\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .sm\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .sm\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .sm\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .sm\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .sm\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .sm\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .sm\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .sm\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .sm\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .sm\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .sm\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .sm\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .group:hover .sm\:group-hover\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .group:hover .sm\:group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .sm\:focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; + } + + .sm\:focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; + } + + .sm\:focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; + } + + .sm\:focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; + } + + .sm\:focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; + } + + .sm\:focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; + } + + .sm\:focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; + } + + .sm\:focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; + } + + .sm\:focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; + } + + .sm\:focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; + } + + .sm\:focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; + } + + .sm\:focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; + } + + .sm\:focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; + } + + .sm\:focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; + } + + .sm\:focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; + } + + .sm\:hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; + } + + .sm\:hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; + } + + .sm\:hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; + } + + .sm\:hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; + } + + .sm\:hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; + } + + .sm\:hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; + } + + .sm\:hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; + } + + .sm\:hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; + } + + .sm\:hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; + } + + .sm\:hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; + } + + .sm\:hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; + } + + .sm\:hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; + } + + .sm\:hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; + } + + .sm\:hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; + } + + .sm\:hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; + } + + .sm\:focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; + } + + .sm\:focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; + } + + .sm\:focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; + } + + .sm\:focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; + } + + .sm\:focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; + } + + .sm\:focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; + } + + .sm\:focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; + } + + .sm\:focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; + } + + .sm\:focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; + } + + .sm\:focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; + } + + .sm\:focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; + } + + .sm\:focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; + } + + .sm\:focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; + } + + .sm\:focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; + } + + .sm\:focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; + } + + .sm\:underline{ + text-decoration: underline; + } + + .sm\:line-through{ + text-decoration: line-through; + } + + .sm\:no-underline{ + text-decoration: none; + } + + .group:hover .sm\:group-hover\:underline{ + text-decoration: underline; + } + + .group:hover .sm\:group-hover\:line-through{ + text-decoration: line-through; + } + + .group:hover .sm\:group-hover\:no-underline{ + text-decoration: none; + } + + .sm\:focus-within\:underline:focus-within{ + text-decoration: underline; + } + + .sm\:focus-within\:line-through:focus-within{ + text-decoration: line-through; + } + + .sm\:focus-within\:no-underline:focus-within{ + text-decoration: none; + } + + .sm\:hover\:underline:hover{ + text-decoration: underline; + } + + .sm\:hover\:line-through:hover{ + text-decoration: line-through; + } + + .sm\:hover\:no-underline:hover{ + text-decoration: none; + } + + .sm\:focus\:underline:focus{ + text-decoration: underline; + } + + .sm\:focus\:line-through:focus{ + text-decoration: line-through; + } + + .sm\:focus\:no-underline:focus{ + text-decoration: none; + } + + .sm\:antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .sm\:subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .sm\:placeholder-transparent::-moz-placeholder{ + color: transparent; + } + + .sm\:placeholder-transparent:-ms-input-placeholder{ + color: transparent; + } + + .sm\:placeholder-transparent::placeholder{ + color: transparent; + } + + .sm\:placeholder-current::-moz-placeholder{ + color: currentColor; + } + + .sm\:placeholder-current:-ms-input-placeholder{ + color: currentColor; + } + + .sm\:placeholder-current::placeholder{ + color: currentColor; + } + + .sm\:placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; + } + + .sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; + } + + .sm\:focus\:placeholder-transparent:focus::placeholder{ + color: transparent; + } + + .sm\:focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::placeholder{ + color: currentColor; + } + + .sm\:focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + } + + .sm\:opacity-0{ + opacity: 0; + } + + .sm\:opacity-5{ + opacity: 0.05; + } + + .sm\:opacity-10{ + opacity: 0.1; + } + + .sm\:opacity-20{ + opacity: 0.2; + } + + .sm\:opacity-25{ + opacity: 0.25; + } + + .sm\:opacity-30{ + opacity: 0.3; + } + + .sm\:opacity-40{ + opacity: 0.4; + } + + .sm\:opacity-50{ + opacity: 0.5; + } + + .sm\:opacity-60{ + opacity: 0.6; + } + + .sm\:opacity-70{ + opacity: 0.7; + } + + .sm\:opacity-75{ + opacity: 0.75; + } + + .sm\:opacity-80{ + opacity: 0.8; + } + + .sm\:opacity-90{ + opacity: 0.9; + } + + .sm\:opacity-95{ + opacity: 0.95; + } + + .sm\:opacity-100{ + opacity: 1; + } + + .group:hover .sm\:group-hover\:opacity-0{ + opacity: 0; + } + + .group:hover .sm\:group-hover\:opacity-5{ + opacity: 0.05; + } + + .group:hover .sm\:group-hover\:opacity-10{ + opacity: 0.1; + } + + .group:hover .sm\:group-hover\:opacity-20{ + opacity: 0.2; + } + + .group:hover .sm\:group-hover\:opacity-25{ + opacity: 0.25; + } + + .group:hover .sm\:group-hover\:opacity-30{ + opacity: 0.3; + } + + .group:hover .sm\:group-hover\:opacity-40{ + opacity: 0.4; + } + + .group:hover .sm\:group-hover\:opacity-50{ + opacity: 0.5; + } + + .group:hover .sm\:group-hover\:opacity-60{ + opacity: 0.6; + } + + .group:hover .sm\:group-hover\:opacity-70{ + opacity: 0.7; + } + + .group:hover .sm\:group-hover\:opacity-75{ + opacity: 0.75; + } + + .group:hover .sm\:group-hover\:opacity-80{ + opacity: 0.8; + } + + .group:hover .sm\:group-hover\:opacity-90{ + opacity: 0.9; + } + + .group:hover .sm\:group-hover\:opacity-95{ + opacity: 0.95; + } + + .group:hover .sm\:group-hover\:opacity-100{ + opacity: 1; + } + + .sm\:focus-within\:opacity-0:focus-within{ + opacity: 0; + } + + .sm\:focus-within\:opacity-5:focus-within{ + opacity: 0.05; + } + + .sm\:focus-within\:opacity-10:focus-within{ + opacity: 0.1; + } + + .sm\:focus-within\:opacity-20:focus-within{ + opacity: 0.2; + } + + .sm\:focus-within\:opacity-25:focus-within{ + opacity: 0.25; + } + + .sm\:focus-within\:opacity-30:focus-within{ + opacity: 0.3; + } + + .sm\:focus-within\:opacity-40:focus-within{ + opacity: 0.4; + } + + .sm\:focus-within\:opacity-50:focus-within{ + opacity: 0.5; + } + + .sm\:focus-within\:opacity-60:focus-within{ + opacity: 0.6; + } + + .sm\:focus-within\:opacity-70:focus-within{ + opacity: 0.7; + } + + .sm\:focus-within\:opacity-75:focus-within{ + opacity: 0.75; + } + + .sm\:focus-within\:opacity-80:focus-within{ + opacity: 0.8; + } + + .sm\:focus-within\:opacity-90:focus-within{ + opacity: 0.9; + } + + .sm\:focus-within\:opacity-95:focus-within{ + opacity: 0.95; + } + + .sm\:focus-within\:opacity-100:focus-within{ + opacity: 1; + } + + .sm\:hover\:opacity-0:hover{ + opacity: 0; + } + + .sm\:hover\:opacity-5:hover{ + opacity: 0.05; + } + + .sm\:hover\:opacity-10:hover{ + opacity: 0.1; + } + + .sm\:hover\:opacity-20:hover{ + opacity: 0.2; + } + + .sm\:hover\:opacity-25:hover{ + opacity: 0.25; + } + + .sm\:hover\:opacity-30:hover{ + opacity: 0.3; + } + + .sm\:hover\:opacity-40:hover{ + opacity: 0.4; + } + + .sm\:hover\:opacity-50:hover{ + opacity: 0.5; + } + + .sm\:hover\:opacity-60:hover{ + opacity: 0.6; + } + + .sm\:hover\:opacity-70:hover{ + opacity: 0.7; + } + + .sm\:hover\:opacity-75:hover{ + opacity: 0.75; + } + + .sm\:hover\:opacity-80:hover{ + opacity: 0.8; + } + + .sm\:hover\:opacity-90:hover{ + opacity: 0.9; + } + + .sm\:hover\:opacity-95:hover{ + opacity: 0.95; + } + + .sm\:hover\:opacity-100:hover{ + opacity: 1; + } + + .sm\:focus\:opacity-0:focus{ + opacity: 0; + } + + .sm\:focus\:opacity-5:focus{ + opacity: 0.05; + } + + .sm\:focus\:opacity-10:focus{ + opacity: 0.1; + } + + .sm\:focus\:opacity-20:focus{ + opacity: 0.2; + } + + .sm\:focus\:opacity-25:focus{ + opacity: 0.25; + } + + .sm\:focus\:opacity-30:focus{ + opacity: 0.3; + } + + .sm\:focus\:opacity-40:focus{ + opacity: 0.4; + } + + .sm\:focus\:opacity-50:focus{ + opacity: 0.5; + } + + .sm\:focus\:opacity-60:focus{ + opacity: 0.6; + } + + .sm\:focus\:opacity-70:focus{ + opacity: 0.7; + } + + .sm\:focus\:opacity-75:focus{ + opacity: 0.75; + } + + .sm\:focus\:opacity-80:focus{ + opacity: 0.8; + } + + .sm\:focus\:opacity-90:focus{ + opacity: 0.9; + } + + .sm\:focus\:opacity-95:focus{ + opacity: 0.95; + } + + .sm\:focus\:opacity-100:focus{ + opacity: 1; + } + + .sm\:bg-blend-normal{ + background-blend-mode: normal; + } + + .sm\:bg-blend-multiply{ + background-blend-mode: multiply; + } + + .sm\:bg-blend-screen{ + background-blend-mode: screen; + } + + .sm\:bg-blend-overlay{ + background-blend-mode: overlay; + } + + .sm\:bg-blend-darken{ + background-blend-mode: darken; + } + + .sm\:bg-blend-lighten{ + background-blend-mode: lighten; + } + + .sm\:bg-blend-color-dodge{ + background-blend-mode: color-dodge; + } + + .sm\:bg-blend-color-burn{ + background-blend-mode: color-burn; + } + + .sm\:bg-blend-hard-light{ + background-blend-mode: hard-light; + } + + .sm\:bg-blend-soft-light{ + background-blend-mode: soft-light; + } + + .sm\:bg-blend-difference{ + background-blend-mode: difference; + } + + .sm\:bg-blend-exclusion{ + background-blend-mode: exclusion; + } + + .sm\:bg-blend-hue{ + background-blend-mode: hue; + } + + .sm\:bg-blend-saturation{ + background-blend-mode: saturation; + } + + .sm\:bg-blend-color{ + background-blend-mode: color; + } + + .sm\:bg-blend-luminosity{ + background-blend-mode: luminosity; + } + + .sm\:mix-blend-normal{ + mix-blend-mode: normal; + } + + .sm\:mix-blend-multiply{ + mix-blend-mode: multiply; + } + + .sm\:mix-blend-screen{ + mix-blend-mode: screen; + } + + .sm\:mix-blend-overlay{ + mix-blend-mode: overlay; + } + + .sm\:mix-blend-darken{ + mix-blend-mode: darken; + } + + .sm\:mix-blend-lighten{ + mix-blend-mode: lighten; + } + + .sm\:mix-blend-color-dodge{ + mix-blend-mode: color-dodge; + } + + .sm\:mix-blend-color-burn{ + mix-blend-mode: color-burn; + } + + .sm\:mix-blend-hard-light{ + mix-blend-mode: hard-light; + } + + .sm\:mix-blend-soft-light{ + mix-blend-mode: soft-light; + } + + .sm\:mix-blend-difference{ + mix-blend-mode: difference; + } + + .sm\:mix-blend-exclusion{ + mix-blend-mode: exclusion; + } + + .sm\:mix-blend-hue{ + mix-blend-mode: hue; + } + + .sm\:mix-blend-saturation{ + mix-blend-mode: saturation; + } + + .sm\:mix-blend-color{ + mix-blend-mode: color; + } + + .sm\:mix-blend-luminosity{ + mix-blend-mode: luminosity; + } + + .sm\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:outline-none{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:outline-white{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:outline-black{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\: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); + } + + .sm\: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); + } + + .sm\: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); + } + + .sm\: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); + } + + .sm\:ring-8{ + --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(8px + 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); + } + + .sm\: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); + } + + .sm\:focus-within\:ring-0:focus-within{ + --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); + } + + .sm\:focus-within\:ring-1:focus-within{ + --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); + } + + .sm\:focus-within\:ring-2:focus-within{ + --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); + } + + .sm\:focus-within\:ring-4:focus-within{ + --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); + } + + .sm\:focus-within\:ring-8:focus-within{ + --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(8px + 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); + } + + .sm\:focus-within\:ring:focus-within{ + --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); + } + + .sm\: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); + } + + .sm\: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); + } + + .sm\: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); + } + + .sm\:focus\:ring-4: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(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); + } + + .sm\:focus\:ring-8: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(8px + 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); + } + + .sm\: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); + } + + .sm\:ring-inset{ + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; + } + + .sm\:focus\:ring-inset:focus{ + --tw-ring-inset: inset; + } + + .sm\:ring-transparent{ + --tw-ring-color: transparent; + } + + .sm\:ring-current{ + --tw-ring-color: currentColor; + } + + .sm\:ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .sm\:ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .sm\:ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .sm\:ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .sm\:ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .sm\:ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .sm\:ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .sm\:ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .sm\:ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .sm\:ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .sm\:ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .sm\:ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .sm\:ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .sm\:ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .sm\:ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .sm\:ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .sm\:ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .sm\:ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .sm\:ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .sm\:ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .sm\:ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .sm\:ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .sm\:ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; + } + + .sm\:focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; + } + + .sm\:focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-transparent:focus{ + --tw-ring-color: transparent; + } + + .sm\:focus\:ring-current:focus{ + --tw-ring-color: currentColor; + } + + .sm\:focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .sm\:ring-opacity-0{ + --tw-ring-opacity: 0; + } + + .sm\:ring-opacity-5{ + --tw-ring-opacity: 0.05; + } + + .sm\:ring-opacity-10{ + --tw-ring-opacity: 0.1; + } + + .sm\:ring-opacity-20{ + --tw-ring-opacity: 0.2; + } + + .sm\:ring-opacity-25{ + --tw-ring-opacity: 0.25; + } + + .sm\:ring-opacity-30{ + --tw-ring-opacity: 0.3; + } + + .sm\:ring-opacity-40{ + --tw-ring-opacity: 0.4; + } + + .sm\:ring-opacity-50{ + --tw-ring-opacity: 0.5; + } + + .sm\:ring-opacity-60{ + --tw-ring-opacity: 0.6; + } + + .sm\:ring-opacity-70{ + --tw-ring-opacity: 0.7; + } + + .sm\:ring-opacity-75{ + --tw-ring-opacity: 0.75; + } + + .sm\:ring-opacity-80{ + --tw-ring-opacity: 0.8; + } + + .sm\:ring-opacity-90{ + --tw-ring-opacity: 0.9; + } + + .sm\:ring-opacity-95{ + --tw-ring-opacity: 0.95; + } + + .sm\:ring-opacity-100{ + --tw-ring-opacity: 1; + } + + .sm\:focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; + } + + .sm\:focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; + } + + .sm\:focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; + } + + .sm\:focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; + } + + .sm\:focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; + } + + .sm\:focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; + } + + .sm\:focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; + } + + .sm\:focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; + } + + .sm\:focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; + } + + .sm\:focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; + } + + .sm\:focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; + } + + .sm\:focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; + } + + .sm\:focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; + } + + .sm\:focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; + } + + .sm\:focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; + } + + .sm\:focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; + } + + .sm\:focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; + } + + .sm\:focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; + } + + .sm\:focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; + } + + .sm\:focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; + } + + .sm\:focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; + } + + .sm\:focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; + } + + .sm\:focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; + } + + .sm\:focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; + } + + .sm\:focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; + } + + .sm\:focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; + } + + .sm\:focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; + } + + .sm\:focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; + } + + .sm\:focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; + } + + .sm\:focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; + } + + .sm\:ring-offset-0{ + --tw-ring-offset-width: 0px; + } + + .sm\:ring-offset-1{ + --tw-ring-offset-width: 1px; + } + + .sm\:ring-offset-2{ + --tw-ring-offset-width: 2px; + } + + .sm\:ring-offset-4{ + --tw-ring-offset-width: 4px; + } + + .sm\:ring-offset-8{ + --tw-ring-offset-width: 8px; + } + + .sm\:focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; + } + + .sm\:focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; + } + + .sm\:focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; + } + + .sm\:focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; + } + + .sm\:focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; + } + + .sm\:focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; + } + + .sm\:focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; + } + + .sm\:focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; + } + + .sm\:focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; + } + + .sm\:focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; + } + + .sm\:ring-offset-transparent{ + --tw-ring-offset-color: transparent; + } + + .sm\:ring-offset-current{ + --tw-ring-offset-color: currentColor; + } + + .sm\:ring-offset-black{ + --tw-ring-offset-color: #000; + } + + .sm\:ring-offset-white{ + --tw-ring-offset-color: #fff; + } + + .sm\:ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; + } + + .sm\:ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; + } + + .sm\:ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; + } + + .sm\:ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; + } + + .sm\:ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; + } + + .sm\:ring-offset-gray-600{ + --tw-ring-offset-color: #718096; + } + + .sm\:ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; + } + + .sm\:ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; + } + + .sm\:ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; + } + + .sm\:ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; + } + + .sm\:ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; + } + + .sm\:ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; + } + + .sm\:ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; + } + + .sm\:ring-offset-red-500{ + --tw-ring-offset-color: #f56565; + } + + .sm\:ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; + } + + .sm\:ring-offset-red-700{ + --tw-ring-offset-color: #c53030; + } + + .sm\:ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; + } + + .sm\:ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; + } + + .sm\:ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; + } + + .sm\:ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; + } + + .sm\:ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; + } + + .sm\:ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; + } + + .sm\:ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; + } + + .sm\:ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; + } + + .sm\:ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; + } + + .sm\:ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; + } + + .sm\:ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; + } + + .sm\:ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; + } + + .sm\:ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; + } + + .sm\:ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; + } + + .sm\:ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; + } + + .sm\:ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; + } + + .sm\:ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; + } + + .sm\:ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; + } + + .sm\:ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; + } + + .sm\:ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; + } + + .sm\:ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; + } + + .sm\:ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; + } + + .sm\:ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; + } + + .sm\:ring-offset-green-400{ + --tw-ring-offset-color: #68d391; + } + + .sm\:ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; + } + + .sm\:ring-offset-green-600{ + --tw-ring-offset-color: #38a169; + } + + .sm\:ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; + } + + .sm\:ring-offset-green-800{ + --tw-ring-offset-color: #276749; + } + + .sm\:ring-offset-green-900{ + --tw-ring-offset-color: #22543d; + } + + .sm\:ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; + } + + .sm\:ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; + } + + .sm\:ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; + } + + .sm\:ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; + } + + .sm\:ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; + } + + .sm\:ring-offset-teal-600{ + --tw-ring-offset-color: #319795; + } + + .sm\:ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; + } + + .sm\:ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; + } + + .sm\:ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; + } + + .sm\:ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; + } + + .sm\:ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; + } + + .sm\:ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; + } + + .sm\:ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; + } + + .sm\:ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; + } + + .sm\:ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; + } + + .sm\:ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; + } + + .sm\:ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; + } + + .sm\:ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; + } + + .sm\:ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; + } + + .sm\:ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; + } + + .sm\:ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; + } + + .sm\:ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; + } + + .sm\:ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; + } + + .sm\:ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; + } + + .sm\:ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; + } + + .sm\:ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; + } + + .sm\:ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; + } + + .sm\:ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; + } + + .sm\:ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; + } + + .sm\:ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; + } + + .sm\:ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; + } + + .sm\:ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; + } + + .sm\:ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; + } + + .sm\:ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; + } + + .sm\:ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; + } + + .sm\:ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; + } + + .sm\:ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; + } + + .sm\:ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; + } + + .sm\:ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; + } + + .sm\:ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; + } + + .sm\:ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; + } + + .sm\:ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; + } + + .sm\:ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; + } + + .sm\:ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; + } + + .sm\:ring-offset-pink-900{ + --tw-ring-offset-color: #702459; + } + + .sm\:focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; + } + + .sm\:focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; + } + + .sm\:focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; + } + + .sm\:focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; + } + + .sm\:focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; + } + + .sm\:focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; + } + + .sm\:focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; + } + + .sm\:focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; + } + + .sm\:focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; + } + + .sm\:focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; + } + + .sm\:focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; + } + + .sm\:focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; + } + + .sm\:focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; + } + + .sm\:focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; + } + + .sm\:focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; + } + + .sm\:focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; + } + + .sm\:focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; + } + + .sm\:focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; + } + + .sm\:focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; + } + + .sm\:focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; + } + + .sm\:focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; + } + + .sm\:focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; + } + + .sm\:focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; + } + + .sm\:focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; + } + + .sm\:focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; + } + + .sm\:focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; + } + + .sm\:focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; + } + + .sm\:focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; + } + + .sm\:focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; + } + + .sm\:focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; + } + + .sm\:focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; + } + + .sm\:focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; + } + + .sm\:focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; + } + + .sm\:focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; + } + + .sm\:focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; + } + + .sm\:focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; + } + + .sm\:focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; + } + + .sm\:focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; + } + + .sm\:focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; + } + + .sm\:focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; + } + + .sm\:focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; + } + + .sm\:focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; + } + + .sm\:focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; + } + + .sm\:focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; + } + + .sm\:focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; + } + + .sm\:focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; + } + + .sm\:focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; + } + + .sm\:focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; + } + + .sm\:focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; + } + + .sm\:focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; + } + + .sm\:focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; + } + + .sm\:focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; + } + + .sm\:focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; + } + + .sm\:focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; + } + + .sm\:focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; + } + + .sm\:focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; + } + + .sm\:focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; + } + + .sm\:focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; + } + + .sm\:focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; + } + + .sm\:focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; + } + + .sm\:focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; + } + + .sm\:focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; + } + + .sm\:focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; + } + + .sm\:focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; + } + + .sm\:focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; + } + + .sm\:focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; + } + + .sm\:focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; + } + + .sm\:focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; + } + + .sm\:focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; + } + + .sm\:focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; + } + + .sm\:focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; + } + + .sm\:focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; + } + + .sm\:focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; + } + + .sm\:focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; + } + + .sm\:focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; + } + + .sm\:focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; + } + + .sm\:focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; + } + + .sm\:focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; + } + + .sm\:focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; + } + + .sm\:focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; + } + + .sm\:focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; + } + + .sm\:focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; + } + + .sm\:focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; + } + + .sm\:focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; + } + + .sm\:focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; + } + + .sm\:focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; + } + + .sm\:focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; + } + + .sm\:focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; + } + + .sm\:focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; + } + + .sm\:focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; + } + + .sm\:focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; + } + + .sm\:focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; + } + + .sm\:focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; + } + + .sm\:focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; + } + + .sm\:focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; + } + + .sm\:focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; + } + + .sm\:focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; + } + + .sm\:focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; + } + + .sm\:focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; + } + + .sm\:focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; + } + + .sm\:focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; + } + + .sm\:focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; + } + + .sm\:focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; + } + + .sm\:focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; + } + + .sm\:focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; + } + + .sm\:focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; + } + + .sm\:focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; + } + + .sm\:focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; + } + + .sm\:focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; + } + + .sm\:focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; + } + + .sm\:focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; + } + + .sm\:focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; + } + + .sm\:focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; + } + + .sm\:focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; + } + + .sm\:focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; + } + + .sm\:focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; + } + + .sm\:focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; + } + + .sm\:focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; + } + + .sm\:focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; + } + + .sm\:focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; + } + + .sm\:focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; + } + + .sm\:focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; + } + + .sm\:focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; + } + + .sm\:focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; + } + + .sm\:focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; + } + + .sm\:focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; + } + + .sm\:focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; + } + + .sm\:focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; + } + + .sm\:focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; + } + + .sm\:focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; + } + + .sm\:focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; + } + + .sm\:focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; + } + + .sm\:focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; + } + + .sm\:focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; + } + + .sm\:focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; + } + + .sm\:focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; + } + + .sm\:focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; + } + + .sm\:focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; + } + + .sm\:focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; + } + + .sm\:focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; + } + + .sm\:focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; + } + + .sm\:focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; + } + + .sm\:focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; + } + + .sm\:focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; + } + + .sm\:focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; + } + + .sm\:focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; + } + + .sm\:focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; + } + + .sm\:focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; + } + + .sm\:focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; + } + + .sm\:focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; + } + + .sm\:focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; + } + + .sm\:focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; + } + + .sm\:focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; + } + + .sm\:focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; + } + + .sm\:focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; + } + + .sm\:focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; + } + + .sm\:focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; + } + + .sm\:focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; + } + + .sm\:focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; + } + + .sm\:focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; + } + + .sm\:focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; + } + + .sm\:focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; + } + + .sm\:focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; + } + + .sm\:focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; + } + + .sm\:focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; + } + + .sm\:focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; + } + + .sm\:focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; + } + + .sm\:focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; + } + + .sm\:focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; + } + + .sm\:focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; + } + + .sm\:focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; + } + + .sm\:focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; + } + + .sm\:focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; + } + + .sm\:focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; + } + + .sm\:focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; + } + + .sm\:focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; + } + + .sm\:focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; + } + + .sm\:focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; + } + + .sm\:focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; + } + + .sm\:focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; + } + + .sm\:focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; + } + + .sm\:focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; + } + + .sm\:focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; + } + + .sm\:focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; + } + + .sm\:focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; + } + + .sm\:focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; + } + + .sm\:focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; + } + + .sm\:focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; + } + + .sm\:filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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); + } + + .sm\:filter-none{ + filter: none; + } + + .sm\:blur-0{ + --tw-blur: blur(0); + } + + .sm\:blur-none{ + --tw-blur: blur(0); + } + + .sm\:blur-sm{ + --tw-blur: blur(4px); + } + + .sm\:blur{ + --tw-blur: blur(8px); + } + + .sm\:blur-md{ + --tw-blur: blur(12px); + } + + .sm\:blur-lg{ + --tw-blur: blur(16px); + } + + .sm\:blur-xl{ + --tw-blur: blur(24px); + } + + .sm\:blur-2xl{ + --tw-blur: blur(40px); + } + + .sm\:blur-3xl{ + --tw-blur: blur(64px); + } + + .sm\:brightness-0{ + --tw-brightness: brightness(0); + } + + .sm\:brightness-50{ + --tw-brightness: brightness(.5); + } + + .sm\:brightness-75{ + --tw-brightness: brightness(.75); + } + + .sm\:brightness-90{ + --tw-brightness: brightness(.9); + } + + .sm\:brightness-95{ + --tw-brightness: brightness(.95); + } + + .sm\:brightness-100{ + --tw-brightness: brightness(1); + } + + .sm\:brightness-105{ + --tw-brightness: brightness(1.05); + } + + .sm\:brightness-110{ + --tw-brightness: brightness(1.1); + } + + .sm\:brightness-125{ + --tw-brightness: brightness(1.25); + } + + .sm\:brightness-150{ + --tw-brightness: brightness(1.5); + } + + .sm\:brightness-200{ + --tw-brightness: brightness(2); + } + + .sm\:contrast-0{ + --tw-contrast: contrast(0); + } + + .sm\:contrast-50{ + --tw-contrast: contrast(.5); + } + + .sm\:contrast-75{ + --tw-contrast: contrast(.75); + } + + .sm\:contrast-100{ + --tw-contrast: contrast(1); + } + + .sm\:contrast-125{ + --tw-contrast: contrast(1.25); + } + + .sm\:contrast-150{ + --tw-contrast: contrast(1.5); + } + + .sm\:contrast-200{ + --tw-contrast: contrast(2); + } + + .sm\:drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + } + + .sm\:drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + } + + .sm\:drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + } + + .sm\:drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + } + + .sm\:drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + } + + .sm\:drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + } + + .sm\:drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); + } + + .sm\:grayscale-0{ + --tw-grayscale: grayscale(0); + } + + .sm\:grayscale{ + --tw-grayscale: grayscale(100%); + } + + .sm\:hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); + } + + .sm\:hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); + } + + .sm\:hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); + } + + .sm\:hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); + } + + .sm\:hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); + } + + .sm\:hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); + } + + .sm\:-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); + } + + .sm\:-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); + } + + .sm\:-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); + } + + .sm\:-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); + } + + .sm\:-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); + } + + .sm\:invert-0{ + --tw-invert: invert(0); + } + + .sm\:invert{ + --tw-invert: invert(100%); + } + + .sm\:saturate-0{ + --tw-saturate: saturate(0); + } + + .sm\:saturate-50{ + --tw-saturate: saturate(.5); + } + + .sm\:saturate-100{ + --tw-saturate: saturate(1); + } + + .sm\:saturate-150{ + --tw-saturate: saturate(1.5); + } + + .sm\:saturate-200{ + --tw-saturate: saturate(2); + } + + .sm\:sepia-0{ + --tw-sepia: sepia(0); + } + + .sm\:sepia{ + --tw-sepia: sepia(100%); + } + + .sm\:backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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); + } + + .sm\:backdrop-filter-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; + } + + .sm\:backdrop-blur-0{ + --tw-backdrop-blur: blur(0); + } + + .sm\:backdrop-blur-none{ + --tw-backdrop-blur: blur(0); + } + + .sm\:backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); + } + + .sm\:backdrop-blur{ + --tw-backdrop-blur: blur(8px); + } + + .sm\:backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); + } + + .sm\:backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); + } + + .sm\:backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); + } + + .sm\:backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); + } + + .sm\:backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); + } + + .sm\:backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); + } + + .sm\:backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); + } + + .sm\:backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); + } + + .sm\:backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); + } + + .sm\:backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); + } + + .sm\:backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); + } + + .sm\:backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); + } + + .sm\:backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); + } + + .sm\:backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); + } + + .sm\:backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); + } + + .sm\:backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); + } + + .sm\:backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); + } + + .sm\:backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); + } + + .sm\:backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); + } + + .sm\:backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); + } + + .sm\:backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); + } + + .sm\:backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); + } + + .sm\:backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); + } + + .sm\:backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); + } + + .sm\:backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); + } + + .sm\:backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); + } + + .sm\:backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); + } + + .sm\:backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); + } + + .sm\:backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); + } + + .sm\:backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); + } + + .sm\:backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); + } + + .sm\:-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); + } + + .sm\:-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); + } + + .sm\:-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); + } + + .sm\:-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); + } + + .sm\:-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); + } + + .sm\:backdrop-invert-0{ + --tw-backdrop-invert: invert(0); + } + + .sm\:backdrop-invert{ + --tw-backdrop-invert: invert(100%); + } + + .sm\:backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); + } + + .sm\:backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); + } + + .sm\:backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); + } + + .sm\:backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); + } + + .sm\:backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); + } + + .sm\:backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); + } + + .sm\:backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); + } + + .sm\:backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); + } + + .sm\:backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); + } + + .sm\:backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); + } + + .sm\:backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); + } + + .sm\:backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); + } + + .sm\:backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); + } + + .sm\:backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); + } + + .sm\:backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); + } + + .sm\:backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); + } + + .sm\:backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); + } + + .sm\:backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); + } + + .sm\:backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); + } + + .sm\:backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); + } + + .sm\:backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); + } + + .sm\:backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); + } + + .sm\:transition-none{ + transition-property: none; + } + + .sm\:transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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; + } + + .sm\:transition-colors{ + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-opacity{ + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-shadow{ + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-transform{ + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:delay-75{ + transition-delay: 75ms; + } + + .sm\:delay-100{ + transition-delay: 100ms; + } + + .sm\:delay-150{ + transition-delay: 150ms; + } + + .sm\:delay-200{ + transition-delay: 200ms; + } + + .sm\:delay-300{ + transition-delay: 300ms; + } + + .sm\:delay-500{ + transition-delay: 500ms; + } + + .sm\:delay-700{ + transition-delay: 700ms; + } + + .sm\:delay-1000{ + transition-delay: 1000ms; + } + + .sm\:duration-75{ + transition-duration: 75ms; + } + + .sm\:duration-100{ + transition-duration: 100ms; + } + + .sm\:duration-150{ + transition-duration: 150ms; + } + + .sm\:duration-200{ + transition-duration: 200ms; + } + + .sm\:duration-300{ + transition-duration: 300ms; + } + + .sm\:duration-500{ + transition-duration: 500ms; + } + + .sm\:duration-700{ + transition-duration: 700ms; + } + + .sm\:duration-1000{ + transition-duration: 1000ms; + } + + .sm\:ease-linear{ + transition-timing-function: linear; + } + + .sm\:ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .sm\:ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .sm\:ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} + +@media (min-width: 768px){ + .md\:container{ + width: 100%; + } + + @media (min-width: 640px){ + .md\:container{ + max-width: 640px; + } + } + + @media (min-width: 768px){ + .md\:container{ + max-width: 768px; + } + } + + @media (min-width: 1024px){ + .md\:container{ + max-width: 1024px; + } + } + + @media (min-width: 1280px){ + .md\:container{ + max-width: 1280px; + } + } + + @media (min-width: 1536px){ + .md\:container{ + max-width: 1536px; + } + } + + .md\: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; + } + + .md\:not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:pointer-events-none{ + pointer-events: none; + } + + .md\:pointer-events-auto{ + pointer-events: auto; + } + + .md\:visible{ + visibility: visible; + } + + .md\:invisible{ + visibility: hidden; + } + + .md\:static{ + position: static; + } + + .md\:fixed{ + position: fixed; + } + + .md\:absolute{ + position: absolute; + } + + .md\:relative{ + position: relative; + } + + .md\:sticky{ + position: -webkit-sticky; + position: sticky; + } + + .md\:inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .md\:inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .md\:inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .md\:inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .md\:inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .md\:inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .md\:inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .md\:inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .md\:inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .md\:inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .md\:inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .md\:inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .md\:inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .md\:inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .md\:inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .md\:inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .md\:inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .md\:inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .md\:inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .md\:inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .md\:inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .md\:inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .md\:inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .md\:inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .md\:inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .md\:inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .md\:inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .md\:inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .md\:inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .md\:inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .md\:inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .md\:inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .md\:inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .md\:inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .md\:inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .md\:-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .md\:-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .md\:-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .md\:-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .md\:-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .md\:-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .md\:-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .md\:-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .md\:-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .md\:-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .md\:-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .md\:-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .md\:-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .md\:-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .md\:-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .md\:-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .md\:-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .md\:-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .md\:-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .md\:-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .md\:-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .md\:-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .md\:-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .md\:-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .md\:-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .md\:-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .md\:-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .md\:-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .md\:-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .md\:-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .md\:-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .md\:-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .md\:-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .md\:inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .md\:inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .md\:inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .md\:inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .md\:inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .md\:-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .md\:-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .md\:-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .md\:-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .md\:-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; + } + + .md\:inset-x-0{ + left: 0px; + right: 0px; + } + + .md\:inset-x-1{ + left: 0.25rem; + right: 0.25rem; + } + + .md\:inset-x-2{ + left: 0.5rem; + right: 0.5rem; + } + + .md\:inset-x-3{ + left: 0.75rem; + right: 0.75rem; + } + + .md\:inset-x-4{ + left: 1rem; + right: 1rem; + } + + .md\:inset-x-5{ + left: 1.25rem; + right: 1.25rem; + } + + .md\:inset-x-6{ + left: 1.5rem; + right: 1.5rem; + } + + .md\:inset-x-7{ + left: 1.75rem; + right: 1.75rem; + } + + .md\:inset-x-8{ + left: 2rem; + right: 2rem; + } + + .md\:inset-x-9{ + left: 2.25rem; + right: 2.25rem; + } + + .md\:inset-x-10{ + left: 2.5rem; + right: 2.5rem; + } + + .md\:inset-x-11{ + left: 2.75rem; + right: 2.75rem; + } + + .md\:inset-x-12{ + left: 3rem; + right: 3rem; + } + + .md\:inset-x-14{ + left: 3.5rem; + right: 3.5rem; + } + + .md\:inset-x-16{ + left: 4rem; + right: 4rem; + } + + .md\:inset-x-20{ + left: 5rem; + right: 5rem; + } + + .md\:inset-x-24{ + left: 6rem; + right: 6rem; + } + + .md\:inset-x-28{ + left: 7rem; + right: 7rem; + } + + .md\:inset-x-32{ + left: 8rem; + right: 8rem; + } + + .md\:inset-x-36{ + left: 9rem; + right: 9rem; + } + + .md\:inset-x-40{ + left: 10rem; + right: 10rem; + } + + .md\:inset-x-44{ + left: 11rem; + right: 11rem; + } + + .md\:inset-x-48{ + left: 12rem; + right: 12rem; + } + + .md\:inset-x-52{ + left: 13rem; + right: 13rem; + } + + .md\:inset-x-56{ + left: 14rem; + right: 14rem; + } + + .md\:inset-x-60{ + left: 15rem; + right: 15rem; + } + + .md\:inset-x-64{ + left: 16rem; + right: 16rem; + } + + .md\:inset-x-72{ + left: 18rem; + right: 18rem; + } + + .md\:inset-x-80{ + left: 20rem; + right: 20rem; + } + + .md\:inset-x-96{ + left: 24rem; + right: 24rem; + } + + .md\:inset-x-auto{ + left: auto; + right: auto; + } + + .md\:inset-x-px{ + left: 1px; + right: 1px; + } + + .md\:inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; + } + + .md\:inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; + } + + .md\:inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; + } + + .md\:inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; + } + + .md\:-inset-x-0{ + left: 0px; + right: 0px; + } + + .md\:-inset-x-1{ + left: -0.25rem; + right: -0.25rem; + } + + .md\:-inset-x-2{ + left: -0.5rem; + right: -0.5rem; + } + + .md\:-inset-x-3{ + left: -0.75rem; + right: -0.75rem; + } + + .md\:-inset-x-4{ + left: -1rem; + right: -1rem; + } + + .md\:-inset-x-5{ + left: -1.25rem; + right: -1.25rem; + } + + .md\:-inset-x-6{ + left: -1.5rem; + right: -1.5rem; + } + + .md\:-inset-x-7{ + left: -1.75rem; + right: -1.75rem; + } + + .md\:-inset-x-8{ + left: -2rem; + right: -2rem; + } + + .md\:-inset-x-9{ + left: -2.25rem; + right: -2.25rem; + } + + .md\:-inset-x-10{ + left: -2.5rem; + right: -2.5rem; + } + + .md\:-inset-x-11{ + left: -2.75rem; + right: -2.75rem; + } + + .md\:-inset-x-12{ + left: -3rem; + right: -3rem; + } + + .md\:-inset-x-14{ + left: -3.5rem; + right: -3.5rem; + } + + .md\:-inset-x-16{ + left: -4rem; + right: -4rem; + } + + .md\:-inset-x-20{ + left: -5rem; + right: -5rem; + } + + .md\:-inset-x-24{ + left: -6rem; + right: -6rem; + } + + .md\:-inset-x-28{ + left: -7rem; + right: -7rem; + } + + .md\:-inset-x-32{ + left: -8rem; + right: -8rem; + } + + .md\:-inset-x-36{ + left: -9rem; + right: -9rem; + } + + .md\:-inset-x-40{ + left: -10rem; + right: -10rem; + } + + .md\:-inset-x-44{ + left: -11rem; + right: -11rem; + } + + .md\:-inset-x-48{ + left: -12rem; + right: -12rem; + } + + .md\:-inset-x-52{ + left: -13rem; + right: -13rem; + } + + .md\:-inset-x-56{ + left: -14rem; + right: -14rem; + } + + .md\:-inset-x-60{ + left: -15rem; + right: -15rem; + } + + .md\:-inset-x-64{ + left: -16rem; + right: -16rem; + } + + .md\:-inset-x-72{ + left: -18rem; + right: -18rem; + } + + .md\:-inset-x-80{ + left: -20rem; + right: -20rem; + } + + .md\:-inset-x-96{ + left: -24rem; + right: -24rem; + } + + .md\:-inset-x-px{ + left: -1px; + right: -1px; + } + + .md\:-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; + } + + .md\:-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; + } + + .md\:-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; + } + + .md\:-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; + } + + .md\:inset-x-1\/2{ + left: 50%; + right: 50%; + } + + .md\:inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; + } + + .md\:inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; + } + + .md\:inset-x-1\/4{ + left: 25%; + right: 25%; + } + + .md\:inset-x-2\/4{ + left: 50%; + right: 50%; + } + + .md\:inset-x-3\/4{ + left: 75%; + right: 75%; + } + + .md\:inset-x-full{ + left: 100%; + right: 100%; + } + + .md\:-inset-x-1\/2{ + left: -50%; + right: -50%; + } + + .md\:-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; + } + + .md\:-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; + } + + .md\:-inset-x-1\/4{ + left: -25%; + right: -25%; + } + + .md\:-inset-x-2\/4{ + left: -50%; + right: -50%; + } + + .md\:-inset-x-3\/4{ + left: -75%; + right: -75%; + } + + .md\:-inset-x-full{ + left: -100%; + right: -100%; + } + + .md\:inset-x-5vw{ + left: 5vw; + right: 5vw; + } + + .md\:inset-y-0{ + top: 0px; + bottom: 0px; + } + + .md\:inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; + } + + .md\:inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; + } + + .md\:inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; + } + + .md\:inset-y-4{ + top: 1rem; + bottom: 1rem; + } + + .md\:inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; + } + + .md\:inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; + } + + .md\:inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; + } + + .md\:inset-y-8{ + top: 2rem; + bottom: 2rem; + } + + .md\:inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; + } + + .md\:inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; + } + + .md\:inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; + } + + .md\:inset-y-12{ + top: 3rem; + bottom: 3rem; + } + + .md\:inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; + } + + .md\:inset-y-16{ + top: 4rem; + bottom: 4rem; + } + + .md\:inset-y-20{ + top: 5rem; + bottom: 5rem; + } + + .md\:inset-y-24{ + top: 6rem; + bottom: 6rem; + } + + .md\:inset-y-28{ + top: 7rem; + bottom: 7rem; + } + + .md\:inset-y-32{ + top: 8rem; + bottom: 8rem; + } + + .md\:inset-y-36{ + top: 9rem; + bottom: 9rem; + } + + .md\:inset-y-40{ + top: 10rem; + bottom: 10rem; + } + + .md\:inset-y-44{ + top: 11rem; + bottom: 11rem; + } + + .md\:inset-y-48{ + top: 12rem; + bottom: 12rem; + } + + .md\:inset-y-52{ + top: 13rem; + bottom: 13rem; + } + + .md\:inset-y-56{ + top: 14rem; + bottom: 14rem; + } + + .md\:inset-y-60{ + top: 15rem; + bottom: 15rem; + } + + .md\:inset-y-64{ + top: 16rem; + bottom: 16rem; + } + + .md\:inset-y-72{ + top: 18rem; + bottom: 18rem; + } + + .md\:inset-y-80{ + top: 20rem; + bottom: 20rem; + } + + .md\:inset-y-96{ + top: 24rem; + bottom: 24rem; + } + + .md\:inset-y-auto{ + top: auto; + bottom: auto; + } + + .md\:inset-y-px{ + top: 1px; + bottom: 1px; + } + + .md\:inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; + } + + .md\:inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; + } + + .md\:inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; + } + + .md\:inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; + } + + .md\:-inset-y-0{ + top: 0px; + bottom: 0px; + } + + .md\:-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; + } + + .md\:-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; + } + + .md\:-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; + } + + .md\:-inset-y-4{ + top: -1rem; + bottom: -1rem; + } + + .md\:-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; + } + + .md\:-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; + } + + .md\:-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; + } + + .md\:-inset-y-8{ + top: -2rem; + bottom: -2rem; + } + + .md\:-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; + } + + .md\:-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; + } + + .md\:-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; + } + + .md\:-inset-y-12{ + top: -3rem; + bottom: -3rem; + } + + .md\:-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; + } + + .md\:-inset-y-16{ + top: -4rem; + bottom: -4rem; + } + + .md\:-inset-y-20{ + top: -5rem; + bottom: -5rem; + } + + .md\:-inset-y-24{ + top: -6rem; + bottom: -6rem; + } + + .md\:-inset-y-28{ + top: -7rem; + bottom: -7rem; + } + + .md\:-inset-y-32{ + top: -8rem; + bottom: -8rem; + } + + .md\:-inset-y-36{ + top: -9rem; + bottom: -9rem; + } + + .md\:-inset-y-40{ + top: -10rem; + bottom: -10rem; + } + + .md\:-inset-y-44{ + top: -11rem; + bottom: -11rem; + } + + .md\:-inset-y-48{ + top: -12rem; + bottom: -12rem; + } + + .md\:-inset-y-52{ + top: -13rem; + bottom: -13rem; + } + + .md\:-inset-y-56{ + top: -14rem; + bottom: -14rem; + } + + .md\:-inset-y-60{ + top: -15rem; + bottom: -15rem; + } + + .md\:-inset-y-64{ + top: -16rem; + bottom: -16rem; + } + + .md\:-inset-y-72{ + top: -18rem; + bottom: -18rem; + } + + .md\:-inset-y-80{ + top: -20rem; + bottom: -20rem; + } + + .md\:-inset-y-96{ + top: -24rem; + bottom: -24rem; + } + + .md\:-inset-y-px{ + top: -1px; + bottom: -1px; + } + + .md\:-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; + } + + .md\:-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; + } + + .md\:-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; + } + + .md\:-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; + } + + .md\:inset-y-1\/2{ + top: 50%; + bottom: 50%; + } + + .md\:inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; + } + + .md\:inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; + } + + .md\:inset-y-1\/4{ + top: 25%; + bottom: 25%; + } + + .md\:inset-y-2\/4{ + top: 50%; + bottom: 50%; + } + + .md\:inset-y-3\/4{ + top: 75%; + bottom: 75%; + } + + .md\:inset-y-full{ + top: 100%; + bottom: 100%; + } + + .md\:-inset-y-1\/2{ + top: -50%; + bottom: -50%; + } + + .md\:-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; + } + + .md\:-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; + } + + .md\:-inset-y-1\/4{ + top: -25%; + bottom: -25%; + } + + .md\:-inset-y-2\/4{ + top: -50%; + bottom: -50%; + } + + .md\:-inset-y-3\/4{ + top: -75%; + bottom: -75%; + } + + .md\:-inset-y-full{ + top: -100%; + bottom: -100%; + } + + .md\:inset-y-5vw{ + top: 5vw; + bottom: 5vw; + } + + .md\:top-0{ + top: 0px; + } + + .md\:top-1{ + top: 0.25rem; + } + + .md\:top-2{ + top: 0.5rem; + } + + .md\:top-3{ + top: 0.75rem; + } + + .md\:top-4{ + top: 1rem; + } + + .md\:top-5{ + top: 1.25rem; + } + + .md\:top-6{ + top: 1.5rem; + } + + .md\:top-7{ + top: 1.75rem; + } + + .md\:top-8{ + top: 2rem; + } + + .md\:top-9{ + top: 2.25rem; + } + + .md\:top-10{ + top: 2.5rem; + } + + .md\:top-11{ + top: 2.75rem; + } + + .md\:top-12{ + top: 3rem; + } + + .md\:top-14{ + top: 3.5rem; + } + + .md\:top-16{ + top: 4rem; + } + + .md\:top-20{ + top: 5rem; + } + + .md\:top-24{ + top: 6rem; + } + + .md\:top-28{ + top: 7rem; + } + + .md\:top-32{ + top: 8rem; + } + + .md\:top-36{ + top: 9rem; + } + + .md\:top-40{ + top: 10rem; + } + + .md\:top-44{ + top: 11rem; + } + + .md\:top-48{ + top: 12rem; + } + + .md\:top-52{ + top: 13rem; + } + + .md\:top-56{ + top: 14rem; + } + + .md\:top-60{ + top: 15rem; + } + + .md\:top-64{ + top: 16rem; + } + + .md\:top-72{ + top: 18rem; + } + + .md\:top-80{ + top: 20rem; + } + + .md\:top-96{ + top: 24rem; + } + + .md\:top-auto{ + top: auto; + } + + .md\:top-px{ + top: 1px; + } + + .md\:top-0\.5{ + top: 0.125rem; + } + + .md\:top-1\.5{ + top: 0.375rem; + } + + .md\:top-2\.5{ + top: 0.625rem; + } + + .md\:top-3\.5{ + top: 0.875rem; + } + + .md\:-top-0{ + top: 0px; + } + + .md\:-top-1{ + top: -0.25rem; + } + + .md\:-top-2{ + top: -0.5rem; + } + + .md\:-top-3{ + top: -0.75rem; + } + + .md\:-top-4{ + top: -1rem; + } + + .md\:-top-5{ + top: -1.25rem; + } + + .md\:-top-6{ + top: -1.5rem; + } + + .md\:-top-7{ + top: -1.75rem; + } + + .md\:-top-8{ + top: -2rem; + } + + .md\:-top-9{ + top: -2.25rem; + } + + .md\:-top-10{ + top: -2.5rem; + } + + .md\:-top-11{ + top: -2.75rem; + } + + .md\:-top-12{ + top: -3rem; + } + + .md\:-top-14{ + top: -3.5rem; + } + + .md\:-top-16{ + top: -4rem; + } + + .md\:-top-20{ + top: -5rem; + } + + .md\:-top-24{ + top: -6rem; + } + + .md\:-top-28{ + top: -7rem; + } + + .md\:-top-32{ + top: -8rem; + } + + .md\:-top-36{ + top: -9rem; + } + + .md\:-top-40{ + top: -10rem; + } + + .md\:-top-44{ + top: -11rem; + } + + .md\:-top-48{ + top: -12rem; + } + + .md\:-top-52{ + top: -13rem; + } + + .md\:-top-56{ + top: -14rem; + } + + .md\:-top-60{ + top: -15rem; + } + + .md\:-top-64{ + top: -16rem; + } + + .md\:-top-72{ + top: -18rem; + } + + .md\:-top-80{ + top: -20rem; + } + + .md\:-top-96{ + top: -24rem; + } + + .md\:-top-px{ + top: -1px; + } + + .md\:-top-0\.5{ + top: -0.125rem; + } + + .md\:-top-1\.5{ + top: -0.375rem; + } + + .md\:-top-2\.5{ + top: -0.625rem; + } + + .md\:-top-3\.5{ + top: -0.875rem; + } + + .md\:top-1\/2{ + top: 50%; + } + + .md\:top-1\/3{ + top: 33.333333%; + } + + .md\:top-2\/3{ + top: 66.666667%; + } + + .md\:top-1\/4{ + top: 25%; + } + + .md\:top-2\/4{ + top: 50%; + } + + .md\:top-3\/4{ + top: 75%; + } + + .md\:top-full{ + top: 100%; + } + + .md\:-top-1\/2{ + top: -50%; + } + + .md\:-top-1\/3{ + top: -33.333333%; + } + + .md\:-top-2\/3{ + top: -66.666667%; + } + + .md\:-top-1\/4{ + top: -25%; + } + + .md\:-top-2\/4{ + top: -50%; + } + + .md\:-top-3\/4{ + top: -75%; + } + + .md\:-top-full{ + top: -100%; + } + + .md\:top-5vw{ + top: 5vw; + } + + .md\:right-0{ + right: 0px; + } + + .md\:right-1{ + right: 0.25rem; + } + + .md\:right-2{ + right: 0.5rem; + } + + .md\:right-3{ + right: 0.75rem; + } + + .md\:right-4{ + right: 1rem; + } + + .md\:right-5{ + right: 1.25rem; + } + + .md\:right-6{ + right: 1.5rem; + } + + .md\:right-7{ + right: 1.75rem; + } + + .md\:right-8{ + right: 2rem; + } + + .md\:right-9{ + right: 2.25rem; + } + + .md\:right-10{ + right: 2.5rem; + } + + .md\:right-11{ + right: 2.75rem; + } + + .md\:right-12{ + right: 3rem; + } + + .md\:right-14{ + right: 3.5rem; + } + + .md\:right-16{ + right: 4rem; + } + + .md\:right-20{ + right: 5rem; + } + + .md\:right-24{ + right: 6rem; + } + + .md\:right-28{ + right: 7rem; + } + + .md\:right-32{ + right: 8rem; + } + + .md\:right-36{ + right: 9rem; + } + + .md\:right-40{ + right: 10rem; + } + + .md\:right-44{ + right: 11rem; + } + + .md\:right-48{ + right: 12rem; + } + + .md\:right-52{ + right: 13rem; + } + + .md\:right-56{ + right: 14rem; + } + + .md\:right-60{ + right: 15rem; + } + + .md\:right-64{ + right: 16rem; + } + + .md\:right-72{ + right: 18rem; + } + + .md\:right-80{ + right: 20rem; + } + + .md\:right-96{ + right: 24rem; + } + + .md\:right-auto{ + right: auto; + } + + .md\:right-px{ + right: 1px; + } + + .md\:right-0\.5{ + right: 0.125rem; + } + + .md\:right-1\.5{ + right: 0.375rem; + } + + .md\:right-2\.5{ + right: 0.625rem; + } + + .md\:right-3\.5{ + right: 0.875rem; + } + + .md\:-right-0{ + right: 0px; + } + + .md\:-right-1{ + right: -0.25rem; + } + + .md\:-right-2{ + right: -0.5rem; + } + + .md\:-right-3{ + right: -0.75rem; + } + + .md\:-right-4{ + right: -1rem; + } + + .md\:-right-5{ + right: -1.25rem; + } + + .md\:-right-6{ + right: -1.5rem; + } + + .md\:-right-7{ + right: -1.75rem; + } + + .md\:-right-8{ + right: -2rem; + } + + .md\:-right-9{ + right: -2.25rem; + } + + .md\:-right-10{ + right: -2.5rem; + } + + .md\:-right-11{ + right: -2.75rem; + } + + .md\:-right-12{ + right: -3rem; + } + + .md\:-right-14{ + right: -3.5rem; + } + + .md\:-right-16{ + right: -4rem; + } + + .md\:-right-20{ + right: -5rem; + } + + .md\:-right-24{ + right: -6rem; + } + + .md\:-right-28{ + right: -7rem; + } + + .md\:-right-32{ + right: -8rem; + } + + .md\:-right-36{ + right: -9rem; + } + + .md\:-right-40{ + right: -10rem; + } + + .md\:-right-44{ + right: -11rem; + } + + .md\:-right-48{ + right: -12rem; + } + + .md\:-right-52{ + right: -13rem; + } + + .md\:-right-56{ + right: -14rem; + } + + .md\:-right-60{ + right: -15rem; + } + + .md\:-right-64{ + right: -16rem; + } + + .md\:-right-72{ + right: -18rem; + } + + .md\:-right-80{ + right: -20rem; + } + + .md\:-right-96{ + right: -24rem; + } + + .md\:-right-px{ + right: -1px; + } + + .md\:-right-0\.5{ + right: -0.125rem; + } + + .md\:-right-1\.5{ + right: -0.375rem; + } + + .md\:-right-2\.5{ + right: -0.625rem; + } + + .md\:-right-3\.5{ + right: -0.875rem; + } + + .md\:right-1\/2{ + right: 50%; + } + + .md\:right-1\/3{ + right: 33.333333%; + } + + .md\:right-2\/3{ + right: 66.666667%; + } + + .md\:right-1\/4{ + right: 25%; + } + + .md\:right-2\/4{ + right: 50%; + } + + .md\:right-3\/4{ + right: 75%; + } + + .md\:right-full{ + right: 100%; + } + + .md\:-right-1\/2{ + right: -50%; + } + + .md\:-right-1\/3{ + right: -33.333333%; + } + + .md\:-right-2\/3{ + right: -66.666667%; + } + + .md\:-right-1\/4{ + right: -25%; + } + + .md\:-right-2\/4{ + right: -50%; + } + + .md\:-right-3\/4{ + right: -75%; + } + + .md\:-right-full{ + right: -100%; + } + + .md\:right-5vw{ + right: 5vw; + } + + .md\:bottom-0{ + bottom: 0px; + } + + .md\:bottom-1{ + bottom: 0.25rem; + } + + .md\:bottom-2{ + bottom: 0.5rem; + } + + .md\:bottom-3{ + bottom: 0.75rem; + } + + .md\:bottom-4{ + bottom: 1rem; + } + + .md\:bottom-5{ + bottom: 1.25rem; + } + + .md\:bottom-6{ + bottom: 1.5rem; + } + + .md\:bottom-7{ + bottom: 1.75rem; + } + + .md\:bottom-8{ + bottom: 2rem; + } + + .md\:bottom-9{ + bottom: 2.25rem; + } + + .md\:bottom-10{ + bottom: 2.5rem; + } + + .md\:bottom-11{ + bottom: 2.75rem; + } + + .md\:bottom-12{ + bottom: 3rem; + } + + .md\:bottom-14{ + bottom: 3.5rem; + } + + .md\:bottom-16{ + bottom: 4rem; + } + + .md\:bottom-20{ + bottom: 5rem; + } + + .md\:bottom-24{ + bottom: 6rem; + } + + .md\:bottom-28{ + bottom: 7rem; + } + + .md\:bottom-32{ + bottom: 8rem; + } + + .md\:bottom-36{ + bottom: 9rem; + } + + .md\:bottom-40{ + bottom: 10rem; + } + + .md\:bottom-44{ + bottom: 11rem; + } + + .md\:bottom-48{ + bottom: 12rem; + } + + .md\:bottom-52{ + bottom: 13rem; + } + + .md\:bottom-56{ + bottom: 14rem; + } + + .md\:bottom-60{ + bottom: 15rem; + } + + .md\:bottom-64{ + bottom: 16rem; + } + + .md\:bottom-72{ + bottom: 18rem; + } + + .md\:bottom-80{ + bottom: 20rem; + } + + .md\:bottom-96{ + bottom: 24rem; + } + + .md\:bottom-auto{ + bottom: auto; + } + + .md\:bottom-px{ + bottom: 1px; + } + + .md\:bottom-0\.5{ + bottom: 0.125rem; + } + + .md\:bottom-1\.5{ + bottom: 0.375rem; + } + + .md\:bottom-2\.5{ + bottom: 0.625rem; + } + + .md\:bottom-3\.5{ + bottom: 0.875rem; + } + + .md\:-bottom-0{ + bottom: 0px; + } + + .md\:-bottom-1{ + bottom: -0.25rem; + } + + .md\:-bottom-2{ + bottom: -0.5rem; + } + + .md\:-bottom-3{ + bottom: -0.75rem; + } + + .md\:-bottom-4{ + bottom: -1rem; + } + + .md\:-bottom-5{ + bottom: -1.25rem; + } + + .md\:-bottom-6{ + bottom: -1.5rem; + } + + .md\:-bottom-7{ + bottom: -1.75rem; + } + + .md\:-bottom-8{ + bottom: -2rem; + } + + .md\:-bottom-9{ + bottom: -2.25rem; + } + + .md\:-bottom-10{ + bottom: -2.5rem; + } + + .md\:-bottom-11{ + bottom: -2.75rem; + } + + .md\:-bottom-12{ + bottom: -3rem; + } + + .md\:-bottom-14{ + bottom: -3.5rem; + } + + .md\:-bottom-16{ + bottom: -4rem; + } + + .md\:-bottom-20{ + bottom: -5rem; + } + + .md\:-bottom-24{ + bottom: -6rem; + } + + .md\:-bottom-28{ + bottom: -7rem; + } + + .md\:-bottom-32{ + bottom: -8rem; + } + + .md\:-bottom-36{ + bottom: -9rem; + } + + .md\:-bottom-40{ + bottom: -10rem; + } + + .md\:-bottom-44{ + bottom: -11rem; + } + + .md\:-bottom-48{ + bottom: -12rem; + } + + .md\:-bottom-52{ + bottom: -13rem; + } + + .md\:-bottom-56{ + bottom: -14rem; + } + + .md\:-bottom-60{ + bottom: -15rem; + } + + .md\:-bottom-64{ + bottom: -16rem; + } + + .md\:-bottom-72{ + bottom: -18rem; + } + + .md\:-bottom-80{ + bottom: -20rem; + } + + .md\:-bottom-96{ + bottom: -24rem; + } + + .md\:-bottom-px{ + bottom: -1px; + } + + .md\:-bottom-0\.5{ + bottom: -0.125rem; + } + + .md\:-bottom-1\.5{ + bottom: -0.375rem; + } + + .md\:-bottom-2\.5{ + bottom: -0.625rem; + } + + .md\:-bottom-3\.5{ + bottom: -0.875rem; + } + + .md\:bottom-1\/2{ + bottom: 50%; + } + + .md\:bottom-1\/3{ + bottom: 33.333333%; + } + + .md\:bottom-2\/3{ + bottom: 66.666667%; + } + + .md\:bottom-1\/4{ + bottom: 25%; + } + + .md\:bottom-2\/4{ + bottom: 50%; + } + + .md\:bottom-3\/4{ + bottom: 75%; + } + + .md\:bottom-full{ + bottom: 100%; + } + + .md\:-bottom-1\/2{ + bottom: -50%; + } + + .md\:-bottom-1\/3{ + bottom: -33.333333%; + } + + .md\:-bottom-2\/3{ + bottom: -66.666667%; + } + + .md\:-bottom-1\/4{ + bottom: -25%; + } + + .md\:-bottom-2\/4{ + bottom: -50%; + } + + .md\:-bottom-3\/4{ + bottom: -75%; + } + + .md\:-bottom-full{ + bottom: -100%; + } + + .md\:bottom-5vw{ + bottom: 5vw; + } + + .md\:left-0{ + left: 0px; + } + + .md\:left-1{ + left: 0.25rem; + } + + .md\:left-2{ + left: 0.5rem; + } + + .md\:left-3{ + left: 0.75rem; + } + + .md\:left-4{ + left: 1rem; + } + + .md\:left-5{ + left: 1.25rem; + } + + .md\:left-6{ + left: 1.5rem; + } + + .md\:left-7{ + left: 1.75rem; + } + + .md\:left-8{ + left: 2rem; + } + + .md\:left-9{ + left: 2.25rem; + } + + .md\:left-10{ + left: 2.5rem; + } + + .md\:left-11{ + left: 2.75rem; + } + + .md\:left-12{ + left: 3rem; + } + + .md\:left-14{ + left: 3.5rem; + } + + .md\:left-16{ + left: 4rem; + } + + .md\:left-20{ + left: 5rem; + } + + .md\:left-24{ + left: 6rem; + } + + .md\:left-28{ + left: 7rem; + } + + .md\:left-32{ + left: 8rem; + } + + .md\:left-36{ + left: 9rem; + } + + .md\:left-40{ + left: 10rem; + } + + .md\:left-44{ + left: 11rem; + } + + .md\:left-48{ + left: 12rem; + } + + .md\:left-52{ + left: 13rem; + } + + .md\:left-56{ + left: 14rem; + } + + .md\:left-60{ + left: 15rem; + } + + .md\:left-64{ + left: 16rem; + } + + .md\:left-72{ + left: 18rem; + } + + .md\:left-80{ + left: 20rem; + } + + .md\:left-96{ + left: 24rem; + } + + .md\:left-auto{ + left: auto; + } + + .md\:left-px{ + left: 1px; + } + + .md\:left-0\.5{ + left: 0.125rem; + } + + .md\:left-1\.5{ + left: 0.375rem; + } + + .md\:left-2\.5{ + left: 0.625rem; + } + + .md\:left-3\.5{ + left: 0.875rem; + } + + .md\:-left-0{ + left: 0px; + } + + .md\:-left-1{ + left: -0.25rem; + } + + .md\:-left-2{ + left: -0.5rem; + } + + .md\:-left-3{ + left: -0.75rem; + } + + .md\:-left-4{ + left: -1rem; + } + + .md\:-left-5{ + left: -1.25rem; + } + + .md\:-left-6{ + left: -1.5rem; + } + + .md\:-left-7{ + left: -1.75rem; + } + + .md\:-left-8{ + left: -2rem; + } + + .md\:-left-9{ + left: -2.25rem; + } + + .md\:-left-10{ + left: -2.5rem; + } + + .md\:-left-11{ + left: -2.75rem; + } + + .md\:-left-12{ + left: -3rem; + } + + .md\:-left-14{ + left: -3.5rem; + } + + .md\:-left-16{ + left: -4rem; + } + + .md\:-left-20{ + left: -5rem; + } + + .md\:-left-24{ + left: -6rem; + } + + .md\:-left-28{ + left: -7rem; + } + + .md\:-left-32{ + left: -8rem; + } + + .md\:-left-36{ + left: -9rem; + } + + .md\:-left-40{ + left: -10rem; + } + + .md\:-left-44{ + left: -11rem; + } + + .md\:-left-48{ + left: -12rem; + } + + .md\:-left-52{ + left: -13rem; + } + + .md\:-left-56{ + left: -14rem; + } + + .md\:-left-60{ + left: -15rem; + } + + .md\:-left-64{ + left: -16rem; + } + + .md\:-left-72{ + left: -18rem; + } + + .md\:-left-80{ + left: -20rem; + } + + .md\:-left-96{ + left: -24rem; + } + + .md\:-left-px{ + left: -1px; + } + + .md\:-left-0\.5{ + left: -0.125rem; + } + + .md\:-left-1\.5{ + left: -0.375rem; + } + + .md\:-left-2\.5{ + left: -0.625rem; + } + + .md\:-left-3\.5{ + left: -0.875rem; + } + + .md\:left-1\/2{ + left: 50%; + } + + .md\:left-1\/3{ + left: 33.333333%; + } + + .md\:left-2\/3{ + left: 66.666667%; + } + + .md\:left-1\/4{ + left: 25%; + } + + .md\:left-2\/4{ + left: 50%; + } + + .md\:left-3\/4{ + left: 75%; + } + + .md\:left-full{ + left: 100%; + } + + .md\:-left-1\/2{ + left: -50%; + } + + .md\:-left-1\/3{ + left: -33.333333%; + } + + .md\:-left-2\/3{ + left: -66.666667%; + } + + .md\:-left-1\/4{ + left: -25%; + } + + .md\:-left-2\/4{ + left: -50%; + } + + .md\:-left-3\/4{ + left: -75%; + } + + .md\:-left-full{ + left: -100%; + } + + .md\:left-5vw{ + left: 5vw; + } + + .md\:isolate{ + isolation: isolate; + } + + .md\:isolation-auto{ + isolation: auto; + } + + .md\:z-0{ + z-index: 0; + } + + .md\:z-10{ + z-index: 10; + } + + .md\:z-20{ + z-index: 20; + } + + .md\:z-30{ + z-index: 30; + } + + .md\:z-40{ + z-index: 40; + } + + .md\:z-50{ + z-index: 50; + } + + .md\:z-auto{ + z-index: auto; + } + + .md\:focus-within\:z-0:focus-within{ + z-index: 0; + } + + .md\:focus-within\:z-10:focus-within{ + z-index: 10; + } + + .md\:focus-within\:z-20:focus-within{ + z-index: 20; + } + + .md\:focus-within\:z-30:focus-within{ + z-index: 30; + } + + .md\:focus-within\:z-40:focus-within{ + z-index: 40; + } + + .md\:focus-within\:z-50:focus-within{ + z-index: 50; + } + + .md\:focus-within\:z-auto:focus-within{ + z-index: auto; + } + + .md\:focus\:z-0:focus{ + z-index: 0; + } + + .md\:focus\:z-10:focus{ + z-index: 10; + } + + .md\:focus\:z-20:focus{ + z-index: 20; + } + + .md\:focus\:z-30:focus{ + z-index: 30; + } + + .md\:focus\:z-40:focus{ + z-index: 40; + } + + .md\:focus\:z-50:focus{ + z-index: 50; + } + + .md\:focus\:z-auto:focus{ + z-index: auto; + } + + .md\:order-1{ + order: 1; + } + + .md\:order-2{ + order: 2; + } + + .md\:order-3{ + order: 3; + } + + .md\:order-4{ + order: 4; + } + + .md\:order-5{ + order: 5; + } + + .md\:order-6{ + order: 6; + } + + .md\:order-7{ + order: 7; + } + + .md\:order-8{ + order: 8; + } + + .md\:order-9{ + order: 9; + } + + .md\:order-10{ + order: 10; + } + + .md\:order-11{ + order: 11; + } + + .md\:order-12{ + order: 12; + } + + .md\:order-first{ + order: -9999; + } + + .md\:order-last{ + order: 9999; + } + + .md\:order-none{ + order: 0; + } + + .md\:col-auto{ + grid-column: auto; + } + + .md\:col-span-1{ + grid-column: span 1 / span 1; + } + + .md\:col-span-2{ + grid-column: span 2 / span 2; + } + + .md\:col-span-3{ + grid-column: span 3 / span 3; + } + + .md\:col-span-4{ + grid-column: span 4 / span 4; + } + + .md\:col-span-5{ + grid-column: span 5 / span 5; + } + + .md\:col-span-6{ + grid-column: span 6 / span 6; + } + + .md\:col-span-7{ + grid-column: span 7 / span 7; + } + + .md\:col-span-8{ + grid-column: span 8 / span 8; + } + + .md\:col-span-9{ + grid-column: span 9 / span 9; + } + + .md\:col-span-10{ + grid-column: span 10 / span 10; + } + + .md\:col-span-11{ + grid-column: span 11 / span 11; + } + + .md\:col-span-12{ + grid-column: span 12 / span 12; + } + + .md\:col-span-full{ + grid-column: 1 / -1; + } + + .md\:col-start-1{ + grid-column-start: 1; + } + + .md\:col-start-2{ + grid-column-start: 2; + } + + .md\:col-start-3{ + grid-column-start: 3; + } + + .md\:col-start-4{ + grid-column-start: 4; + } + + .md\:col-start-5{ + grid-column-start: 5; + } + + .md\:col-start-6{ + grid-column-start: 6; + } + + .md\:col-start-7{ + grid-column-start: 7; + } + + .md\:col-start-8{ + grid-column-start: 8; + } + + .md\:col-start-9{ + grid-column-start: 9; + } + + .md\:col-start-10{ + grid-column-start: 10; + } + + .md\:col-start-11{ + grid-column-start: 11; + } + + .md\:col-start-12{ + grid-column-start: 12; + } + + .md\:col-start-13{ + grid-column-start: 13; + } + + .md\:col-start-auto{ + grid-column-start: auto; + } + + .md\:col-end-1{ + grid-column-end: 1; + } + + .md\:col-end-2{ + grid-column-end: 2; + } + + .md\:col-end-3{ + grid-column-end: 3; + } + + .md\:col-end-4{ + grid-column-end: 4; + } + + .md\:col-end-5{ + grid-column-end: 5; + } + + .md\:col-end-6{ + grid-column-end: 6; + } + + .md\:col-end-7{ + grid-column-end: 7; + } + + .md\:col-end-8{ + grid-column-end: 8; + } + + .md\:col-end-9{ + grid-column-end: 9; + } + + .md\:col-end-10{ + grid-column-end: 10; + } + + .md\:col-end-11{ + grid-column-end: 11; + } + + .md\:col-end-12{ + grid-column-end: 12; + } + + .md\:col-end-13{ + grid-column-end: 13; + } + + .md\:col-end-auto{ + grid-column-end: auto; + } + + .md\:row-auto{ + grid-row: auto; + } + + .md\:row-span-1{ + grid-row: span 1 / span 1; + } + + .md\:row-span-2{ + grid-row: span 2 / span 2; + } + + .md\:row-span-3{ + grid-row: span 3 / span 3; + } + + .md\:row-span-4{ + grid-row: span 4 / span 4; + } + + .md\:row-span-5{ + grid-row: span 5 / span 5; + } + + .md\:row-span-6{ + grid-row: span 6 / span 6; + } + + .md\:row-span-full{ + grid-row: 1 / -1; + } + + .md\:row-start-1{ + grid-row-start: 1; + } + + .md\:row-start-2{ + grid-row-start: 2; + } + + .md\:row-start-3{ + grid-row-start: 3; + } + + .md\:row-start-4{ + grid-row-start: 4; + } + + .md\:row-start-5{ + grid-row-start: 5; + } + + .md\:row-start-6{ + grid-row-start: 6; + } + + .md\:row-start-7{ + grid-row-start: 7; + } + + .md\:row-start-auto{ + grid-row-start: auto; + } + + .md\:row-end-1{ + grid-row-end: 1; + } + + .md\:row-end-2{ + grid-row-end: 2; + } + + .md\:row-end-3{ + grid-row-end: 3; + } + + .md\:row-end-4{ + grid-row-end: 4; + } + + .md\:row-end-5{ + grid-row-end: 5; + } + + .md\:row-end-6{ + grid-row-end: 6; + } + + .md\:row-end-7{ + grid-row-end: 7; + } + + .md\:row-end-auto{ + grid-row-end: auto; + } + + .md\:float-right{ + float: right; + } + + .md\:float-left{ + float: left; + } + + .md\:float-none{ + float: none; + } + + .md\:clear-left{ + clear: left; + } + + .md\:clear-right{ + clear: right; + } + + .md\:clear-both{ + clear: both; + } + + .md\:clear-none{ + clear: none; + } + + .md\:m-0{ + margin: 0px; + } + + .md\:m-1{ + margin: 0.25rem; + } + + .md\:m-2{ + margin: 0.5rem; + } + + .md\:m-3{ + margin: 0.75rem; + } + + .md\:m-4{ + margin: 1rem; + } + + .md\:m-5{ + margin: 1.25rem; + } + + .md\:m-6{ + margin: 1.5rem; + } + + .md\:m-7{ + margin: 1.75rem; + } + + .md\:m-8{ + margin: 2rem; + } + + .md\:m-9{ + margin: 2.25rem; + } + + .md\:m-10{ + margin: 2.5rem; + } + + .md\:m-11{ + margin: 2.75rem; + } + + .md\:m-12{ + margin: 3rem; + } + + .md\:m-14{ + margin: 3.5rem; + } + + .md\:m-16{ + margin: 4rem; + } + + .md\:m-20{ + margin: 5rem; + } + + .md\:m-24{ + margin: 6rem; + } + + .md\:m-28{ + margin: 7rem; + } + + .md\:m-32{ + margin: 8rem; + } + + .md\:m-36{ + margin: 9rem; + } + + .md\:m-40{ + margin: 10rem; + } + + .md\:m-44{ + margin: 11rem; + } + + .md\:m-48{ + margin: 12rem; + } + + .md\:m-52{ + margin: 13rem; + } + + .md\:m-56{ + margin: 14rem; + } + + .md\:m-60{ + margin: 15rem; + } + + .md\:m-64{ + margin: 16rem; + } + + .md\:m-72{ + margin: 18rem; + } + + .md\:m-80{ + margin: 20rem; + } + + .md\:m-96{ + margin: 24rem; + } + + .md\:m-auto{ + margin: auto; + } + + .md\:m-px{ + margin: 1px; + } + + .md\:m-0\.5{ + margin: 0.125rem; + } + + .md\:m-1\.5{ + margin: 0.375rem; + } + + .md\:m-2\.5{ + margin: 0.625rem; + } + + .md\:m-3\.5{ + margin: 0.875rem; + } + + .md\:-m-0{ + margin: 0px; + } + + .md\:-m-1{ + margin: -0.25rem; + } + + .md\:-m-2{ + margin: -0.5rem; + } + + .md\:-m-3{ + margin: -0.75rem; + } + + .md\:-m-4{ + margin: -1rem; + } + + .md\:-m-5{ + margin: -1.25rem; + } + + .md\:-m-6{ + margin: -1.5rem; + } + + .md\:-m-7{ + margin: -1.75rem; + } + + .md\:-m-8{ + margin: -2rem; + } + + .md\:-m-9{ + margin: -2.25rem; + } + + .md\:-m-10{ + margin: -2.5rem; + } + + .md\:-m-11{ + margin: -2.75rem; + } + + .md\:-m-12{ + margin: -3rem; + } + + .md\:-m-14{ + margin: -3.5rem; + } + + .md\:-m-16{ + margin: -4rem; + } + + .md\:-m-20{ + margin: -5rem; + } + + .md\:-m-24{ + margin: -6rem; + } + + .md\:-m-28{ + margin: -7rem; + } + + .md\:-m-32{ + margin: -8rem; + } + + .md\:-m-36{ + margin: -9rem; + } + + .md\:-m-40{ + margin: -10rem; + } + + .md\:-m-44{ + margin: -11rem; + } + + .md\:-m-48{ + margin: -12rem; + } + + .md\:-m-52{ + margin: -13rem; + } + + .md\:-m-56{ + margin: -14rem; + } + + .md\:-m-60{ + margin: -15rem; + } + + .md\:-m-64{ + margin: -16rem; + } + + .md\:-m-72{ + margin: -18rem; + } + + .md\:-m-80{ + margin: -20rem; + } + + .md\:-m-96{ + margin: -24rem; + } + + .md\:-m-px{ + margin: -1px; + } + + .md\:-m-0\.5{ + margin: -0.125rem; + } + + .md\:-m-1\.5{ + margin: -0.375rem; + } + + .md\:-m-2\.5{ + margin: -0.625rem; + } + + .md\:-m-3\.5{ + margin: -0.875rem; + } + + .md\:mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .md\:mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .md\:mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .md\:mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .md\:mx-4{ + margin-left: 1rem; + margin-right: 1rem; + } + + .md\:mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .md\:mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .md\:mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .md\:mx-8{ + margin-left: 2rem; + margin-right: 2rem; + } + + .md\:mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .md\:mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .md\:mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .md\:mx-12{ + margin-left: 3rem; + margin-right: 3rem; + } + + .md\:mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .md\:mx-16{ + margin-left: 4rem; + margin-right: 4rem; + } + + .md\:mx-20{ + margin-left: 5rem; + margin-right: 5rem; + } + + .md\:mx-24{ + margin-left: 6rem; + margin-right: 6rem; + } + + .md\:mx-28{ + margin-left: 7rem; + margin-right: 7rem; + } + + .md\:mx-32{ + margin-left: 8rem; + margin-right: 8rem; + } + + .md\:mx-36{ + margin-left: 9rem; + margin-right: 9rem; + } + + .md\:mx-40{ + margin-left: 10rem; + margin-right: 10rem; + } + + .md\:mx-44{ + margin-left: 11rem; + margin-right: 11rem; + } + + .md\:mx-48{ + margin-left: 12rem; + margin-right: 12rem; + } + + .md\:mx-52{ + margin-left: 13rem; + margin-right: 13rem; + } + + .md\:mx-56{ + margin-left: 14rem; + margin-right: 14rem; + } + + .md\:mx-60{ + margin-left: 15rem; + margin-right: 15rem; + } + + .md\:mx-64{ + margin-left: 16rem; + margin-right: 16rem; + } + + .md\:mx-72{ + margin-left: 18rem; + margin-right: 18rem; + } + + .md\:mx-80{ + margin-left: 20rem; + margin-right: 20rem; + } + + .md\:mx-96{ + margin-left: 24rem; + margin-right: 24rem; + } + + .md\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + + .md\:mx-px{ + margin-left: 1px; + margin-right: 1px; + } + + .md\:mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .md\:mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .md\:mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .md\:mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .md\:-mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .md\:-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .md\:-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .md\:-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .md\:-mx-4{ + margin-left: -1rem; + margin-right: -1rem; + } + + .md\:-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .md\:-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .md\:-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .md\:-mx-8{ + margin-left: -2rem; + margin-right: -2rem; + } + + .md\:-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .md\:-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .md\:-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .md\:-mx-12{ + margin-left: -3rem; + margin-right: -3rem; + } + + .md\:-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .md\:-mx-16{ + margin-left: -4rem; + margin-right: -4rem; + } + + .md\:-mx-20{ + margin-left: -5rem; + margin-right: -5rem; + } + + .md\:-mx-24{ + margin-left: -6rem; + margin-right: -6rem; + } + + .md\:-mx-28{ + margin-left: -7rem; + margin-right: -7rem; + } + + .md\:-mx-32{ + margin-left: -8rem; + margin-right: -8rem; + } + + .md\:-mx-36{ + margin-left: -9rem; + margin-right: -9rem; + } + + .md\:-mx-40{ + margin-left: -10rem; + margin-right: -10rem; + } + + .md\:-mx-44{ + margin-left: -11rem; + margin-right: -11rem; + } + + .md\:-mx-48{ + margin-left: -12rem; + margin-right: -12rem; + } + + .md\:-mx-52{ + margin-left: -13rem; + margin-right: -13rem; + } + + .md\:-mx-56{ + margin-left: -14rem; + margin-right: -14rem; + } + + .md\:-mx-60{ + margin-left: -15rem; + margin-right: -15rem; + } + + .md\:-mx-64{ + margin-left: -16rem; + margin-right: -16rem; + } + + .md\:-mx-72{ + margin-left: -18rem; + margin-right: -18rem; + } + + .md\:-mx-80{ + margin-left: -20rem; + margin-right: -20rem; + } + + .md\:-mx-96{ + margin-left: -24rem; + margin-right: -24rem; + } + + .md\:-mx-px{ + margin-left: -1px; + margin-right: -1px; + } + + .md\:-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .md\:-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .md\:-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .md\:-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .md\:my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .md\:my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .md\:my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .md\:my-4{ + margin-top: 1rem; + margin-bottom: 1rem; + } + + .md\:my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .md\:my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .md\:my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .md\:my-8{ + margin-top: 2rem; + margin-bottom: 2rem; + } + + .md\:my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .md\:my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .md\:my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .md\:my-12{ + margin-top: 3rem; + margin-bottom: 3rem; + } + + .md\:my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .md\:my-16{ + margin-top: 4rem; + margin-bottom: 4rem; + } + + .md\:my-20{ + margin-top: 5rem; + margin-bottom: 5rem; + } + + .md\:my-24{ + margin-top: 6rem; + margin-bottom: 6rem; + } + + .md\:my-28{ + margin-top: 7rem; + margin-bottom: 7rem; + } + + .md\:my-32{ + margin-top: 8rem; + margin-bottom: 8rem; + } + + .md\:my-36{ + margin-top: 9rem; + margin-bottom: 9rem; + } + + .md\:my-40{ + margin-top: 10rem; + margin-bottom: 10rem; + } + + .md\:my-44{ + margin-top: 11rem; + margin-bottom: 11rem; + } + + .md\:my-48{ + margin-top: 12rem; + margin-bottom: 12rem; + } + + .md\:my-52{ + margin-top: 13rem; + margin-bottom: 13rem; + } + + .md\:my-56{ + margin-top: 14rem; + margin-bottom: 14rem; + } + + .md\:my-60{ + margin-top: 15rem; + margin-bottom: 15rem; + } + + .md\:my-64{ + margin-top: 16rem; + margin-bottom: 16rem; + } + + .md\:my-72{ + margin-top: 18rem; + margin-bottom: 18rem; + } + + .md\:my-80{ + margin-top: 20rem; + margin-bottom: 20rem; + } + + .md\:my-96{ + margin-top: 24rem; + margin-bottom: 24rem; + } + + .md\:my-auto{ + margin-top: auto; + margin-bottom: auto; + } + + .md\:my-px{ + margin-top: 1px; + margin-bottom: 1px; + } + + .md\:my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .md\:my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .md\:my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .md\:my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .md\:-my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .md\:-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .md\:-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .md\:-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; + } + + .md\:-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .md\:-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .md\:-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .md\:-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; + } + + .md\:-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .md\:-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .md\:-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .md\:-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; + } + + .md\:-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .md\:-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; + } + + .md\:-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; + } + + .md\:-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; + } + + .md\:-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; + } + + .md\:-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; + } + + .md\:-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; + } + + .md\:-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; + } + + .md\:-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; + } + + .md\:-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; + } + + .md\:-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; + } + + .md\:-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; + } + + .md\:-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; + } + + .md\:-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; + } + + .md\:-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; + } + + .md\:-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; + } + + .md\:-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; + } + + .md\:-my-px{ + margin-top: -1px; + margin-bottom: -1px; + } + + .md\:-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .md\:-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .md\:-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .md\:-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .md\:mt-0{ + margin-top: 0px; + } + + .md\:mt-1{ + margin-top: 0.25rem; + } + + .md\:mt-2{ + margin-top: 0.5rem; + } + + .md\:mt-3{ + margin-top: 0.75rem; + } + + .md\:mt-4{ + margin-top: 1rem; + } + + .md\:mt-5{ + margin-top: 1.25rem; + } + + .md\:mt-6{ + margin-top: 1.5rem; + } + + .md\:mt-7{ + margin-top: 1.75rem; + } + + .md\:mt-8{ + margin-top: 2rem; + } + + .md\:mt-9{ + margin-top: 2.25rem; + } + + .md\:mt-10{ + margin-top: 2.5rem; + } + + .md\:mt-11{ + margin-top: 2.75rem; + } + + .md\:mt-12{ + margin-top: 3rem; + } + + .md\:mt-14{ + margin-top: 3.5rem; + } + + .md\:mt-16{ + margin-top: 4rem; + } + + .md\:mt-20{ + margin-top: 5rem; + } + + .md\:mt-24{ + margin-top: 6rem; + } + + .md\:mt-28{ + margin-top: 7rem; + } + + .md\:mt-32{ + margin-top: 8rem; + } + + .md\:mt-36{ + margin-top: 9rem; + } + + .md\:mt-40{ + margin-top: 10rem; + } + + .md\:mt-44{ + margin-top: 11rem; + } + + .md\:mt-48{ + margin-top: 12rem; + } + + .md\:mt-52{ + margin-top: 13rem; + } + + .md\:mt-56{ + margin-top: 14rem; + } + + .md\:mt-60{ + margin-top: 15rem; + } + + .md\:mt-64{ + margin-top: 16rem; + } + + .md\:mt-72{ + margin-top: 18rem; + } + + .md\:mt-80{ + margin-top: 20rem; + } + + .md\:mt-96{ + margin-top: 24rem; + } + + .md\:mt-auto{ + margin-top: auto; + } + + .md\:mt-px{ + margin-top: 1px; + } + + .md\:mt-0\.5{ + margin-top: 0.125rem; + } + + .md\:mt-1\.5{ + margin-top: 0.375rem; + } + + .md\:mt-2\.5{ + margin-top: 0.625rem; + } + + .md\:mt-3\.5{ + margin-top: 0.875rem; + } + + .md\:-mt-0{ + margin-top: 0px; + } + + .md\:-mt-1{ + margin-top: -0.25rem; + } + + .md\:-mt-2{ + margin-top: -0.5rem; + } + + .md\:-mt-3{ + margin-top: -0.75rem; + } + + .md\:-mt-4{ + margin-top: -1rem; + } + + .md\:-mt-5{ + margin-top: -1.25rem; + } + + .md\:-mt-6{ + margin-top: -1.5rem; + } + + .md\:-mt-7{ + margin-top: -1.75rem; + } + + .md\:-mt-8{ + margin-top: -2rem; + } + + .md\:-mt-9{ + margin-top: -2.25rem; + } + + .md\:-mt-10{ + margin-top: -2.5rem; + } + + .md\:-mt-11{ + margin-top: -2.75rem; + } + + .md\:-mt-12{ + margin-top: -3rem; + } + + .md\:-mt-14{ + margin-top: -3.5rem; + } + + .md\:-mt-16{ + margin-top: -4rem; + } + + .md\:-mt-20{ + margin-top: -5rem; + } + + .md\:-mt-24{ + margin-top: -6rem; + } + + .md\:-mt-28{ + margin-top: -7rem; + } + + .md\:-mt-32{ + margin-top: -8rem; + } + + .md\:-mt-36{ + margin-top: -9rem; + } + + .md\:-mt-40{ + margin-top: -10rem; + } + + .md\:-mt-44{ + margin-top: -11rem; + } + + .md\:-mt-48{ + margin-top: -12rem; + } + + .md\:-mt-52{ + margin-top: -13rem; + } + + .md\:-mt-56{ + margin-top: -14rem; + } + + .md\:-mt-60{ + margin-top: -15rem; + } + + .md\:-mt-64{ + margin-top: -16rem; + } + + .md\:-mt-72{ + margin-top: -18rem; + } + + .md\:-mt-80{ + margin-top: -20rem; + } + + .md\:-mt-96{ + margin-top: -24rem; + } + + .md\:-mt-px{ + margin-top: -1px; + } + + .md\:-mt-0\.5{ + margin-top: -0.125rem; + } + + .md\:-mt-1\.5{ + margin-top: -0.375rem; + } + + .md\:-mt-2\.5{ + margin-top: -0.625rem; + } + + .md\:-mt-3\.5{ + margin-top: -0.875rem; + } + + .md\:mr-0{ + margin-right: 0px; + } + + .md\:mr-1{ + margin-right: 0.25rem; + } + + .md\:mr-2{ + margin-right: 0.5rem; + } + + .md\:mr-3{ + margin-right: 0.75rem; + } + + .md\:mr-4{ + margin-right: 1rem; + } + + .md\:mr-5{ + margin-right: 1.25rem; + } + + .md\:mr-6{ + margin-right: 1.5rem; + } + + .md\:mr-7{ + margin-right: 1.75rem; + } + + .md\:mr-8{ + margin-right: 2rem; + } + + .md\:mr-9{ + margin-right: 2.25rem; + } + + .md\:mr-10{ + margin-right: 2.5rem; + } + + .md\:mr-11{ + margin-right: 2.75rem; + } + + .md\:mr-12{ + margin-right: 3rem; + } + + .md\:mr-14{ + margin-right: 3.5rem; + } + + .md\:mr-16{ + margin-right: 4rem; + } + + .md\:mr-20{ + margin-right: 5rem; + } + + .md\:mr-24{ + margin-right: 6rem; + } + + .md\:mr-28{ + margin-right: 7rem; + } + + .md\:mr-32{ + margin-right: 8rem; + } + + .md\:mr-36{ + margin-right: 9rem; + } + + .md\:mr-40{ + margin-right: 10rem; + } + + .md\:mr-44{ + margin-right: 11rem; + } + + .md\:mr-48{ + margin-right: 12rem; + } + + .md\:mr-52{ + margin-right: 13rem; + } + + .md\:mr-56{ + margin-right: 14rem; + } + + .md\:mr-60{ + margin-right: 15rem; + } + + .md\:mr-64{ + margin-right: 16rem; + } + + .md\:mr-72{ + margin-right: 18rem; + } + + .md\:mr-80{ + margin-right: 20rem; + } + + .md\:mr-96{ + margin-right: 24rem; + } + + .md\:mr-auto{ + margin-right: auto; + } + + .md\:mr-px{ + margin-right: 1px; + } + + .md\:mr-0\.5{ + margin-right: 0.125rem; + } + + .md\:mr-1\.5{ + margin-right: 0.375rem; + } + + .md\:mr-2\.5{ + margin-right: 0.625rem; + } + + .md\:mr-3\.5{ + margin-right: 0.875rem; + } + + .md\:-mr-0{ + margin-right: 0px; + } + + .md\:-mr-1{ + margin-right: -0.25rem; + } + + .md\:-mr-2{ + margin-right: -0.5rem; + } + + .md\:-mr-3{ + margin-right: -0.75rem; + } + + .md\:-mr-4{ + margin-right: -1rem; + } + + .md\:-mr-5{ + margin-right: -1.25rem; + } + + .md\:-mr-6{ + margin-right: -1.5rem; + } + + .md\:-mr-7{ + margin-right: -1.75rem; + } + + .md\:-mr-8{ + margin-right: -2rem; + } + + .md\:-mr-9{ + margin-right: -2.25rem; + } + + .md\:-mr-10{ + margin-right: -2.5rem; + } + + .md\:-mr-11{ + margin-right: -2.75rem; + } + + .md\:-mr-12{ + margin-right: -3rem; + } + + .md\:-mr-14{ + margin-right: -3.5rem; + } + + .md\:-mr-16{ + margin-right: -4rem; + } + + .md\:-mr-20{ + margin-right: -5rem; + } + + .md\:-mr-24{ + margin-right: -6rem; + } + + .md\:-mr-28{ + margin-right: -7rem; + } + + .md\:-mr-32{ + margin-right: -8rem; + } + + .md\:-mr-36{ + margin-right: -9rem; + } + + .md\:-mr-40{ + margin-right: -10rem; + } + + .md\:-mr-44{ + margin-right: -11rem; + } + + .md\:-mr-48{ + margin-right: -12rem; + } + + .md\:-mr-52{ + margin-right: -13rem; + } + + .md\:-mr-56{ + margin-right: -14rem; + } + + .md\:-mr-60{ + margin-right: -15rem; + } + + .md\:-mr-64{ + margin-right: -16rem; + } + + .md\:-mr-72{ + margin-right: -18rem; + } + + .md\:-mr-80{ + margin-right: -20rem; + } + + .md\:-mr-96{ + margin-right: -24rem; + } + + .md\:-mr-px{ + margin-right: -1px; + } + + .md\:-mr-0\.5{ + margin-right: -0.125rem; + } + + .md\:-mr-1\.5{ + margin-right: -0.375rem; + } + + .md\:-mr-2\.5{ + margin-right: -0.625rem; + } + + .md\:-mr-3\.5{ + margin-right: -0.875rem; + } + + .md\:mb-0{ + margin-bottom: 0px; + } + + .md\:mb-1{ + margin-bottom: 0.25rem; + } + + .md\:mb-2{ + margin-bottom: 0.5rem; + } + + .md\:mb-3{ + margin-bottom: 0.75rem; + } + + .md\:mb-4{ + margin-bottom: 1rem; + } + + .md\:mb-5{ + margin-bottom: 1.25rem; + } + + .md\:mb-6{ + margin-bottom: 1.5rem; + } + + .md\:mb-7{ + margin-bottom: 1.75rem; + } + + .md\:mb-8{ + margin-bottom: 2rem; + } + + .md\:mb-9{ + margin-bottom: 2.25rem; + } + + .md\:mb-10{ + margin-bottom: 2.5rem; + } + + .md\:mb-11{ + margin-bottom: 2.75rem; + } + + .md\:mb-12{ + margin-bottom: 3rem; + } + + .md\:mb-14{ + margin-bottom: 3.5rem; + } + + .md\:mb-16{ + margin-bottom: 4rem; + } + + .md\:mb-20{ + margin-bottom: 5rem; + } + + .md\:mb-24{ + margin-bottom: 6rem; + } + + .md\:mb-28{ + margin-bottom: 7rem; + } + + .md\:mb-32{ + margin-bottom: 8rem; + } + + .md\:mb-36{ + margin-bottom: 9rem; + } + + .md\:mb-40{ + margin-bottom: 10rem; + } + + .md\:mb-44{ + margin-bottom: 11rem; + } + + .md\:mb-48{ + margin-bottom: 12rem; + } + + .md\:mb-52{ + margin-bottom: 13rem; + } + + .md\:mb-56{ + margin-bottom: 14rem; + } + + .md\:mb-60{ + margin-bottom: 15rem; + } + + .md\:mb-64{ + margin-bottom: 16rem; + } + + .md\:mb-72{ + margin-bottom: 18rem; + } + + .md\:mb-80{ + margin-bottom: 20rem; + } + + .md\:mb-96{ + margin-bottom: 24rem; + } + + .md\:mb-auto{ + margin-bottom: auto; + } + + .md\:mb-px{ + margin-bottom: 1px; + } + + .md\:mb-0\.5{ + margin-bottom: 0.125rem; + } + + .md\:mb-1\.5{ + margin-bottom: 0.375rem; + } + + .md\:mb-2\.5{ + margin-bottom: 0.625rem; + } + + .md\:mb-3\.5{ + margin-bottom: 0.875rem; + } + + .md\:-mb-0{ + margin-bottom: 0px; + } + + .md\:-mb-1{ + margin-bottom: -0.25rem; + } + + .md\:-mb-2{ + margin-bottom: -0.5rem; + } + + .md\:-mb-3{ + margin-bottom: -0.75rem; + } + + .md\:-mb-4{ + margin-bottom: -1rem; + } + + .md\:-mb-5{ + margin-bottom: -1.25rem; + } + + .md\:-mb-6{ + margin-bottom: -1.5rem; + } + + .md\:-mb-7{ + margin-bottom: -1.75rem; + } + + .md\:-mb-8{ + margin-bottom: -2rem; + } + + .md\:-mb-9{ + margin-bottom: -2.25rem; + } + + .md\:-mb-10{ + margin-bottom: -2.5rem; + } + + .md\:-mb-11{ + margin-bottom: -2.75rem; + } + + .md\:-mb-12{ + margin-bottom: -3rem; + } + + .md\:-mb-14{ + margin-bottom: -3.5rem; + } + + .md\:-mb-16{ + margin-bottom: -4rem; + } + + .md\:-mb-20{ + margin-bottom: -5rem; + } + + .md\:-mb-24{ + margin-bottom: -6rem; + } + + .md\:-mb-28{ + margin-bottom: -7rem; + } + + .md\:-mb-32{ + margin-bottom: -8rem; + } + + .md\:-mb-36{ + margin-bottom: -9rem; + } + + .md\:-mb-40{ + margin-bottom: -10rem; + } + + .md\:-mb-44{ + margin-bottom: -11rem; + } + + .md\:-mb-48{ + margin-bottom: -12rem; + } + + .md\:-mb-52{ + margin-bottom: -13rem; + } + + .md\:-mb-56{ + margin-bottom: -14rem; + } + + .md\:-mb-60{ + margin-bottom: -15rem; + } + + .md\:-mb-64{ + margin-bottom: -16rem; + } + + .md\:-mb-72{ + margin-bottom: -18rem; + } + + .md\:-mb-80{ + margin-bottom: -20rem; + } + + .md\:-mb-96{ + margin-bottom: -24rem; + } + + .md\:-mb-px{ + margin-bottom: -1px; + } + + .md\:-mb-0\.5{ + margin-bottom: -0.125rem; + } + + .md\:-mb-1\.5{ + margin-bottom: -0.375rem; + } + + .md\:-mb-2\.5{ + margin-bottom: -0.625rem; + } + + .md\:-mb-3\.5{ + margin-bottom: -0.875rem; + } + + .md\:ml-0{ + margin-left: 0px; + } + + .md\:ml-1{ + margin-left: 0.25rem; + } + + .md\:ml-2{ + margin-left: 0.5rem; + } + + .md\:ml-3{ + margin-left: 0.75rem; + } + + .md\:ml-4{ + margin-left: 1rem; + } + + .md\:ml-5{ + margin-left: 1.25rem; + } + + .md\:ml-6{ + margin-left: 1.5rem; + } + + .md\:ml-7{ + margin-left: 1.75rem; + } + + .md\:ml-8{ + margin-left: 2rem; + } + + .md\:ml-9{ + margin-left: 2.25rem; + } + + .md\:ml-10{ + margin-left: 2.5rem; + } + + .md\:ml-11{ + margin-left: 2.75rem; + } + + .md\:ml-12{ + margin-left: 3rem; + } + + .md\:ml-14{ + margin-left: 3.5rem; + } + + .md\:ml-16{ + margin-left: 4rem; + } + + .md\:ml-20{ + margin-left: 5rem; + } + + .md\:ml-24{ + margin-left: 6rem; + } + + .md\:ml-28{ + margin-left: 7rem; + } + + .md\:ml-32{ + margin-left: 8rem; + } + + .md\:ml-36{ + margin-left: 9rem; + } + + .md\:ml-40{ + margin-left: 10rem; + } + + .md\:ml-44{ + margin-left: 11rem; + } + + .md\:ml-48{ + margin-left: 12rem; + } + + .md\:ml-52{ + margin-left: 13rem; + } + + .md\:ml-56{ + margin-left: 14rem; + } + + .md\:ml-60{ + margin-left: 15rem; + } + + .md\:ml-64{ + margin-left: 16rem; + } + + .md\:ml-72{ + margin-left: 18rem; + } + + .md\:ml-80{ + margin-left: 20rem; + } + + .md\:ml-96{ + margin-left: 24rem; + } + + .md\:ml-auto{ + margin-left: auto; + } + + .md\:ml-px{ + margin-left: 1px; + } + + .md\:ml-0\.5{ + margin-left: 0.125rem; + } + + .md\:ml-1\.5{ + margin-left: 0.375rem; + } + + .md\:ml-2\.5{ + margin-left: 0.625rem; + } + + .md\:ml-3\.5{ + margin-left: 0.875rem; + } + + .md\:-ml-0{ + margin-left: 0px; + } + + .md\:-ml-1{ + margin-left: -0.25rem; + } + + .md\:-ml-2{ + margin-left: -0.5rem; + } + + .md\:-ml-3{ + margin-left: -0.75rem; + } + + .md\:-ml-4{ + margin-left: -1rem; + } + + .md\:-ml-5{ + margin-left: -1.25rem; + } + + .md\:-ml-6{ + margin-left: -1.5rem; + } + + .md\:-ml-7{ + margin-left: -1.75rem; + } + + .md\:-ml-8{ + margin-left: -2rem; + } + + .md\:-ml-9{ + margin-left: -2.25rem; + } + + .md\:-ml-10{ + margin-left: -2.5rem; + } + + .md\:-ml-11{ + margin-left: -2.75rem; + } + + .md\:-ml-12{ + margin-left: -3rem; + } + + .md\:-ml-14{ + margin-left: -3.5rem; + } + + .md\:-ml-16{ + margin-left: -4rem; + } + + .md\:-ml-20{ + margin-left: -5rem; + } + + .md\:-ml-24{ + margin-left: -6rem; + } + + .md\:-ml-28{ + margin-left: -7rem; + } + + .md\:-ml-32{ + margin-left: -8rem; + } + + .md\:-ml-36{ + margin-left: -9rem; + } + + .md\:-ml-40{ + margin-left: -10rem; + } + + .md\:-ml-44{ + margin-left: -11rem; + } + + .md\:-ml-48{ + margin-left: -12rem; + } + + .md\:-ml-52{ + margin-left: -13rem; + } + + .md\:-ml-56{ + margin-left: -14rem; + } + + .md\:-ml-60{ + margin-left: -15rem; + } + + .md\:-ml-64{ + margin-left: -16rem; + } + + .md\:-ml-72{ + margin-left: -18rem; + } + + .md\:-ml-80{ + margin-left: -20rem; + } + + .md\:-ml-96{ + margin-left: -24rem; + } + + .md\:-ml-px{ + margin-left: -1px; + } + + .md\:-ml-0\.5{ + margin-left: -0.125rem; + } + + .md\:-ml-1\.5{ + margin-left: -0.375rem; + } + + .md\:-ml-2\.5{ + margin-left: -0.625rem; + } + + .md\:-ml-3\.5{ + margin-left: -0.875rem; + } + + .md\:box-border{ + box-sizing: border-box; + } + + .md\:box-content{ + box-sizing: content-box; + } + + .md\:block{ + display: block; + } + + .md\:inline-block{ + display: inline-block; + } + + .md\:inline{ + display: inline; + } + + .md\:flex{ + display: flex; + } + + .md\:inline-flex{ + display: inline-flex; + } + + .md\:table{ + display: table; + } + + .md\:inline-table{ + display: inline-table; + } + + .md\:table-caption{ + display: table-caption; + } + + .md\:table-cell{ + display: table-cell; + } + + .md\:table-column{ + display: table-column; + } + + .md\:table-column-group{ + display: table-column-group; + } + + .md\:table-footer-group{ + display: table-footer-group; + } + + .md\:table-header-group{ + display: table-header-group; + } + + .md\:table-row-group{ + display: table-row-group; + } + + .md\:table-row{ + display: table-row; + } + + .md\:flow-root{ + display: flow-root; + } + + .md\:grid{ + display: grid; + } + + .md\:inline-grid{ + display: inline-grid; + } + + .md\:contents{ + display: contents; + } + + .md\:list-item{ + display: list-item; + } + + .md\:hidden{ + display: none; + } + + .md\:h-0{ + height: 0px; + } + + .md\:h-1{ + height: 0.25rem; + } + + .md\:h-2{ + height: 0.5rem; + } + + .md\:h-3{ + height: 0.75rem; + } + + .md\:h-4{ + height: 1rem; + } + + .md\:h-5{ + height: 1.25rem; + } + + .md\:h-6{ + height: 1.5rem; + } + + .md\:h-7{ + height: 1.75rem; + } + + .md\:h-8{ + height: 2rem; + } + + .md\:h-9{ + height: 2.25rem; + } + + .md\:h-10{ + height: 2.5rem; + } + + .md\:h-11{ + height: 2.75rem; + } + + .md\:h-12{ + height: 3rem; + } + + .md\:h-14{ + height: 3.5rem; + } + + .md\:h-16{ + height: 4rem; + } + + .md\:h-20{ + height: 5rem; + } + + .md\:h-24{ + height: 6rem; + } + + .md\:h-28{ + height: 7rem; + } + + .md\:h-32{ + height: 8rem; + } + + .md\:h-36{ + height: 9rem; + } + + .md\:h-40{ + height: 10rem; + } + + .md\:h-44{ + height: 11rem; + } + + .md\:h-48{ + height: 12rem; + } + + .md\:h-52{ + height: 13rem; + } + + .md\:h-56{ + height: 14rem; + } + + .md\:h-60{ + height: 15rem; + } + + .md\:h-64{ + height: 16rem; + } + + .md\:h-72{ + height: 18rem; + } + + .md\:h-80{ + height: 20rem; + } + + .md\:h-96{ + height: 24rem; + } + + .md\:h-auto{ + height: auto; + } + + .md\:h-px{ + height: 1px; + } + + .md\:h-0\.5{ + height: 0.125rem; + } + + .md\:h-1\.5{ + height: 0.375rem; + } + + .md\:h-2\.5{ + height: 0.625rem; + } + + .md\:h-3\.5{ + height: 0.875rem; + } + + .md\:h-1\/2{ + height: 50%; + } + + .md\:h-1\/3{ + height: 33.333333%; + } + + .md\:h-2\/3{ + height: 66.666667%; + } + + .md\:h-1\/4{ + height: 25%; + } + + .md\:h-2\/4{ + height: 50%; + } + + .md\:h-3\/4{ + height: 75%; + } + + .md\:h-1\/5{ + height: 20%; + } + + .md\:h-2\/5{ + height: 40%; + } + + .md\:h-3\/5{ + height: 60%; + } + + .md\:h-4\/5{ + height: 80%; + } + + .md\:h-1\/6{ + height: 16.666667%; + } + + .md\:h-2\/6{ + height: 33.333333%; + } + + .md\:h-3\/6{ + height: 50%; + } + + .md\:h-4\/6{ + height: 66.666667%; + } + + .md\:h-5\/6{ + height: 83.333333%; + } + + .md\:h-full{ + height: 100%; + } + + .md\:h-screen{ + height: 100vh; + } + + .md\:max-h-0{ + max-height: 0px; + } + + .md\:max-h-1{ + max-height: 0.25rem; + } + + .md\:max-h-2{ + max-height: 0.5rem; + } + + .md\:max-h-3{ + max-height: 0.75rem; + } + + .md\:max-h-4{ + max-height: 1rem; + } + + .md\:max-h-5{ + max-height: 1.25rem; + } + + .md\:max-h-6{ + max-height: 1.5rem; + } + + .md\:max-h-7{ + max-height: 1.75rem; + } + + .md\:max-h-8{ + max-height: 2rem; + } + + .md\:max-h-9{ + max-height: 2.25rem; + } + + .md\:max-h-10{ + max-height: 2.5rem; + } + + .md\:max-h-11{ + max-height: 2.75rem; + } + + .md\:max-h-12{ + max-height: 3rem; + } + + .md\:max-h-14{ + max-height: 3.5rem; + } + + .md\:max-h-16{ + max-height: 4rem; + } + + .md\:max-h-20{ + max-height: 5rem; + } + + .md\:max-h-24{ + max-height: 6rem; + } + + .md\:max-h-28{ + max-height: 7rem; + } + + .md\:max-h-32{ + max-height: 8rem; + } + + .md\:max-h-36{ + max-height: 9rem; + } + + .md\:max-h-40{ + max-height: 10rem; + } + + .md\:max-h-44{ + max-height: 11rem; + } + + .md\:max-h-48{ + max-height: 12rem; + } + + .md\:max-h-52{ + max-height: 13rem; + } + + .md\:max-h-56{ + max-height: 14rem; + } + + .md\:max-h-60{ + max-height: 15rem; + } + + .md\:max-h-64{ + max-height: 16rem; + } + + .md\:max-h-72{ + max-height: 18rem; + } + + .md\:max-h-80{ + max-height: 20rem; + } + + .md\:max-h-96{ + max-height: 24rem; + } + + .md\:max-h-px{ + max-height: 1px; + } + + .md\:max-h-0\.5{ + max-height: 0.125rem; + } + + .md\:max-h-1\.5{ + max-height: 0.375rem; + } + + .md\:max-h-2\.5{ + max-height: 0.625rem; + } + + .md\:max-h-3\.5{ + max-height: 0.875rem; + } + + .md\:max-h-full{ + max-height: 100%; + } + + .md\:max-h-screen{ + max-height: 100vh; + } + + .md\:min-h-0{ + min-height: 0px; + } + + .md\:min-h-full{ + min-height: 100%; + } + + .md\:min-h-screen{ + min-height: 100vh; + } + + .md\:w-0{ + width: 0px; + } + + .md\:w-1{ + width: 0.25rem; + } + + .md\:w-2{ + width: 0.5rem; + } + + .md\:w-3{ + width: 0.75rem; + } + + .md\:w-4{ + width: 1rem; + } + + .md\:w-5{ + width: 1.25rem; + } + + .md\:w-6{ + width: 1.5rem; + } + + .md\:w-7{ + width: 1.75rem; + } + + .md\:w-8{ + width: 2rem; + } + + .md\:w-9{ + width: 2.25rem; + } + + .md\:w-10{ + width: 2.5rem; + } + + .md\:w-11{ + width: 2.75rem; + } + + .md\:w-12{ + width: 3rem; + } + + .md\:w-14{ + width: 3.5rem; + } + + .md\:w-16{ + width: 4rem; + } + + .md\:w-20{ + width: 5rem; + } + + .md\:w-24{ + width: 6rem; + } + + .md\:w-28{ + width: 7rem; + } + + .md\:w-32{ + width: 8rem; + } + + .md\:w-36{ + width: 9rem; + } + + .md\:w-40{ + width: 10rem; + } + + .md\:w-44{ + width: 11rem; + } + + .md\:w-48{ + width: 12rem; + } + + .md\:w-52{ + width: 13rem; + } + + .md\:w-56{ + width: 14rem; + } + + .md\:w-60{ + width: 15rem; + } + + .md\:w-64{ + width: 16rem; + } + + .md\:w-72{ + width: 18rem; + } + + .md\:w-80{ + width: 20rem; + } + + .md\:w-96{ + width: 24rem; + } + + .md\:w-auto{ + width: auto; + } + + .md\:w-px{ + width: 1px; + } + + .md\:w-0\.5{ + width: 0.125rem; + } + + .md\:w-1\.5{ + width: 0.375rem; + } + + .md\:w-2\.5{ + width: 0.625rem; + } + + .md\:w-3\.5{ + width: 0.875rem; + } + + .md\:w-1\/2{ + width: 50%; + } + + .md\:w-1\/3{ + width: 33.333333%; + } + + .md\:w-2\/3{ + width: 66.666667%; + } + + .md\:w-1\/4{ + width: 25%; + } + + .md\:w-2\/4{ + width: 50%; + } + + .md\:w-3\/4{ + width: 75%; + } + + .md\:w-1\/5{ + width: 20%; + } + + .md\:w-2\/5{ + width: 40%; + } + + .md\:w-3\/5{ + width: 60%; + } + + .md\:w-4\/5{ + width: 80%; + } + + .md\:w-1\/6{ + width: 16.666667%; + } + + .md\:w-2\/6{ + width: 33.333333%; + } + + .md\:w-3\/6{ + width: 50%; + } + + .md\:w-4\/6{ + width: 66.666667%; + } + + .md\:w-5\/6{ + width: 83.333333%; + } + + .md\:w-1\/12{ + width: 8.333333%; + } + + .md\:w-2\/12{ + width: 16.666667%; + } + + .md\:w-3\/12{ + width: 25%; + } + + .md\:w-4\/12{ + width: 33.333333%; + } + + .md\:w-5\/12{ + width: 41.666667%; + } + + .md\:w-6\/12{ + width: 50%; + } + + .md\:w-7\/12{ + width: 58.333333%; + } + + .md\:w-8\/12{ + width: 66.666667%; + } + + .md\:w-9\/12{ + width: 75%; + } + + .md\:w-10\/12{ + width: 83.333333%; + } + + .md\:w-11\/12{ + width: 91.666667%; + } + + .md\:w-full{ + width: 100%; + } + + .md\:w-screen{ + width: 100vw; + } + + .md\:w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; + } + + .md\:w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + } + + .md\:min-w-0{ + min-width: 0px; + } + + .md\:min-w-full{ + min-width: 100%; + } + + .md\:min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; + } + + .md\:min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; + } + + .md\:max-w-0{ + max-width: 0rem; + } + + .md\:max-w-none{ + max-width: none; + } + + .md\:max-w-xs{ + max-width: 20rem; + } + + .md\:max-w-sm{ + max-width: 24rem; + } + + .md\:max-w-md{ + max-width: 28rem; + } + + .md\:max-w-lg{ + max-width: 32rem; + } + + .md\:max-w-xl{ + max-width: 36rem; + } + + .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-6xl{ + max-width: 72rem; + } + + .md\:max-w-7xl{ + max-width: 80rem; + } + + .md\:max-w-full{ + max-width: 100%; + } + + .md\:max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .md\:max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .md\:max-w-prose{ + max-width: 65ch; + } + + .md\:max-w-screen-sm{ + max-width: 640px; + } + + .md\:max-w-screen-md{ + max-width: 768px; + } + + .md\:max-w-screen-lg{ + max-width: 1024px; + } + + .md\:max-w-screen-xl{ + max-width: 1280px; + } + + .md\:max-w-screen-2xl{ + max-width: 1536px; + } + + .md\:flex-1{ + flex: 1 1 0%; + } + + .md\:flex-auto{ + flex: 1 1 auto; + } + + .md\:flex-initial{ + flex: 0 1 auto; + } + + .md\:flex-none{ + flex: none; + } + + .md\:flex-shrink-0{ + flex-shrink: 0; + } + + .md\:flex-shrink{ + flex-shrink: 1; + } + + .md\:flex-grow-0{ + flex-grow: 0; + } + + .md\:flex-grow{ + flex-grow: 1; + } + + .md\:table-auto{ + table-layout: auto; + } + + .md\:table-fixed{ + table-layout: fixed; + } + + .md\:border-collapse{ + border-collapse: collapse; + } + + .md\:border-separate{ + border-collapse: separate; + } + + .md\:origin-center{ + transform-origin: center; + } + + .md\:origin-top{ + transform-origin: top; + } + + .md\:origin-top-right{ + transform-origin: top right; + } + + .md\:origin-right{ + transform-origin: right; + } + + .md\:origin-bottom-right{ + transform-origin: bottom right; + } + + .md\:origin-bottom{ + transform-origin: bottom; + } + + .md\:origin-bottom-left{ + transform-origin: bottom left; + } + + .md\:origin-left{ + transform-origin: left; + } + + .md\:origin-top-left{ + transform-origin: top left; + } + + .md\:transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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)); + } + + .md\:transform-gpu{ + --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; + 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)); + } + + .md\:transform-none{ + transform: none; + } + + .md\:translate-x-0{ + --tw-translate-x: 0px; + } + + .md\:translate-x-1{ + --tw-translate-x: 0.25rem; + } + + .md\:translate-x-2{ + --tw-translate-x: 0.5rem; + } + + .md\:translate-x-3{ + --tw-translate-x: 0.75rem; + } + + .md\:translate-x-4{ + --tw-translate-x: 1rem; + } + + .md\:translate-x-5{ + --tw-translate-x: 1.25rem; + } + + .md\:translate-x-6{ + --tw-translate-x: 1.5rem; + } + + .md\:translate-x-7{ + --tw-translate-x: 1.75rem; + } + + .md\:translate-x-8{ + --tw-translate-x: 2rem; + } + + .md\:translate-x-9{ + --tw-translate-x: 2.25rem; + } + + .md\:translate-x-10{ + --tw-translate-x: 2.5rem; + } + + .md\:translate-x-11{ + --tw-translate-x: 2.75rem; + } + + .md\:translate-x-12{ + --tw-translate-x: 3rem; + } + + .md\:translate-x-14{ + --tw-translate-x: 3.5rem; + } + + .md\:translate-x-16{ + --tw-translate-x: 4rem; + } + + .md\:translate-x-20{ + --tw-translate-x: 5rem; + } + + .md\:translate-x-24{ + --tw-translate-x: 6rem; + } + + .md\:translate-x-28{ + --tw-translate-x: 7rem; + } + + .md\:translate-x-32{ + --tw-translate-x: 8rem; + } + + .md\:translate-x-36{ + --tw-translate-x: 9rem; + } + + .md\:translate-x-40{ + --tw-translate-x: 10rem; + } + + .md\:translate-x-44{ + --tw-translate-x: 11rem; + } + + .md\:translate-x-48{ + --tw-translate-x: 12rem; + } + + .md\:translate-x-52{ + --tw-translate-x: 13rem; + } + + .md\:translate-x-56{ + --tw-translate-x: 14rem; + } + + .md\:translate-x-60{ + --tw-translate-x: 15rem; + } + + .md\:translate-x-64{ + --tw-translate-x: 16rem; + } + + .md\:translate-x-72{ + --tw-translate-x: 18rem; + } + + .md\:translate-x-80{ + --tw-translate-x: 20rem; + } + + .md\:translate-x-96{ + --tw-translate-x: 24rem; + } + + .md\:translate-x-px{ + --tw-translate-x: 1px; + } + + .md\:translate-x-0\.5{ + --tw-translate-x: 0.125rem; + } + + .md\:translate-x-1\.5{ + --tw-translate-x: 0.375rem; + } + + .md\:translate-x-2\.5{ + --tw-translate-x: 0.625rem; + } + + .md\:translate-x-3\.5{ + --tw-translate-x: 0.875rem; + } + + .md\:-translate-x-0{ + --tw-translate-x: 0px; + } + + .md\:-translate-x-1{ + --tw-translate-x: -0.25rem; + } + + .md\:-translate-x-2{ + --tw-translate-x: -0.5rem; + } + + .md\:-translate-x-3{ + --tw-translate-x: -0.75rem; + } + + .md\:-translate-x-4{ + --tw-translate-x: -1rem; + } + + .md\:-translate-x-5{ + --tw-translate-x: -1.25rem; + } + + .md\:-translate-x-6{ + --tw-translate-x: -1.5rem; + } + + .md\:-translate-x-7{ + --tw-translate-x: -1.75rem; + } + + .md\:-translate-x-8{ + --tw-translate-x: -2rem; + } + + .md\:-translate-x-9{ + --tw-translate-x: -2.25rem; + } + + .md\:-translate-x-10{ + --tw-translate-x: -2.5rem; + } + + .md\:-translate-x-11{ + --tw-translate-x: -2.75rem; + } + + .md\:-translate-x-12{ + --tw-translate-x: -3rem; + } + + .md\:-translate-x-14{ + --tw-translate-x: -3.5rem; + } + + .md\:-translate-x-16{ + --tw-translate-x: -4rem; + } + + .md\:-translate-x-20{ + --tw-translate-x: -5rem; + } + + .md\:-translate-x-24{ + --tw-translate-x: -6rem; + } + + .md\:-translate-x-28{ + --tw-translate-x: -7rem; + } + + .md\:-translate-x-32{ + --tw-translate-x: -8rem; + } + + .md\:-translate-x-36{ + --tw-translate-x: -9rem; + } + + .md\:-translate-x-40{ + --tw-translate-x: -10rem; + } + + .md\:-translate-x-44{ + --tw-translate-x: -11rem; + } + + .md\:-translate-x-48{ + --tw-translate-x: -12rem; + } + + .md\:-translate-x-52{ + --tw-translate-x: -13rem; + } + + .md\:-translate-x-56{ + --tw-translate-x: -14rem; + } + + .md\:-translate-x-60{ + --tw-translate-x: -15rem; + } + + .md\:-translate-x-64{ + --tw-translate-x: -16rem; + } + + .md\:-translate-x-72{ + --tw-translate-x: -18rem; + } + + .md\:-translate-x-80{ + --tw-translate-x: -20rem; + } + + .md\:-translate-x-96{ + --tw-translate-x: -24rem; + } + + .md\:-translate-x-px{ + --tw-translate-x: -1px; + } + + .md\:-translate-x-0\.5{ + --tw-translate-x: -0.125rem; + } + + .md\:-translate-x-1\.5{ + --tw-translate-x: -0.375rem; + } + + .md\:-translate-x-2\.5{ + --tw-translate-x: -0.625rem; + } + + .md\:-translate-x-3\.5{ + --tw-translate-x: -0.875rem; + } + + .md\:translate-x-1\/2{ + --tw-translate-x: 50%; + } + + .md\:translate-x-1\/3{ + --tw-translate-x: 33.333333%; + } + + .md\:translate-x-2\/3{ + --tw-translate-x: 66.666667%; + } + + .md\:translate-x-1\/4{ + --tw-translate-x: 25%; + } + + .md\:translate-x-2\/4{ + --tw-translate-x: 50%; + } + + .md\:translate-x-3\/4{ + --tw-translate-x: 75%; + } + + .md\:translate-x-full{ + --tw-translate-x: 100%; + } + + .md\:-translate-x-1\/2{ + --tw-translate-x: -50%; + } + + .md\:-translate-x-1\/3{ + --tw-translate-x: -33.333333%; + } + + .md\:-translate-x-2\/3{ + --tw-translate-x: -66.666667%; + } + + .md\:-translate-x-1\/4{ + --tw-translate-x: -25%; + } + + .md\:-translate-x-2\/4{ + --tw-translate-x: -50%; + } + + .md\:-translate-x-3\/4{ + --tw-translate-x: -75%; + } + + .md\:-translate-x-full{ + --tw-translate-x: -100%; + } + + .md\:translate-y-0{ + --tw-translate-y: 0px; + } + + .md\:translate-y-1{ + --tw-translate-y: 0.25rem; + } + + .md\:translate-y-2{ + --tw-translate-y: 0.5rem; + } + + .md\:translate-y-3{ + --tw-translate-y: 0.75rem; + } + + .md\:translate-y-4{ + --tw-translate-y: 1rem; + } + + .md\:translate-y-5{ + --tw-translate-y: 1.25rem; + } + + .md\:translate-y-6{ + --tw-translate-y: 1.5rem; + } + + .md\:translate-y-7{ + --tw-translate-y: 1.75rem; + } + + .md\:translate-y-8{ + --tw-translate-y: 2rem; + } + + .md\:translate-y-9{ + --tw-translate-y: 2.25rem; + } + + .md\:translate-y-10{ + --tw-translate-y: 2.5rem; + } + + .md\:translate-y-11{ + --tw-translate-y: 2.75rem; + } + + .md\:translate-y-12{ + --tw-translate-y: 3rem; + } + + .md\:translate-y-14{ + --tw-translate-y: 3.5rem; + } + + .md\:translate-y-16{ + --tw-translate-y: 4rem; + } + + .md\:translate-y-20{ + --tw-translate-y: 5rem; + } + + .md\:translate-y-24{ + --tw-translate-y: 6rem; + } + + .md\:translate-y-28{ + --tw-translate-y: 7rem; + } + + .md\:translate-y-32{ + --tw-translate-y: 8rem; + } + + .md\:translate-y-36{ + --tw-translate-y: 9rem; + } + + .md\:translate-y-40{ + --tw-translate-y: 10rem; + } + + .md\:translate-y-44{ + --tw-translate-y: 11rem; + } + + .md\:translate-y-48{ + --tw-translate-y: 12rem; + } + + .md\:translate-y-52{ + --tw-translate-y: 13rem; + } + + .md\:translate-y-56{ + --tw-translate-y: 14rem; + } + + .md\:translate-y-60{ + --tw-translate-y: 15rem; + } + + .md\:translate-y-64{ + --tw-translate-y: 16rem; + } + + .md\:translate-y-72{ + --tw-translate-y: 18rem; + } + + .md\:translate-y-80{ + --tw-translate-y: 20rem; + } + + .md\:translate-y-96{ + --tw-translate-y: 24rem; + } + + .md\:translate-y-px{ + --tw-translate-y: 1px; + } + + .md\:translate-y-0\.5{ + --tw-translate-y: 0.125rem; + } + + .md\:translate-y-1\.5{ + --tw-translate-y: 0.375rem; + } + + .md\:translate-y-2\.5{ + --tw-translate-y: 0.625rem; + } + + .md\:translate-y-3\.5{ + --tw-translate-y: 0.875rem; + } + + .md\:-translate-y-0{ + --tw-translate-y: 0px; + } + + .md\:-translate-y-1{ + --tw-translate-y: -0.25rem; + } + + .md\:-translate-y-2{ + --tw-translate-y: -0.5rem; + } + + .md\:-translate-y-3{ + --tw-translate-y: -0.75rem; + } + + .md\:-translate-y-4{ + --tw-translate-y: -1rem; + } + + .md\:-translate-y-5{ + --tw-translate-y: -1.25rem; + } + + .md\:-translate-y-6{ + --tw-translate-y: -1.5rem; + } + + .md\:-translate-y-7{ + --tw-translate-y: -1.75rem; + } + + .md\:-translate-y-8{ + --tw-translate-y: -2rem; + } + + .md\:-translate-y-9{ + --tw-translate-y: -2.25rem; + } + + .md\:-translate-y-10{ + --tw-translate-y: -2.5rem; + } + + .md\:-translate-y-11{ + --tw-translate-y: -2.75rem; + } + + .md\:-translate-y-12{ + --tw-translate-y: -3rem; + } + + .md\:-translate-y-14{ + --tw-translate-y: -3.5rem; + } + + .md\:-translate-y-16{ + --tw-translate-y: -4rem; + } + + .md\:-translate-y-20{ + --tw-translate-y: -5rem; + } + + .md\:-translate-y-24{ + --tw-translate-y: -6rem; + } + + .md\:-translate-y-28{ + --tw-translate-y: -7rem; + } + + .md\:-translate-y-32{ + --tw-translate-y: -8rem; + } + + .md\:-translate-y-36{ + --tw-translate-y: -9rem; + } + + .md\:-translate-y-40{ + --tw-translate-y: -10rem; + } + + .md\:-translate-y-44{ + --tw-translate-y: -11rem; + } + + .md\:-translate-y-48{ + --tw-translate-y: -12rem; + } + + .md\:-translate-y-52{ + --tw-translate-y: -13rem; + } + + .md\:-translate-y-56{ + --tw-translate-y: -14rem; + } + + .md\:-translate-y-60{ + --tw-translate-y: -15rem; + } + + .md\:-translate-y-64{ + --tw-translate-y: -16rem; + } + + .md\:-translate-y-72{ + --tw-translate-y: -18rem; + } + + .md\:-translate-y-80{ + --tw-translate-y: -20rem; + } + + .md\:-translate-y-96{ + --tw-translate-y: -24rem; + } + + .md\:-translate-y-px{ + --tw-translate-y: -1px; + } + + .md\:-translate-y-0\.5{ + --tw-translate-y: -0.125rem; + } + + .md\:-translate-y-1\.5{ + --tw-translate-y: -0.375rem; + } + + .md\:-translate-y-2\.5{ + --tw-translate-y: -0.625rem; + } + + .md\:-translate-y-3\.5{ + --tw-translate-y: -0.875rem; + } + + .md\:translate-y-1\/2{ + --tw-translate-y: 50%; + } + + .md\:translate-y-1\/3{ + --tw-translate-y: 33.333333%; + } + + .md\:translate-y-2\/3{ + --tw-translate-y: 66.666667%; + } + + .md\:translate-y-1\/4{ + --tw-translate-y: 25%; + } + + .md\:translate-y-2\/4{ + --tw-translate-y: 50%; + } + + .md\:translate-y-3\/4{ + --tw-translate-y: 75%; + } + + .md\:translate-y-full{ + --tw-translate-y: 100%; + } + + .md\:-translate-y-1\/2{ + --tw-translate-y: -50%; + } + + .md\:-translate-y-1\/3{ + --tw-translate-y: -33.333333%; + } + + .md\:-translate-y-2\/3{ + --tw-translate-y: -66.666667%; + } + + .md\:-translate-y-1\/4{ + --tw-translate-y: -25%; + } + + .md\:-translate-y-2\/4{ + --tw-translate-y: -50%; + } + + .md\:-translate-y-3\/4{ + --tw-translate-y: -75%; + } + + .md\:-translate-y-full{ + --tw-translate-y: -100%; + } + + .md\:hover\:translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .md\:hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; + } + + .md\:hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; + } + + .md\:hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; + } + + .md\:hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; + } + + .md\:hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; + } + + .md\:hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; + } + + .md\:hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; + } + + .md\:hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; + } + + .md\:hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; + } + + .md\:hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; + } + + .md\:hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; + } + + .md\:hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; + } + + .md\:hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; + } + + .md\:hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; + } + + .md\:hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; + } + + .md\:hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; + } + + .md\:hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; + } + + .md\:hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; + } + + .md\:hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; + } + + .md\:hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; + } + + .md\:hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; + } + + .md\:hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; + } + + .md\:hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; + } + + .md\:hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; + } + + .md\:hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; + } + + .md\:hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; + } + + .md\:hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; + } + + .md\:hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; + } + + .md\:hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; + } + + .md\:hover\:translate-x-px:hover{ + --tw-translate-x: 1px; + } + + .md\:hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; + } + + .md\:hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; + } + + .md\:hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; + } + + .md\:hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; + } + + .md\:hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .md\:hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; + } + + .md\:hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; + } + + .md\:hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; + } + + .md\:hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; + } + + .md\:hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; + } + + .md\:hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; + } + + .md\:hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; + } + + .md\:hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; + } + + .md\:hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; + } + + .md\:hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; + } + + .md\:hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; + } + + .md\:hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; + } + + .md\:hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; + } + + .md\:hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; + } + + .md\:hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; + } + + .md\:hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; + } + + .md\:hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; + } + + .md\:hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; + } + + .md\:hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; + } + + .md\:hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; + } + + .md\:hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; + } + + .md\:hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; + } + + .md\:hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; + } + + .md\:hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; + } + + .md\:hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; + } + + .md\:hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; + } + + .md\:hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; + } + + .md\:hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; + } + + .md\:hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; + } + + .md\:hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; + } + + .md\:hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; + } + + .md\:hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; + } + + .md\:hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; + } + + .md\:hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; + } + + .md\:hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; + } + + .md\:hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; + } + + .md\:hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; + } + + .md\:hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; + } + + .md\:hover\:translate-x-full:hover{ + --tw-translate-x: 100%; + } + + .md\:hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; + } + + .md\:hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; + } + + .md\:hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; + } + + .md\:hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; + } + + .md\:hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; + } + + .md\:hover\:translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .md\:hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; + } + + .md\:hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; + } + + .md\:hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; + } + + .md\:hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; + } + + .md\:hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; + } + + .md\:hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; + } + + .md\:hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; + } + + .md\:hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; + } + + .md\:hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; + } + + .md\:hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; + } + + .md\:hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; + } + + .md\:hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; + } + + .md\:hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; + } + + .md\:hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; + } + + .md\:hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; + } + + .md\:hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; + } + + .md\:hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; + } + + .md\:hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; + } + + .md\:hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; + } + + .md\:hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; + } + + .md\:hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; + } + + .md\:hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; + } + + .md\:hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; + } + + .md\:hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; + } + + .md\:hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; + } + + .md\:hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; + } + + .md\:hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; + } + + .md\:hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; + } + + .md\:hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; + } + + .md\:hover\:translate-y-px:hover{ + --tw-translate-y: 1px; + } + + .md\:hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; + } + + .md\:hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; + } + + .md\:hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; + } + + .md\:hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; + } + + .md\:hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .md\:hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; + } + + .md\:hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; + } + + .md\:hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; + } + + .md\:hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; + } + + .md\:hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; + } + + .md\:hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; + } + + .md\:hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; + } + + .md\:hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; + } + + .md\:hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; + } + + .md\:hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; + } + + .md\:hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; + } + + .md\:hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; + } + + .md\:hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; + } + + .md\:hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; + } + + .md\:hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; + } + + .md\:hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; + } + + .md\:hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; + } + + .md\:hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; + } + + .md\:hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; + } + + .md\:hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; + } + + .md\:hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; + } + + .md\:hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; + } + + .md\:hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; + } + + .md\:hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; + } + + .md\:hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; + } + + .md\:hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; + } + + .md\:hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; + } + + .md\:hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; + } + + .md\:hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; + } + + .md\:hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; + } + + .md\:hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; + } + + .md\:hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; + } + + .md\:hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; + } + + .md\:hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; + } + + .md\:hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; + } + + .md\:hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; + } + + .md\:hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; + } + + .md\:hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; + } + + .md\:hover\:translate-y-full:hover{ + --tw-translate-y: 100%; + } + + .md\:hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; + } + + .md\:hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; + } + + .md\:hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; + } + + .md\:hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; + } + + .md\:hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; + } + + .md\:focus\:translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .md\:focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; + } + + .md\:focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; + } + + .md\:focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; + } + + .md\:focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; + } + + .md\:focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; + } + + .md\:focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; + } + + .md\:focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; + } + + .md\:focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; + } + + .md\:focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; + } + + .md\:focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; + } + + .md\:focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; + } + + .md\:focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; + } + + .md\:focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; + } + + .md\:focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; + } + + .md\:focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; + } + + .md\:focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; + } + + .md\:focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; + } + + .md\:focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; + } + + .md\:focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; + } + + .md\:focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; + } + + .md\:focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; + } + + .md\:focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; + } + + .md\:focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; + } + + .md\:focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; + } + + .md\:focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; + } + + .md\:focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; + } + + .md\:focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; + } + + .md\:focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; + } + + .md\:focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; + } + + .md\:focus\:translate-x-px:focus{ + --tw-translate-x: 1px; + } + + .md\:focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; + } + + .md\:focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; + } + + .md\:focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; + } + + .md\:focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; + } + + .md\:focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .md\:focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; + } + + .md\:focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; + } + + .md\:focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; + } + + .md\:focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; + } + + .md\:focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; + } + + .md\:focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; + } + + .md\:focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; + } + + .md\:focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; + } + + .md\:focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; + } + + .md\:focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; + } + + .md\:focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; + } + + .md\:focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; + } + + .md\:focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; + } + + .md\:focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; + } + + .md\:focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; + } + + .md\:focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; + } + + .md\:focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; + } + + .md\:focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; + } + + .md\:focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; + } + + .md\:focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; + } + + .md\:focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; + } + + .md\:focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; + } + + .md\:focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; + } + + .md\:focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; + } + + .md\:focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; + } + + .md\:focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; + } + + .md\:focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; + } + + .md\:focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; + } + + .md\:focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; + } + + .md\:focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; + } + + .md\:focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; + } + + .md\:focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; + } + + .md\:focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; + } + + .md\:focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; + } + + .md\:focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; + } + + .md\:focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; + } + + .md\:focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; + } + + .md\:focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; + } + + .md\:focus\:translate-x-full:focus{ + --tw-translate-x: 100%; + } + + .md\:focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; + } + + .md\:focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; + } + + .md\:focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; + } + + .md\:focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; + } + + .md\:focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; + } + + .md\:focus\:translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .md\:focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; + } + + .md\:focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; + } + + .md\:focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; + } + + .md\:focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; + } + + .md\:focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; + } + + .md\:focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; + } + + .md\:focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; + } + + .md\:focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; + } + + .md\:focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; + } + + .md\:focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; + } + + .md\:focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; + } + + .md\:focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; + } + + .md\:focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; + } + + .md\:focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; + } + + .md\:focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; + } + + .md\:focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; + } + + .md\:focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; + } + + .md\:focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; + } + + .md\:focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; + } + + .md\:focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; + } + + .md\:focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; + } + + .md\:focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; + } + + .md\:focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; + } + + .md\:focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; + } + + .md\:focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; + } + + .md\:focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; + } + + .md\:focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; + } + + .md\:focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; + } + + .md\:focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; + } + + .md\:focus\:translate-y-px:focus{ + --tw-translate-y: 1px; + } + + .md\:focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; + } + + .md\:focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; + } + + .md\:focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; + } + + .md\:focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; + } + + .md\:focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .md\:focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; + } + + .md\:focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; + } + + .md\:focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; + } + + .md\:focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; + } + + .md\:focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; + } + + .md\:focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; + } + + .md\:focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; + } + + .md\:focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; + } + + .md\:focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; + } + + .md\:focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; + } + + .md\:focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; + } + + .md\:focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; + } + + .md\:focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; + } + + .md\:focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; + } + + .md\:focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; + } + + .md\:focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; + } + + .md\:focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; + } + + .md\:focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; + } + + .md\:focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; + } + + .md\:focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; + } + + .md\:focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; + } + + .md\:focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; + } + + .md\:focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; + } + + .md\:focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; + } + + .md\:focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; + } + + .md\:focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; + } + + .md\:focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; + } + + .md\:focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; + } + + .md\:focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; + } + + .md\:focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; + } + + .md\:focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; + } + + .md\:focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; + } + + .md\:focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; + } + + .md\:focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; + } + + .md\:focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; + } + + .md\:focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; + } + + .md\:focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; + } + + .md\:focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; + } + + .md\:focus\:translate-y-full:focus{ + --tw-translate-y: 100%; + } + + .md\:focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; + } + + .md\:focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; + } + + .md\:focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; + } + + .md\:focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; + } + + .md\:focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; + } + + .md\:rotate-0{ + --tw-rotate: 0deg; + } + + .md\:rotate-1{ + --tw-rotate: 1deg; + } + + .md\:rotate-2{ + --tw-rotate: 2deg; + } + + .md\:rotate-3{ + --tw-rotate: 3deg; + } + + .md\:rotate-6{ + --tw-rotate: 6deg; + } + + .md\:rotate-12{ + --tw-rotate: 12deg; + } + + .md\:rotate-45{ + --tw-rotate: 45deg; + } + + .md\:rotate-90{ + --tw-rotate: 90deg; + } + + .md\:rotate-180{ + --tw-rotate: 180deg; + } + + .md\:-rotate-180{ + --tw-rotate: -180deg; + } + + .md\:-rotate-90{ + --tw-rotate: -90deg; + } + + .md\:-rotate-45{ + --tw-rotate: -45deg; + } + + .md\:-rotate-12{ + --tw-rotate: -12deg; + } + + .md\:-rotate-6{ + --tw-rotate: -6deg; + } + + .md\:-rotate-3{ + --tw-rotate: -3deg; + } + + .md\:-rotate-2{ + --tw-rotate: -2deg; + } + + .md\:-rotate-1{ + --tw-rotate: -1deg; + } + + .md\:hover\:rotate-0:hover{ + --tw-rotate: 0deg; + } + + .md\:hover\:rotate-1:hover{ + --tw-rotate: 1deg; + } + + .md\:hover\:rotate-2:hover{ + --tw-rotate: 2deg; + } + + .md\:hover\:rotate-3:hover{ + --tw-rotate: 3deg; + } + + .md\:hover\:rotate-6:hover{ + --tw-rotate: 6deg; + } + + .md\:hover\:rotate-12:hover{ + --tw-rotate: 12deg; + } + + .md\:hover\:rotate-45:hover{ + --tw-rotate: 45deg; + } + + .md\:hover\:rotate-90:hover{ + --tw-rotate: 90deg; + } + + .md\:hover\:rotate-180:hover{ + --tw-rotate: 180deg; + } + + .md\:hover\:-rotate-180:hover{ + --tw-rotate: -180deg; + } + + .md\:hover\:-rotate-90:hover{ + --tw-rotate: -90deg; + } + + .md\:hover\:-rotate-45:hover{ + --tw-rotate: -45deg; + } + + .md\:hover\:-rotate-12:hover{ + --tw-rotate: -12deg; + } + + .md\:hover\:-rotate-6:hover{ + --tw-rotate: -6deg; + } + + .md\:hover\:-rotate-3:hover{ + --tw-rotate: -3deg; + } + + .md\:hover\:-rotate-2:hover{ + --tw-rotate: -2deg; + } + + .md\:hover\:-rotate-1:hover{ + --tw-rotate: -1deg; + } + + .md\:focus\:rotate-0:focus{ + --tw-rotate: 0deg; + } + + .md\:focus\:rotate-1:focus{ + --tw-rotate: 1deg; + } + + .md\:focus\:rotate-2:focus{ + --tw-rotate: 2deg; + } + + .md\:focus\:rotate-3:focus{ + --tw-rotate: 3deg; + } + + .md\:focus\:rotate-6:focus{ + --tw-rotate: 6deg; + } + + .md\:focus\:rotate-12:focus{ + --tw-rotate: 12deg; + } + + .md\:focus\:rotate-45:focus{ + --tw-rotate: 45deg; + } + + .md\:focus\:rotate-90:focus{ + --tw-rotate: 90deg; + } + + .md\:focus\:rotate-180:focus{ + --tw-rotate: 180deg; + } + + .md\:focus\:-rotate-180:focus{ + --tw-rotate: -180deg; + } + + .md\:focus\:-rotate-90:focus{ + --tw-rotate: -90deg; + } + + .md\:focus\:-rotate-45:focus{ + --tw-rotate: -45deg; + } + + .md\:focus\:-rotate-12:focus{ + --tw-rotate: -12deg; + } + + .md\:focus\:-rotate-6:focus{ + --tw-rotate: -6deg; + } + + .md\:focus\:-rotate-3:focus{ + --tw-rotate: -3deg; + } + + .md\:focus\:-rotate-2:focus{ + --tw-rotate: -2deg; + } + + .md\:focus\:-rotate-1:focus{ + --tw-rotate: -1deg; + } + + .md\:skew-x-0{ + --tw-skew-x: 0deg; + } + + .md\:skew-x-1{ + --tw-skew-x: 1deg; + } + + .md\:skew-x-2{ + --tw-skew-x: 2deg; + } + + .md\:skew-x-3{ + --tw-skew-x: 3deg; + } + + .md\:skew-x-6{ + --tw-skew-x: 6deg; + } + + .md\:skew-x-12{ + --tw-skew-x: 12deg; + } + + .md\:-skew-x-12{ + --tw-skew-x: -12deg; + } + + .md\:-skew-x-6{ + --tw-skew-x: -6deg; + } + + .md\:-skew-x-3{ + --tw-skew-x: -3deg; + } + + .md\:-skew-x-2{ + --tw-skew-x: -2deg; + } + + .md\:-skew-x-1{ + --tw-skew-x: -1deg; + } + + .md\:skew-y-0{ + --tw-skew-y: 0deg; + } + + .md\:skew-y-1{ + --tw-skew-y: 1deg; + } + + .md\:skew-y-2{ + --tw-skew-y: 2deg; + } + + .md\:skew-y-3{ + --tw-skew-y: 3deg; + } + + .md\:skew-y-6{ + --tw-skew-y: 6deg; + } + + .md\:skew-y-12{ + --tw-skew-y: 12deg; + } + + .md\:-skew-y-12{ + --tw-skew-y: -12deg; + } + + .md\:-skew-y-6{ + --tw-skew-y: -6deg; + } + + .md\:-skew-y-3{ + --tw-skew-y: -3deg; + } + + .md\:-skew-y-2{ + --tw-skew-y: -2deg; + } + + .md\:-skew-y-1{ + --tw-skew-y: -1deg; + } + + .md\:hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; + } + + .md\:hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; + } + + .md\:hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; + } + + .md\:hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; + } + + .md\:hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; + } + + .md\:hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; + } + + .md\:hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; + } + + .md\:hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; + } + + .md\:hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; + } + + .md\:hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; + } + + .md\:hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; + } + + .md\:hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; + } + + .md\:hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; + } + + .md\:hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; + } + + .md\:hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; + } + + .md\:hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; + } + + .md\:hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; + } + + .md\:hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; + } + + .md\:hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; + } + + .md\:hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; + } + + .md\:hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; + } + + .md\:hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; + } + + .md\:focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; + } + + .md\:focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; + } + + .md\:focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; + } + + .md\:focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; + } + + .md\:focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; + } + + .md\:focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; + } + + .md\:focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; + } + + .md\:focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; + } + + .md\:focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; + } + + .md\:focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; + } + + .md\:focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; + } + + .md\:focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; + } + + .md\:focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; + } + + .md\:focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; + } + + .md\:focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; + } + + .md\:focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; + } + + .md\:focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; + } + + .md\:focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; + } + + .md\:focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; + } + + .md\:focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; + } + + .md\:focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; + } + + .md\:focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; + } + + .md\:scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:scale-x-0{ + --tw-scale-x: 0; + } + + .md\:scale-x-50{ + --tw-scale-x: .5; + } + + .md\:scale-x-75{ + --tw-scale-x: .75; + } + + .md\:scale-x-90{ + --tw-scale-x: .9; + } + + .md\:scale-x-95{ + --tw-scale-x: .95; + } + + .md\:scale-x-100{ + --tw-scale-x: 1; + } + + .md\:scale-x-105{ + --tw-scale-x: 1.05; + } + + .md\:scale-x-110{ + --tw-scale-x: 1.1; + } + + .md\:scale-x-125{ + --tw-scale-x: 1.25; + } + + .md\:scale-x-150{ + --tw-scale-x: 1.5; + } + + .md\:scale-y-0{ + --tw-scale-y: 0; + } + + .md\:scale-y-50{ + --tw-scale-y: .5; + } + + .md\:scale-y-75{ + --tw-scale-y: .75; + } + + .md\:scale-y-90{ + --tw-scale-y: .9; + } + + .md\:scale-y-95{ + --tw-scale-y: .95; + } + + .md\:scale-y-100{ + --tw-scale-y: 1; + } + + .md\:scale-y-105{ + --tw-scale-y: 1.05; + } + + .md\:scale-y-110{ + --tw-scale-y: 1.1; + } + + .md\:scale-y-125{ + --tw-scale-y: 1.25; + } + + .md\:scale-y-150{ + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-x-0:hover{ + --tw-scale-x: 0; + } + + .md\:hover\:scale-x-50:hover{ + --tw-scale-x: .5; + } + + .md\:hover\:scale-x-75:hover{ + --tw-scale-x: .75; + } + + .md\:hover\:scale-x-90:hover{ + --tw-scale-x: .9; + } + + .md\:hover\:scale-x-95:hover{ + --tw-scale-x: .95; + } + + .md\:hover\:scale-x-100:hover{ + --tw-scale-x: 1; + } + + .md\:hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; + } + + .md\:hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; + } + + .md\:hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; + } + + .md\:hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; + } + + .md\:hover\:scale-y-0:hover{ + --tw-scale-y: 0; + } + + .md\:hover\:scale-y-50:hover{ + --tw-scale-y: .5; + } + + .md\:hover\:scale-y-75:hover{ + --tw-scale-y: .75; + } + + .md\:hover\:scale-y-90:hover{ + --tw-scale-y: .9; + } + + .md\:hover\:scale-y-95:hover{ + --tw-scale-y: .95; + } + + .md\:hover\:scale-y-100:hover{ + --tw-scale-y: 1; + } + + .md\:hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-x-0:focus{ + --tw-scale-x: 0; + } + + .md\:focus\:scale-x-50:focus{ + --tw-scale-x: .5; + } + + .md\:focus\:scale-x-75:focus{ + --tw-scale-x: .75; + } + + .md\:focus\:scale-x-90:focus{ + --tw-scale-x: .9; + } + + .md\:focus\:scale-x-95:focus{ + --tw-scale-x: .95; + } + + .md\:focus\:scale-x-100:focus{ + --tw-scale-x: 1; + } + + .md\:focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; + } + + .md\:focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; + } + + .md\:focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; + } + + .md\:focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; + } + + .md\:focus\:scale-y-0:focus{ + --tw-scale-y: 0; + } + + .md\:focus\:scale-y-50:focus{ + --tw-scale-y: .5; + } + + .md\:focus\:scale-y-75:focus{ + --tw-scale-y: .75; + } + + .md\:focus\:scale-y-90:focus{ + --tw-scale-y: .9; + } + + .md\:focus\:scale-y-95:focus{ + --tw-scale-y: .95; + } + + .md\:focus\:scale-y-100:focus{ + --tw-scale-y: 1; + } + + .md\:focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; + } + + .md\:animate-none{ + -webkit-animation: none; + animation: none; + } + + .md\:animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .md\:animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .md\:animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .md\:animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } + + .md\:cursor-auto{ + cursor: auto; + } + + .md\:cursor-default{ + cursor: default; + } + + .md\:cursor-pointer{ + cursor: pointer; + } + + .md\:cursor-wait{ + cursor: wait; + } + + .md\:cursor-text{ + cursor: text; + } + + .md\:cursor-move{ + cursor: move; + } + + .md\:cursor-help{ + cursor: help; + } + + .md\:cursor-not-allowed{ + cursor: not-allowed; + } + + .md\:select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .md\:select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .md\:select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; + } + + .md\:select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .md\:resize-none{ + resize: none; + } + + .md\:resize-y{ + resize: vertical; + } + + .md\:resize-x{ + resize: horizontal; + } + + .md\:resize{ + resize: both; + } + + .md\:list-inside{ + list-style-position: inside; + } + + .md\:list-outside{ + list-style-position: outside; + } + + .md\:list-none{ + list-style-type: none; + } + + .md\:list-disc{ + list-style-type: disc; + } + + .md\:list-decimal{ + list-style-type: decimal; + } + + .md\:appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .md\:auto-cols-auto{ + grid-auto-columns: auto; + } + + .md\:auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .md\:auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .md\:auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); + } + + .md\:grid-flow-row{ + grid-auto-flow: row; + } + + .md\:grid-flow-col{ + grid-auto-flow: column; + } + + .md\:grid-flow-row-dense{ + grid-auto-flow: row dense; + } + + .md\:grid-flow-col-dense{ + grid-auto-flow: column dense; + } + + .md\:auto-rows-auto{ + grid-auto-rows: auto; + } + + .md\:auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .md\:auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .md\:auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); + } + + .md\:grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .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-5{ + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-cols-6{ + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-cols-7{ + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .md\:grid-cols-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .md\:grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .md\:grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .md\:grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .md\:grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .md\:grid-cols-none{ + grid-template-columns: none; + } + + .md\:grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-rows-none{ + grid-template-rows: none; + } + + .md\:flex-row{ + flex-direction: row; + } + + .md\:flex-row-reverse{ + flex-direction: row-reverse; + } + + .md\:flex-col{ + flex-direction: column; + } + + .md\:flex-col-reverse{ + flex-direction: column-reverse; + } + + .md\:flex-wrap{ + flex-wrap: wrap; + } + + .md\:flex-wrap-reverse{ + flex-wrap: wrap-reverse; + } + + .md\:flex-nowrap{ + flex-wrap: nowrap; + } + + .md\:place-content-center{ + place-content: center; + } + + .md\:place-content-start{ + place-content: start; + } + + .md\:place-content-end{ + place-content: end; + } + + .md\:place-content-between{ + place-content: space-between; + } + + .md\:place-content-around{ + place-content: space-around; + } + + .md\:place-content-evenly{ + place-content: space-evenly; + } + + .md\:place-content-stretch{ + place-content: stretch; + } + + .md\:place-items-start{ + place-items: start; + } + + .md\:place-items-end{ + place-items: end; + } + + .md\:place-items-center{ + place-items: center; + } + + .md\:place-items-stretch{ + place-items: stretch; + } + + .md\:content-center{ + align-content: center; + } + + .md\:content-start{ + align-content: flex-start; + } + + .md\:content-end{ + align-content: flex-end; + } + + .md\:content-between{ + align-content: space-between; + } + + .md\:content-around{ + align-content: space-around; + } + + .md\:content-evenly{ + align-content: space-evenly; + } + + .md\:items-start{ + align-items: flex-start; + } + + .md\:items-end{ + align-items: flex-end; + } + + .md\:items-center{ + align-items: center; + } + + .md\:items-baseline{ + align-items: baseline; + } + + .md\:items-stretch{ + align-items: stretch; + } + + .md\:justify-start{ + justify-content: flex-start; + } + + .md\:justify-end{ + justify-content: flex-end; + } + + .md\:justify-center{ + justify-content: center; + } + + .md\:justify-between{ + justify-content: space-between; + } + + .md\:justify-around{ + justify-content: space-around; + } + + .md\:justify-evenly{ + justify-content: space-evenly; + } + + .md\:justify-items-start{ + justify-items: start; + } + + .md\:justify-items-end{ + justify-items: end; + } + + .md\:justify-items-center{ + justify-items: center; + } + + .md\:justify-items-stretch{ + justify-items: stretch; + } + + .md\:gap-0{ + gap: 0px; + } + + .md\:gap-1{ + gap: 0.25rem; + } + + .md\:gap-2{ + gap: 0.5rem; + } + + .md\:gap-3{ + gap: 0.75rem; + } + + .md\:gap-4{ + gap: 1rem; + } + + .md\:gap-5{ + gap: 1.25rem; + } + + .md\:gap-6{ + gap: 1.5rem; + } + + .md\:gap-7{ + gap: 1.75rem; + } + + .md\:gap-8{ + gap: 2rem; + } + + .md\:gap-9{ + gap: 2.25rem; + } + + .md\:gap-10{ + gap: 2.5rem; + } + + .md\:gap-11{ + gap: 2.75rem; + } + + .md\:gap-12{ + gap: 3rem; + } + + .md\:gap-14{ + gap: 3.5rem; + } + + .md\:gap-16{ + gap: 4rem; + } + + .md\:gap-20{ + gap: 5rem; + } + + .md\:gap-24{ + gap: 6rem; + } + + .md\:gap-28{ + gap: 7rem; + } + + .md\:gap-32{ + gap: 8rem; + } + + .md\:gap-36{ + gap: 9rem; + } + + .md\:gap-40{ + gap: 10rem; + } + + .md\:gap-44{ + gap: 11rem; + } + + .md\:gap-48{ + gap: 12rem; + } + + .md\:gap-52{ + gap: 13rem; + } + + .md\:gap-56{ + gap: 14rem; + } + + .md\:gap-60{ + gap: 15rem; + } + + .md\:gap-64{ + gap: 16rem; + } + + .md\:gap-72{ + gap: 18rem; + } + + .md\:gap-80{ + gap: 20rem; + } + + .md\:gap-96{ + gap: 24rem; + } + + .md\:gap-px{ + gap: 1px; + } + + .md\:gap-0\.5{ + gap: 0.125rem; + } + + .md\:gap-1\.5{ + gap: 0.375rem; + } + + .md\:gap-2\.5{ + gap: 0.625rem; + } + + .md\:gap-3\.5{ + gap: 0.875rem; + } + + .md\:gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; + } + + .md\:gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .md\:gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .md\:gap-x-3{ + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .md\:gap-x-4{ + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:gap-x-5{ + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .md\:gap-x-6{ + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .md\:gap-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .md\:gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .md\:gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .md\:gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .md\:gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .md\:gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .md\:gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .md\:gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .md\:gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .md\:gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .md\:gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .md\:gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .md\:gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .md\:gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .md\:gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .md\:gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .md\:gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .md\:gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .md\:gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .md\:gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .md\:gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .md\:gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .md\:gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; + } + + .md\:gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .md\:gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .md\:gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .md\:gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .md\:gap-y-0{ + row-gap: 0px; + } + + .md\:gap-y-1{ + row-gap: 0.25rem; + } + + .md\:gap-y-2{ + row-gap: 0.5rem; + } + + .md\:gap-y-3{ + row-gap: 0.75rem; + } + + .md\:gap-y-4{ + row-gap: 1rem; + } + + .md\:gap-y-5{ + row-gap: 1.25rem; + } + + .md\:gap-y-6{ + row-gap: 1.5rem; + } + + .md\:gap-y-7{ + row-gap: 1.75rem; + } + + .md\:gap-y-8{ + row-gap: 2rem; + } + + .md\:gap-y-9{ + row-gap: 2.25rem; + } + + .md\:gap-y-10{ + row-gap: 2.5rem; + } + + .md\:gap-y-11{ + row-gap: 2.75rem; + } + + .md\:gap-y-12{ + row-gap: 3rem; + } + + .md\:gap-y-14{ + row-gap: 3.5rem; + } + + .md\:gap-y-16{ + row-gap: 4rem; + } + + .md\:gap-y-20{ + row-gap: 5rem; + } + + .md\:gap-y-24{ + row-gap: 6rem; + } + + .md\:gap-y-28{ + row-gap: 7rem; + } + + .md\:gap-y-32{ + row-gap: 8rem; + } + + .md\:gap-y-36{ + row-gap: 9rem; + } + + .md\:gap-y-40{ + row-gap: 10rem; + } + + .md\:gap-y-44{ + row-gap: 11rem; + } + + .md\:gap-y-48{ + row-gap: 12rem; + } + + .md\:gap-y-52{ + row-gap: 13rem; + } + + .md\:gap-y-56{ + row-gap: 14rem; + } + + .md\:gap-y-60{ + row-gap: 15rem; + } + + .md\:gap-y-64{ + row-gap: 16rem; + } + + .md\:gap-y-72{ + row-gap: 18rem; + } + + .md\:gap-y-80{ + row-gap: 20rem; + } + + .md\:gap-y-96{ + row-gap: 24rem; + } + + .md\:gap-y-px{ + row-gap: 1px; + } + + .md\:gap-y-0\.5{ + row-gap: 0.125rem; + } + + .md\:gap-y-1\.5{ + row-gap: 0.375rem; + } + + .md\:gap-y-2\.5{ + row-gap: 0.625rem; + } + + .md\:gap-y-3\.5{ + row-gap: 0.875rem; + } + + .md\:space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\: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))); + } + + .md\: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))); + } + + .md\: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))); + } + + .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-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))); + } + + .md\: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))); + } + + .md\: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))); + } + + .md\: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))); + } + + .md\:space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-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))); + } + + .md\:-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))); + } + + .md\:-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))); + } + + .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-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))); + } + + .md\:-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))); + } + + .md\:-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))); + } + + .md\:-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))); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * 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\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\: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)); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\: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)); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\: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)); + } + + .md\: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)); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-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\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .md\:-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)); + } + + .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .md\:-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)); + } + + .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .md\:-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)); + } + + .md\:-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)); + } + + .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; + } + + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; + } + + .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\: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))); + } + + .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\: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))); + } + + .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\:divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\: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)); + } + + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; + } + + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; + } + + .md\:divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; + } + + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; + } + + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; + } + + .md\:divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; + } + + .md\:divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; + } + + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; + } + + .md\:divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; + } + + .md\:divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .md\:divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); + } + + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); + } + + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); + } + + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); + } + + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); + } + + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); + } + + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); + } + + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); + } + + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); + } + + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); + } + + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); + } + + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); + } + + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); + } + + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); + } + + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); + } + + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); + } + + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); + } + + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); + } + + .md\:divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); + } + + .md\:divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); + } + + .md\:divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); + } + + .md\:divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); + } + + .md\:divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); + } + + .md\:divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); + } + + .md\:divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); + } + + .md\:divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); + } + + .md\:divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); + } + + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); + } + + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); + } + + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); + } + + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); + } + + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); + } + + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); + } + + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); + } + + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); + } + + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); + } + + .md\:divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); + } + + .md\:divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); + } + + .md\:divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); + } + + .md\:divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); + } + + .md\:divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); + } + + .md\:divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); + } + + .md\:divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); + } + + .md\:divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); + } + + .md\:divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); + } + + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); + } + + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); + } + + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); + } + + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); + } + + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); + } + + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); + } + + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); + } + + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); + } + + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); + } + + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); + } + + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); + } + + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); + } + + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); + } + + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); + } + + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); + } + + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); + } + + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); + } + + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); + } + + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); + } + + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); + } + + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); + } + + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); + } + + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); + } + + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); + } + + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); + } + + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); + } + + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); + } + + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; + } + + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; + } + + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; + } + + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; + } + + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; + } + + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; + } + + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; + } + + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; + } + + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; + } + + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; + } + + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; + } + + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; + } + + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; + } + + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; + } + + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + } + + .md\:place-self-auto{ + place-self: auto; + } + + .md\:place-self-start{ + place-self: start; + } + + .md\:place-self-end{ + place-self: end; + } + + .md\:place-self-center{ + place-self: center; + } + + .md\:place-self-stretch{ + place-self: stretch; + } + + .md\:self-auto{ + align-self: auto; + } + + .md\:self-start{ + align-self: flex-start; + } + + .md\:self-end{ + align-self: flex-end; + } + + .md\:self-center{ + align-self: center; + } + + .md\:self-stretch{ + align-self: stretch; + } + + .md\:self-baseline{ + align-self: baseline; + } + + .md\:justify-self-auto{ + justify-self: auto; + } + + .md\:justify-self-start{ + justify-self: start; + } + + .md\:justify-self-end{ + justify-self: end; + } + + .md\:justify-self-center{ + justify-self: center; + } + + .md\:justify-self-stretch{ + justify-self: stretch; + } + + .md\:overflow-auto{ + overflow: auto; + } + + .md\:overflow-hidden{ + overflow: hidden; + } + + .md\:overflow-visible{ + overflow: visible; + } + + .md\:overflow-scroll{ + overflow: scroll; + } + + .md\:overflow-x-auto{ + overflow-x: auto; + } + + .md\:overflow-y-auto{ + overflow-y: auto; + } + + .md\:overflow-x-hidden{ + overflow-x: hidden; + } + + .md\:overflow-y-hidden{ + overflow-y: hidden; + } + + .md\:overflow-x-visible{ + overflow-x: visible; + } + + .md\:overflow-y-visible{ + overflow-y: visible; + } + + .md\:overflow-x-scroll{ + overflow-x: scroll; + } + + .md\:overflow-y-scroll{ + overflow-y: scroll; + } + + .md\:overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .md\:overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .md\:overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .md\:overscroll-y-auto{ + overscroll-behavior-y: auto; + } + + .md\:overscroll-y-contain{ + overscroll-behavior-y: contain; + } + + .md\:overscroll-y-none{ + overscroll-behavior-y: none; + } + + .md\:overscroll-x-auto{ + overscroll-behavior-x: auto; + } + + .md\:overscroll-x-contain{ + overscroll-behavior-x: contain; + } + + .md\:overscroll-x-none{ + overscroll-behavior-x: none; + } + + .md\:truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .md\:overflow-ellipsis{ + text-overflow: ellipsis; + } + + .md\:overflow-clip{ + text-overflow: clip; + } + + .md\:whitespace-normal{ + white-space: normal; + } + + .md\:whitespace-nowrap{ + white-space: nowrap; + } + + .md\:whitespace-pre{ + white-space: pre; + } + + .md\:whitespace-pre-line{ + white-space: pre-line; + } + + .md\:whitespace-pre-wrap{ + white-space: pre-wrap; + } + + .md\:break-normal{ + overflow-wrap: normal; + word-break: normal; + } + + .md\:break-words{ + overflow-wrap: break-word; + } + + .md\:break-all{ + word-break: break-all; + } + + .md\:rounded-none{ + border-radius: 0px; + } + + .md\:rounded-sm{ + border-radius: 0.125rem; + } + + .md\:rounded{ + border-radius: 0.25rem; + } + + .md\:rounded-md{ + border-radius: 0.375rem; + } + + .md\:rounded-lg{ + border-radius: 0.5rem; + } + + .md\:rounded-xl{ + border-radius: 0.75rem; + } + + .md\:rounded-2xl{ + border-radius: 1rem; + } + + .md\:rounded-3xl{ + border-radius: 1.5rem; + } + + .md\:rounded-full{ + border-radius: 9999px; + } + + .md\:rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; + } + + .md\:rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .md\:rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .md\:rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .md\:rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .md\:rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .md\:rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .md\:rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .md\:rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .md\:rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + } + + .md\:rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .md\:rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .md\:rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + } + + .md\:rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .md\:rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + } + + .md\:rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .md\:rounded-tl-none{ + border-top-left-radius: 0px; + } + + .md\:rounded-tl-sm{ + border-top-left-radius: 0.125rem; + } + + .md\:rounded-tl{ + border-top-left-radius: 0.25rem; + } + + .md\:rounded-tl-md{ + border-top-left-radius: 0.375rem; + } + + .md\:rounded-tl-lg{ + border-top-left-radius: 0.5rem; + } + + .md\:rounded-tl-xl{ + border-top-left-radius: 0.75rem; + } + + .md\:rounded-tl-2xl{ + border-top-left-radius: 1rem; + } + + .md\:rounded-tl-3xl{ + border-top-left-radius: 1.5rem; + } + + .md\:rounded-tl-full{ + border-top-left-radius: 9999px; + } + + .md\:rounded-tr-none{ + border-top-right-radius: 0px; + } + + .md\:rounded-tr-sm{ + border-top-right-radius: 0.125rem; + } + + .md\:rounded-tr{ + border-top-right-radius: 0.25rem; + } + + .md\:rounded-tr-md{ + border-top-right-radius: 0.375rem; + } + + .md\:rounded-tr-lg{ + border-top-right-radius: 0.5rem; + } + + .md\:rounded-tr-xl{ + border-top-right-radius: 0.75rem; + } + + .md\:rounded-tr-2xl{ + border-top-right-radius: 1rem; + } + + .md\:rounded-tr-3xl{ + border-top-right-radius: 1.5rem; + } + + .md\:rounded-tr-full{ + border-top-right-radius: 9999px; + } + + .md\:rounded-br-none{ + border-bottom-right-radius: 0px; + } + + .md\:rounded-br-sm{ + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-br{ + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-br-md{ + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-br-lg{ + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-br-xl{ + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-br-2xl{ + border-bottom-right-radius: 1rem; + } + + .md\:rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-br-full{ + border-bottom-right-radius: 9999px; + } + + .md\:rounded-bl-none{ + border-bottom-left-radius: 0px; + } + + .md\:rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-bl{ + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-bl-md{ + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-bl-2xl{ + border-bottom-left-radius: 1rem; + } + + .md\:rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-bl-full{ + border-bottom-left-radius: 9999px; + } + + .md\:border-0{ + border-width: 0px; + } + + .md\:border-2{ + border-width: 2px; + } + + .md\:border-4{ + border-width: 4px; + } + + .md\:border-8{ + border-width: 8px; + } + + .md\:border{ + border-width: 1px; + } + + .md\:border-t-0{ + border-top-width: 0px; + } + + .md\:border-t-2{ + border-top-width: 2px; + } + + .md\:border-t-4{ + border-top-width: 4px; + } + + .md\:border-t-8{ + border-top-width: 8px; + } + + .md\:border-t{ + border-top-width: 1px; + } + + .md\:border-r-0{ + border-right-width: 0px; + } + + .md\:border-r-2{ + border-right-width: 2px; + } + + .md\:border-r-4{ + border-right-width: 4px; + } + + .md\:border-r-8{ + border-right-width: 8px; + } + + .md\:border-r{ + border-right-width: 1px; + } + + .md\:border-b-0{ + border-bottom-width: 0px; + } + + .md\:border-b-2{ + border-bottom-width: 2px; + } + + .md\:border-b-4{ + border-bottom-width: 4px; + } + + .md\:border-b-8{ + border-bottom-width: 8px; + } + + .md\:border-b{ + border-bottom-width: 1px; + } + + .md\:border-l-0{ + border-left-width: 0px; + } + + .md\:border-l-2{ + border-left-width: 2px; + } + + .md\:border-l-4{ + border-left-width: 4px; + } + + .md\:border-l-8{ + border-left-width: 8px; + } + + .md\:border-l{ + border-left-width: 1px; + } + + .md\:border-solid{ + border-style: solid; + } + + .md\:border-dashed{ + border-style: dashed; + } + + .md\:border-dotted{ + border-style: dotted; + } + + .md\:border-double{ + border-style: double; + } + + .md\:border-none{ + border-style: none; + } + + .md\:border-transparent{ + border-color: transparent; + } + + .md\:border-current{ + border-color: currentColor; + } + + .md\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .md\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .md\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .md\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .md\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .md\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .md\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .md\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .md\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .md\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .md\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .md\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .md\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .md\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .md\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .md\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .md\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .md\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .md\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .md\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .md\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .md\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .md\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .md\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .md\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .md\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .md\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .md\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .md\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .md\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .md\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .md\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .md\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .md\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .md\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .md\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .md\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .md\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .md\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .md\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .md\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .md\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .md\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .md\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .md\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .md\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .md\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .md\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .md\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .md\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .md\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .md\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .md\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .md\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .md\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .md\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .md\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .md\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .md\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .md\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .md\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .md\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .md\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .md\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .md\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .md\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .md\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .md\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .md\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .md\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .md\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .md\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .md\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .md\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .md\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .md\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .md\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .md\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .md\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .md\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .md\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .md\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .md\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .md\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .md\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .md\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .md\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .md\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .md\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-transparent{ + border-color: transparent; + } + + .group:hover .md\:group-hover\:border-current{ + border-color: currentColor; + } + + .group:hover .md\:group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-transparent:focus-within{ + border-color: transparent; + } + + .md\:focus-within\:border-current:focus-within{ + border-color: currentColor; + } + + .md\:focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .md\:hover\:border-transparent:hover{ + border-color: transparent; + } + + .md\:hover\:border-current:hover{ + border-color: currentColor; + } + + .md\:hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .md\:hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .md\:hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .md\:hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .md\:hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .md\:focus\:border-transparent:focus{ + border-color: transparent; + } + + .md\:focus\:border-current:focus{ + border-color: currentColor; + } + + .md\:focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .md\:focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .md\:focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .md\:focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .md\:focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .md\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .md\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .md\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .md\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .md\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .md\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .md\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .md\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .md\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .md\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .md\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .md\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .md\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .md\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .md\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .group:hover .md\:group-hover\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .group:hover .md\:group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .group:hover .md\:group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .group:hover .md\:group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .group:hover .md\:group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .group:hover .md\:group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .group:hover .md\:group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .group:hover .md\:group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .group:hover .md\:group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .group:hover .md\:group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .group:hover .md\:group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .group:hover .md\:group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .group:hover .md\:group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .group:hover .md\:group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .group:hover .md\:group-hover\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .md\:focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; + } + + .md\:focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; + } + + .md\:focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; + } + + .md\:focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; + } + + .md\:focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; + } + + .md\:focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; + } + + .md\:focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; + } + + .md\:focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; + } + + .md\:focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; + } + + .md\:focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; + } + + .md\:focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; + } + + .md\:focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; + } + + .md\:focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; + } + + .md\:focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; + } + + .md\:focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; + } + + .md\:hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; + } + + .md\:hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; + } + + .md\:hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; + } + + .md\:hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; + } + + .md\:hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; + } + + .md\:hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; + } + + .md\:hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; + } + + .md\:hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; + } + + .md\:hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; + } + + .md\:hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; + } + + .md\:hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; + } + + .md\:hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; + } + + .md\:hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; + } + + .md\:hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; + } + + .md\:hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; + } + + .md\:focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; + } + + .md\:focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; + } + + .md\:focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; + } + + .md\:focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; + } + + .md\:focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; + } + + .md\:focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; + } + + .md\:focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; + } + + .md\:focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; + } + + .md\:focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; + } + + .md\:focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; + } + + .md\:focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; + } + + .md\:focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; + } + + .md\:focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; + } + + .md\:focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; + } + + .md\:focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; + } + + .md\:bg-transparent{ + background-color: transparent; + } + + .md\:bg-current{ + background-color: currentColor; + } + + .md\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .md\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .md\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .md\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .md\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .md\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .md\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .md\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .md\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .md\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .md\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .md\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .md\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .md\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .md\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .md\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .md\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .md\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .md\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .md\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .md\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .md\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .md\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .md\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .md\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .md\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .md\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .md\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .md\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .md\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .md\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .md\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .md\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .md\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .md\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .md\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .md\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .md\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .md\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .md\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .md\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .md\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .md\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .md\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .md\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .md\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .md\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .md\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .md\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .md\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .md\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .md\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .md\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .md\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .md\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .md\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .md\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .md\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .md\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .md\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .md\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .md\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .md\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .md\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .md\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .md\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .md\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .md\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .md\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .md\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .md\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .md\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-transparent{ + background-color: transparent; + } + + .group:hover .md\:group-hover\:bg-current{ + background-color: currentColor; + } + + .group:hover .md\:group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-transparent:focus-within{ + background-color: transparent; + } + + .md\:focus-within\:bg-current:focus-within{ + background-color: currentColor; + } + + .md\:focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-transparent:hover{ + background-color: transparent; + } + + .md\:hover\:bg-current:hover{ + background-color: currentColor; + } + + .md\:hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-transparent:focus{ + background-color: transparent; + } + + .md\:focus\:bg-current:focus{ + background-color: currentColor; + } + + .md\:focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .md\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .md\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .md\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .md\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .md\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .md\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .md\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .md\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .md\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .md\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .md\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .md\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .md\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .md\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .md\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .group:hover .md\:group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .group:hover .md\:group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .group:hover .md\:group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .group:hover .md\:group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .group:hover .md\:group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .group:hover .md\:group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .group:hover .md\:group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .group:hover .md\:group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .group:hover .md\:group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .group:hover .md\:group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .group:hover .md\:group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .group:hover .md\:group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .group:hover .md\:group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .group:hover .md\:group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .group:hover .md\:group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .md\:focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; + } + + .md\:focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; + } + + .md\:focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; + } + + .md\:focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; + } + + .md\:focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; + } + + .md\:focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; + } + + .md\:focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; + } + + .md\:focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; + } + + .md\:focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; + } + + .md\:focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; + } + + .md\:focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; + } + + .md\:focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; + } + + .md\:focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; + } + + .md\:focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; + } + + .md\:focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; + } + + .md\:hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; + } + + .md\:hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; + } + + .md\:hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; + } + + .md\:hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; + } + + .md\:hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; + } + + .md\:hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; + } + + .md\:hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; + } + + .md\:hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; + } + + .md\:hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; + } + + .md\:hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; + } + + .md\:hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; + } + + .md\:hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; + } + + .md\:hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; + } + + .md\:hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; + } + + .md\:hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; + } + + .md\:focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; + } + + .md\:focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; + } + + .md\:focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; + } + + .md\:focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; + } + + .md\:focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; + } + + .md\:focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; + } + + .md\:focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; + } + + .md\:focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; + } + + .md\:focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; + } + + .md\:focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; + } + + .md\:focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; + } + + .md\:focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; + } + + .md\:focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; + } + + .md\:focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; + } + + .md\:focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; + } + + .md\:bg-none{ + background-image: none; + } + + .md\:bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .md\:from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .md\:focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .md\:focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .md\:focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .md\:focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .md\:focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .md\:focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .md\:focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .md\:focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .md\:focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .md\:focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .md\:focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .md\:focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .md\:focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .md\:focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .md\:focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .md\:focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .md\:focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .md\:focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .md\:focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .md\:focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .md\:focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .md\:focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .md\:focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .md\:focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .md\:focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .md\:focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .md\:focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .md\:focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .md\:focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .md\:focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .md\:focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .md\:focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .md\:focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .md\:focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .md\:focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .md\:focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .md\:focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .md\:focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .md\:focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .md\:focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .md\:focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .md\:focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .md\:focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .md\:focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .md\:focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .md\:focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .md\:focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .md\:focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .md\:focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .md\:focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .md\:focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .md\:focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .md\:focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .md\:focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .md\:focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .md\:focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .md\:focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .md\:focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .md\:focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .md\:focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .md\:focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .md\:focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .md\:focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .md\:focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .md\:focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .md\:focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .md\:focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .md\:focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .md\:focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .md\:focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .md\:focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .md\:focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .md\:focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .md\:focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .md\:focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .md\:focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .md\:focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .md\:focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .md\:focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .md\:focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .md\:focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .md\:focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .md\:focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .md\:focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .md\:focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .md\:focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .md\:focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .md\:focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .md\:focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .md\:to-transparent{ + --tw-gradient-to: transparent; + } + + .md\:to-current{ + --tw-gradient-to: currentColor; + } + + .md\:to-black{ + --tw-gradient-to: #000; + } + + .md\:to-white{ + --tw-gradient-to: #fff; + } + + .md\:to-gray-100{ + --tw-gradient-to: #f7fafc; + } + + .md\:to-gray-200{ + --tw-gradient-to: #edf2f7; + } + + .md\:to-gray-300{ + --tw-gradient-to: #e2e8f0; + } + + .md\:to-gray-400{ + --tw-gradient-to: #cbd5e0; + } + + .md\:to-gray-500{ + --tw-gradient-to: #a0aec0; + } + + .md\:to-gray-600{ + --tw-gradient-to: #718096; + } + + .md\:to-gray-700{ + --tw-gradient-to: #4a5568; + } + + .md\:to-gray-800{ + --tw-gradient-to: #2d3748; + } + + .md\:to-gray-900{ + --tw-gradient-to: #1a202c; + } + + .md\:to-red-100{ + --tw-gradient-to: #fff5f5; + } + + .md\:to-red-200{ + --tw-gradient-to: #fed7d7; + } + + .md\:to-red-300{ + --tw-gradient-to: #feb2b2; + } + + .md\:to-red-400{ + --tw-gradient-to: #fc8181; + } + + .md\:to-red-500{ + --tw-gradient-to: #f56565; + } + + .md\:to-red-600{ + --tw-gradient-to: #e53e3e; + } + + .md\:to-red-700{ + --tw-gradient-to: #c53030; + } + + .md\:to-red-800{ + --tw-gradient-to: #9b2c2c; + } + + .md\:to-red-900{ + --tw-gradient-to: #742a2a; + } + + .md\:to-orange-100{ + --tw-gradient-to: #fffaf0; + } + + .md\:to-orange-200{ + --tw-gradient-to: #feebc8; + } + + .md\:to-orange-300{ + --tw-gradient-to: #fbd38d; + } + + .md\:to-orange-400{ + --tw-gradient-to: #f6ad55; + } + + .md\:to-orange-500{ + --tw-gradient-to: #ed8936; + } + + .md\:to-orange-600{ + --tw-gradient-to: #dd6b20; + } + + .md\:to-orange-700{ + --tw-gradient-to: #c05621; + } + + .md\:to-orange-800{ + --tw-gradient-to: #9c4221; + } + + .md\:to-orange-900{ + --tw-gradient-to: #7b341e; + } + + .md\:to-yellow-100{ + --tw-gradient-to: #fffff0; + } + + .md\:to-yellow-200{ + --tw-gradient-to: #fefcbf; + } + + .md\:to-yellow-300{ + --tw-gradient-to: #faf089; + } + + .md\:to-yellow-400{ + --tw-gradient-to: #f6e05e; + } + + .md\:to-yellow-500{ + --tw-gradient-to: #ecc94b; + } + + .md\:to-yellow-600{ + --tw-gradient-to: #d69e2e; + } + + .md\:to-yellow-700{ + --tw-gradient-to: #b7791f; + } + + .md\:to-yellow-800{ + --tw-gradient-to: #975a16; + } + + .md\:to-yellow-900{ + --tw-gradient-to: #744210; + } + + .md\:to-green-100{ + --tw-gradient-to: #f0fff4; + } + + .md\:to-green-200{ + --tw-gradient-to: #c6f6d5; + } + + .md\:to-green-300{ + --tw-gradient-to: #9ae6b4; + } + + .md\:to-green-400{ + --tw-gradient-to: #68d391; + } + + .md\:to-green-500{ + --tw-gradient-to: #48bb78; + } + + .md\:to-green-600{ + --tw-gradient-to: #38a169; + } + + .md\:to-green-700{ + --tw-gradient-to: #2f855a; + } + + .md\:to-green-800{ + --tw-gradient-to: #276749; + } + + .md\:to-green-900{ + --tw-gradient-to: #22543d; + } + + .md\:to-teal-100{ + --tw-gradient-to: #e6fffa; + } + + .md\:to-teal-200{ + --tw-gradient-to: #b2f5ea; + } + + .md\:to-teal-300{ + --tw-gradient-to: #81e6d9; + } + + .md\:to-teal-400{ + --tw-gradient-to: #4fd1c5; + } + + .md\:to-teal-500{ + --tw-gradient-to: #38b2ac; + } + + .md\:to-teal-600{ + --tw-gradient-to: #319795; + } + + .md\:to-teal-700{ + --tw-gradient-to: #2c7a7b; + } + + .md\:to-teal-800{ + --tw-gradient-to: #285e61; + } + + .md\:to-teal-900{ + --tw-gradient-to: #234e52; + } + + .md\:to-blue-100{ + --tw-gradient-to: #ebf8ff; + } + + .md\:to-blue-200{ + --tw-gradient-to: #bee3f8; + } + + .md\:to-blue-300{ + --tw-gradient-to: #90cdf4; + } + + .md\:to-blue-400{ + --tw-gradient-to: #63b3ed; + } + + .md\:to-blue-500{ + --tw-gradient-to: #4299e1; + } + + .md\:to-blue-600{ + --tw-gradient-to: #3182ce; + } + + .md\:to-blue-700{ + --tw-gradient-to: #2b6cb0; + } + + .md\:to-blue-800{ + --tw-gradient-to: #2c5282; + } + + .md\:to-blue-900{ + --tw-gradient-to: #2a4365; + } + + .md\:to-indigo-100{ + --tw-gradient-to: #ebf4ff; + } + + .md\:to-indigo-200{ + --tw-gradient-to: #c3dafe; + } + + .md\:to-indigo-300{ + --tw-gradient-to: #a3bffa; + } + + .md\:to-indigo-400{ + --tw-gradient-to: #7f9cf5; + } + + .md\:to-indigo-500{ + --tw-gradient-to: #667eea; + } + + .md\:to-indigo-600{ + --tw-gradient-to: #5a67d8; + } + + .md\:to-indigo-700{ + --tw-gradient-to: #4c51bf; + } + + .md\:to-indigo-800{ + --tw-gradient-to: #434190; + } + + .md\:to-indigo-900{ + --tw-gradient-to: #3c366b; + } + + .md\:to-purple-100{ + --tw-gradient-to: #faf5ff; + } + + .md\:to-purple-200{ + --tw-gradient-to: #e9d8fd; + } + + .md\:to-purple-300{ + --tw-gradient-to: #d6bcfa; + } + + .md\:to-purple-400{ + --tw-gradient-to: #b794f4; + } + + .md\:to-purple-500{ + --tw-gradient-to: #9f7aea; + } + + .md\:to-purple-600{ + --tw-gradient-to: #805ad5; + } + + .md\:to-purple-700{ + --tw-gradient-to: #6b46c1; + } + + .md\:to-purple-800{ + --tw-gradient-to: #553c9a; + } + + .md\:to-purple-900{ + --tw-gradient-to: #44337a; + } + + .md\:to-pink-100{ + --tw-gradient-to: #fff5f7; + } + + .md\:to-pink-200{ + --tw-gradient-to: #fed7e2; + } + + .md\:to-pink-300{ + --tw-gradient-to: #fbb6ce; + } + + .md\:to-pink-400{ + --tw-gradient-to: #f687b3; + } + + .md\:to-pink-500{ + --tw-gradient-to: #ed64a6; + } + + .md\:to-pink-600{ + --tw-gradient-to: #d53f8c; + } + + .md\:to-pink-700{ + --tw-gradient-to: #b83280; + } + + .md\:to-pink-800{ + --tw-gradient-to: #97266d; + } + + .md\:to-pink-900{ + --tw-gradient-to: #702459; + } + + .md\:hover\:to-transparent:hover{ + --tw-gradient-to: transparent; + } + + .md\:hover\:to-current:hover{ + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-black:hover{ + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover{ + --tw-gradient-to: #fff; + } + + .md\:hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; + } + + .md\:hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; + } + + .md\:hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; + } + + .md\:hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; + } + + .md\:hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; + } + + .md\:hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; + } + + .md\:hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; + } + + .md\:hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; + } + + .md\:hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; + } + + .md\:hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; + } + + .md\:hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; + } + + .md\:hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; + } + + .md\:hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; + } + + .md\:hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; + } + + .md\:hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; + } + + .md\:hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; + } + + .md\:hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; + } + + .md\:hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; + } + + .md\:hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; + } + + .md\:hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; + } + + .md\:hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; + } + + .md\:hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; + } + + .md\:hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; + } + + .md\:hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; + } + + .md\:hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; + } + + .md\:hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; + } + + .md\:hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; + } + + .md\:hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; + } + + .md\:hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; + } + + .md\:hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; + } + + .md\:hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; + } + + .md\:hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; + } + + .md\:hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; + } + + .md\:hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; + } + + .md\:hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; + } + + .md\:hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; + } + + .md\:hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; + } + + .md\:hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; + } + + .md\:hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; + } + + .md\:hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; + } + + .md\:hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; + } + + .md\:hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; + } + + .md\:hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; + } + + .md\:hover\:to-green-800:hover{ + --tw-gradient-to: #276749; + } + + .md\:hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; + } + + .md\:hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; + } + + .md\:hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; + } + + .md\:hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; + } + + .md\:hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; + } + + .md\:hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; + } + + .md\:hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; + } + + .md\:hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; + } + + .md\:hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; + } + + .md\:hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; + } + + .md\:hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; + } + + .md\:hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; + } + + .md\:hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; + } + + .md\:hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; + } + + .md\:hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; + } + + .md\:hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; + } + + .md\:hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; + } + + .md\:hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; + } + + .md\:hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; + } + + .md\:hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; + } + + .md\:hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; + } + + .md\:hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; + } + + .md\:hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; + } + + .md\:hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; + } + + .md\:hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; + } + + .md\:hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; + } + + .md\:hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; + } + + .md\:hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; + } + + .md\:hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; + } + + .md\:hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; + } + + .md\:hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; + } + + .md\:hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; + } + + .md\:hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; + } + + .md\:hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; + } + + .md\:hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; + } + + .md\:hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; + } + + .md\:hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; + } + + .md\:hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; + } + + .md\:hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; + } + + .md\:hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; + } + + .md\:hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; + } + + .md\:hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; + } + + .md\:hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; + } + + .md\:hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; + } + + .md\:hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; + } + + .md\:hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; + } + + .md\:focus\:to-transparent:focus{ + --tw-gradient-to: transparent; + } + + .md\:focus\:to-current:focus{ + --tw-gradient-to: currentColor; + } + + .md\:focus\:to-black:focus{ + --tw-gradient-to: #000; + } + + .md\:focus\:to-white:focus{ + --tw-gradient-to: #fff; + } + + .md\:focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; + } + + .md\:focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; + } + + .md\:focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; + } + + .md\:focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; + } + + .md\:focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; + } + + .md\:focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; + } + + .md\:focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; + } + + .md\:focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; + } + + .md\:focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; + } + + .md\:focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; + } + + .md\:focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; + } + + .md\:focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; + } + + .md\:focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; + } + + .md\:focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; + } + + .md\:focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; + } + + .md\:focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; + } + + .md\:focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; + } + + .md\:focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; + } + + .md\:focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; + } + + .md\:focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; + } + + .md\:focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; + } + + .md\:focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; + } + + .md\:focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; + } + + .md\:focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; + } + + .md\:focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; + } + + .md\:focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; + } + + .md\:focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; + } + + .md\:focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; + } + + .md\:focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; + } + + .md\:focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; + } + + .md\:focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; + } + + .md\:focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; + } + + .md\:focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; + } + + .md\:focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; + } + + .md\:focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; + } + + .md\:focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; + } + + .md\:focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; + } + + .md\:focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; + } + + .md\:focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; + } + + .md\:focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; + } + + .md\:focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; + } + + .md\:focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; + } + + .md\:focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; + } + + .md\:focus\:to-green-800:focus{ + --tw-gradient-to: #276749; + } + + .md\:focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; + } + + .md\:focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; + } + + .md\:focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; + } + + .md\:focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; + } + + .md\:focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; + } + + .md\:focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; + } + + .md\:focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; + } + + .md\:focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; + } + + .md\:focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; + } + + .md\:focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; + } + + .md\:focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; + } + + .md\:focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; + } + + .md\:focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; + } + + .md\:focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; + } + + .md\:focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; + } + + .md\:focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; + } + + .md\:focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; + } + + .md\:focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; + } + + .md\:focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; + } + + .md\:focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; + } + + .md\:focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; + } + + .md\:focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; + } + + .md\:focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; + } + + .md\:focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; + } + + .md\:focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; + } + + .md\:focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; + } + + .md\:focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; + } + + .md\:focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; + } + + .md\:focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; + } + + .md\:focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; + } + + .md\:focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; + } + + .md\:focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; + } + + .md\:focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; + } + + .md\:focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; + } + + .md\:focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; + } + + .md\:focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; + } + + .md\:focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; + } + + .md\:focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; + } + + .md\:focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; + } + + .md\:focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; + } + + .md\:focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; + } + + .md\:focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; + } + + .md\:focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; + } + + .md\:focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; + } + + .md\:focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; + } + + .md\:focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; + } + + .md\:decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; + } + + .md\:decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + } + + .md\:bg-auto{ + background-size: auto; + } + + .md\:bg-cover{ + background-size: cover; + } + + .md\:bg-contain{ + background-size: contain; + } + + .md\:bg-fixed{ + background-attachment: fixed; + } + + .md\:bg-local{ + background-attachment: local; + } + + .md\:bg-scroll{ + background-attachment: scroll; + } + + .md\:bg-clip-border{ + background-clip: border-box; + } + + .md\:bg-clip-padding{ + background-clip: padding-box; + } + + .md\:bg-clip-content{ + background-clip: content-box; + } + + .md\:bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; + } + + .md\:bg-bottom{ + background-position: bottom; + } + + .md\:bg-center{ + background-position: center; + } + + .md\:bg-left{ + background-position: left; + } + + .md\:bg-left-bottom{ + background-position: left bottom; + } + + .md\:bg-left-top{ + background-position: left top; + } + + .md\:bg-right{ + background-position: right; + } + + .md\:bg-right-bottom{ + background-position: right bottom; + } + + .md\:bg-right-top{ + background-position: right top; + } + + .md\:bg-top{ + background-position: top; + } + + .md\:bg-repeat{ + background-repeat: repeat; + } + + .md\:bg-no-repeat{ + background-repeat: no-repeat; + } + + .md\:bg-repeat-x{ + background-repeat: repeat-x; + } + + .md\:bg-repeat-y{ + background-repeat: repeat-y; + } + + .md\:bg-repeat-round{ + background-repeat: round; + } + + .md\:bg-repeat-space{ + background-repeat: space; + } + + .md\:bg-origin-border{ + background-origin: border-box; + } + + .md\:bg-origin-padding{ + background-origin: padding-box; + } + + .md\:bg-origin-content{ + background-origin: content-box; + } + + .md\:fill-current{ + fill: currentColor; + } + + .md\:stroke-current{ + stroke: currentColor; + } + + .md\:stroke-0{ + stroke-width: 0; + } + + .md\:stroke-1{ + stroke-width: 1; + } + + .md\:stroke-2{ + stroke-width: 2; + } + + .md\:object-contain{ + -o-object-fit: contain; + object-fit: contain; + } + + .md\:object-cover{ + -o-object-fit: cover; + object-fit: cover; + } + + .md\:object-fill{ + -o-object-fit: fill; + object-fit: fill; + } + + .md\:object-none{ + -o-object-fit: none; + object-fit: none; + } + + .md\:object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .md\:object-bottom{ + -o-object-position: bottom; + object-position: bottom; + } + + .md\:object-center{ + -o-object-position: center; + object-position: center; + } + + .md\:object-left{ + -o-object-position: left; + object-position: left; + } + + .md\:object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; + } + + .md\:object-left-top{ + -o-object-position: left top; + object-position: left top; + } + + .md\:object-right{ + -o-object-position: right; + object-position: right; + } + + .md\:object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; + } + + .md\:object-right-top{ + -o-object-position: right top; + object-position: right top; + } + + .md\:object-top{ + -o-object-position: top; + object-position: top; + } + + .md\:p-0{ + padding: 0px; + } + + .md\:p-1{ + padding: 0.25rem; + } + + .md\:p-2{ + padding: 0.5rem; + } + + .md\:p-3{ + padding: 0.75rem; + } + + .md\:p-4{ + padding: 1rem; + } + + .md\:p-5{ + padding: 1.25rem; + } + + .md\:p-6{ + padding: 1.5rem; + } + + .md\:p-7{ + padding: 1.75rem; + } + + .md\:p-8{ + padding: 2rem; + } + + .md\:p-9{ + padding: 2.25rem; + } + + .md\:p-10{ + padding: 2.5rem; + } + + .md\:p-11{ + padding: 2.75rem; + } + + .md\:p-12{ + padding: 3rem; + } + + .md\:p-14{ + padding: 3.5rem; + } + + .md\:p-16{ + padding: 4rem; + } + + .md\:p-20{ + padding: 5rem; + } + + .md\:p-24{ + padding: 6rem; + } + + .md\:p-28{ + padding: 7rem; + } + + .md\:p-32{ + padding: 8rem; + } + + .md\:p-36{ + padding: 9rem; + } + + .md\:p-40{ + padding: 10rem; + } + + .md\:p-44{ + padding: 11rem; + } + + .md\:p-48{ + padding: 12rem; + } + + .md\:p-52{ + padding: 13rem; + } + + .md\:p-56{ + padding: 14rem; + } + + .md\:p-60{ + padding: 15rem; + } + + .md\:p-64{ + padding: 16rem; + } + + .md\:p-72{ + padding: 18rem; + } + + .md\:p-80{ + padding: 20rem; + } + + .md\:p-96{ + padding: 24rem; + } + + .md\:p-px{ + padding: 1px; + } + + .md\:p-0\.5{ + padding: 0.125rem; + } + + .md\:p-1\.5{ + padding: 0.375rem; + } + + .md\:p-2\.5{ + padding: 0.625rem; + } + + .md\:p-3\.5{ + padding: 0.875rem; + } + + .md\:px-0{ + padding-left: 0px; + padding-right: 0px; + } + + .md\:px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .md\:px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .md\:px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .md\:px-4{ + padding-left: 1rem; + padding-right: 1rem; + } + + .md\:px-5{ + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .md\:px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .md\:px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .md\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } + + .md\:px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .md\:px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .md\:px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .md\:px-12{ + padding-left: 3rem; + padding-right: 3rem; + } + + .md\:px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .md\:px-16{ + padding-left: 4rem; + padding-right: 4rem; + } + + .md\:px-20{ + padding-left: 5rem; + padding-right: 5rem; + } + + .md\:px-24{ + padding-left: 6rem; + padding-right: 6rem; + } + + .md\:px-28{ + padding-left: 7rem; + padding-right: 7rem; + } + + .md\:px-32{ + padding-left: 8rem; + padding-right: 8rem; + } + + .md\:px-36{ + padding-left: 9rem; + padding-right: 9rem; + } + + .md\:px-40{ + padding-left: 10rem; + padding-right: 10rem; + } + + .md\:px-44{ + padding-left: 11rem; + padding-right: 11rem; + } + + .md\:px-48{ + padding-left: 12rem; + padding-right: 12rem; + } + + .md\:px-52{ + padding-left: 13rem; + padding-right: 13rem; + } + + .md\:px-56{ + padding-left: 14rem; + padding-right: 14rem; + } + + .md\:px-60{ + padding-left: 15rem; + padding-right: 15rem; + } + + .md\:px-64{ + padding-left: 16rem; + padding-right: 16rem; + } + + .md\:px-72{ + padding-left: 18rem; + padding-right: 18rem; + } + + .md\:px-80{ + padding-left: 20rem; + padding-right: 20rem; + } + + .md\:px-96{ + padding-left: 24rem; + padding-right: 24rem; + } + + .md\:px-px{ + padding-left: 1px; + padding-right: 1px; + } + + .md\:px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .md\:px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .md\:px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .md\:px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .md\:py-0{ + padding-top: 0px; + padding-bottom: 0px; + } + + .md\:py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .md\:py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .md\:py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .md\:py-4{ + padding-top: 1rem; + padding-bottom: 1rem; + } + + .md\:py-5{ + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .md\:py-6{ + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .md\:py-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .md\:py-8{ + padding-top: 2rem; + padding-bottom: 2rem; + } + + .md\:py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .md\:py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .md\:py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .md\:py-12{ + padding-top: 3rem; + padding-bottom: 3rem; + } + + .md\:py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .md\:py-16{ + padding-top: 4rem; + padding-bottom: 4rem; + } + + .md\:py-20{ + padding-top: 5rem; + padding-bottom: 5rem; + } + + .md\:py-24{ + padding-top: 6rem; + padding-bottom: 6rem; + } + + .md\:py-28{ + padding-top: 7rem; + padding-bottom: 7rem; + } + + .md\:py-32{ + padding-top: 8rem; + padding-bottom: 8rem; + } + + .md\:py-36{ + padding-top: 9rem; + padding-bottom: 9rem; + } + + .md\:py-40{ + padding-top: 10rem; + padding-bottom: 10rem; + } + + .md\:py-44{ + padding-top: 11rem; + padding-bottom: 11rem; + } + + .md\:py-48{ + padding-top: 12rem; + padding-bottom: 12rem; + } + + .md\:py-52{ + padding-top: 13rem; + padding-bottom: 13rem; + } + + .md\:py-56{ + padding-top: 14rem; + padding-bottom: 14rem; + } + + .md\:py-60{ + padding-top: 15rem; + padding-bottom: 15rem; + } + + .md\:py-64{ + padding-top: 16rem; + padding-bottom: 16rem; + } + + .md\:py-72{ + padding-top: 18rem; + padding-bottom: 18rem; + } + + .md\:py-80{ + padding-top: 20rem; + padding-bottom: 20rem; + } + + .md\:py-96{ + padding-top: 24rem; + padding-bottom: 24rem; + } + + .md\:py-px{ + padding-top: 1px; + padding-bottom: 1px; + } + + .md\:py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .md\:py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .md\:py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .md\:py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .md\:pt-0{ + padding-top: 0px; + } + + .md\:pt-1{ + padding-top: 0.25rem; + } + + .md\:pt-2{ + padding-top: 0.5rem; + } + + .md\:pt-3{ + padding-top: 0.75rem; + } + + .md\:pt-4{ + padding-top: 1rem; + } + + .md\:pt-5{ + padding-top: 1.25rem; + } + + .md\:pt-6{ + padding-top: 1.5rem; + } + + .md\:pt-7{ + padding-top: 1.75rem; + } + + .md\:pt-8{ + padding-top: 2rem; + } + + .md\:pt-9{ + padding-top: 2.25rem; + } + + .md\:pt-10{ + padding-top: 2.5rem; + } + + .md\:pt-11{ + padding-top: 2.75rem; + } + + .md\:pt-12{ + padding-top: 3rem; + } + + .md\:pt-14{ + padding-top: 3.5rem; + } + + .md\:pt-16{ + padding-top: 4rem; + } + + .md\:pt-20{ + padding-top: 5rem; + } + + .md\:pt-24{ + padding-top: 6rem; + } + + .md\:pt-28{ + padding-top: 7rem; + } + + .md\:pt-32{ + padding-top: 8rem; + } + + .md\:pt-36{ + padding-top: 9rem; + } + + .md\:pt-40{ + padding-top: 10rem; + } + + .md\:pt-44{ + padding-top: 11rem; + } + + .md\:pt-48{ + padding-top: 12rem; + } + + .md\:pt-52{ + padding-top: 13rem; + } + + .md\:pt-56{ + padding-top: 14rem; + } + + .md\:pt-60{ + padding-top: 15rem; + } + + .md\:pt-64{ + padding-top: 16rem; + } + + .md\:pt-72{ + padding-top: 18rem; + } + + .md\:pt-80{ + padding-top: 20rem; + } + + .md\:pt-96{ + padding-top: 24rem; + } + + .md\:pt-px{ + padding-top: 1px; + } + + .md\:pt-0\.5{ + padding-top: 0.125rem; + } + + .md\:pt-1\.5{ + padding-top: 0.375rem; + } + + .md\:pt-2\.5{ + padding-top: 0.625rem; + } + + .md\:pt-3\.5{ + padding-top: 0.875rem; + } + + .md\:pr-0{ + padding-right: 0px; + } + + .md\:pr-1{ + padding-right: 0.25rem; + } + + .md\:pr-2{ + padding-right: 0.5rem; + } + + .md\:pr-3{ + padding-right: 0.75rem; + } + + .md\:pr-4{ + padding-right: 1rem; + } + + .md\:pr-5{ + padding-right: 1.25rem; + } + + .md\:pr-6{ + padding-right: 1.5rem; + } + + .md\:pr-7{ + padding-right: 1.75rem; + } + + .md\:pr-8{ + padding-right: 2rem; + } + + .md\:pr-9{ + padding-right: 2.25rem; + } + + .md\:pr-10{ + padding-right: 2.5rem; + } + + .md\:pr-11{ + padding-right: 2.75rem; + } + + .md\:pr-12{ + padding-right: 3rem; + } + + .md\:pr-14{ + padding-right: 3.5rem; + } + + .md\:pr-16{ + padding-right: 4rem; + } + + .md\:pr-20{ + padding-right: 5rem; + } + + .md\:pr-24{ + padding-right: 6rem; + } + + .md\:pr-28{ + padding-right: 7rem; + } + + .md\:pr-32{ + padding-right: 8rem; + } + + .md\:pr-36{ + padding-right: 9rem; + } + + .md\:pr-40{ + padding-right: 10rem; + } + + .md\:pr-44{ + padding-right: 11rem; + } + + .md\:pr-48{ + padding-right: 12rem; + } + + .md\:pr-52{ + padding-right: 13rem; + } + + .md\:pr-56{ + padding-right: 14rem; + } + + .md\:pr-60{ + padding-right: 15rem; + } + + .md\:pr-64{ + padding-right: 16rem; + } + + .md\:pr-72{ + padding-right: 18rem; + } + + .md\:pr-80{ + padding-right: 20rem; + } + + .md\:pr-96{ + padding-right: 24rem; + } + + .md\:pr-px{ + padding-right: 1px; + } + + .md\:pr-0\.5{ + padding-right: 0.125rem; + } + + .md\:pr-1\.5{ + padding-right: 0.375rem; + } + + .md\:pr-2\.5{ + padding-right: 0.625rem; + } + + .md\:pr-3\.5{ + padding-right: 0.875rem; + } + + .md\:pb-0{ + padding-bottom: 0px; + } + + .md\:pb-1{ + padding-bottom: 0.25rem; + } + + .md\:pb-2{ + padding-bottom: 0.5rem; + } + + .md\:pb-3{ + padding-bottom: 0.75rem; + } + + .md\:pb-4{ + padding-bottom: 1rem; + } + + .md\:pb-5{ + padding-bottom: 1.25rem; + } + + .md\:pb-6{ + padding-bottom: 1.5rem; + } + + .md\:pb-7{ + padding-bottom: 1.75rem; + } + + .md\:pb-8{ + padding-bottom: 2rem; + } + + .md\:pb-9{ + padding-bottom: 2.25rem; + } + + .md\:pb-10{ + padding-bottom: 2.5rem; + } + + .md\:pb-11{ + padding-bottom: 2.75rem; + } + + .md\:pb-12{ + padding-bottom: 3rem; + } + + .md\:pb-14{ + padding-bottom: 3.5rem; + } + + .md\:pb-16{ + padding-bottom: 4rem; + } + + .md\:pb-20{ + padding-bottom: 5rem; + } + + .md\:pb-24{ + padding-bottom: 6rem; + } + + .md\:pb-28{ + padding-bottom: 7rem; + } + + .md\:pb-32{ + padding-bottom: 8rem; + } + + .md\:pb-36{ + padding-bottom: 9rem; + } + + .md\:pb-40{ + padding-bottom: 10rem; + } + + .md\:pb-44{ + padding-bottom: 11rem; + } + + .md\:pb-48{ + padding-bottom: 12rem; + } + + .md\:pb-52{ + padding-bottom: 13rem; + } + + .md\:pb-56{ + padding-bottom: 14rem; + } + + .md\:pb-60{ + padding-bottom: 15rem; + } + + .md\:pb-64{ + padding-bottom: 16rem; + } + + .md\:pb-72{ + padding-bottom: 18rem; + } + + .md\:pb-80{ + padding-bottom: 20rem; + } + + .md\:pb-96{ + padding-bottom: 24rem; + } + + .md\:pb-px{ + padding-bottom: 1px; + } + + .md\:pb-0\.5{ + padding-bottom: 0.125rem; + } + + .md\:pb-1\.5{ + padding-bottom: 0.375rem; + } + + .md\:pb-2\.5{ + padding-bottom: 0.625rem; + } + + .md\:pb-3\.5{ + padding-bottom: 0.875rem; + } + + .md\:pl-0{ + padding-left: 0px; + } + + .md\:pl-1{ + padding-left: 0.25rem; + } + + .md\:pl-2{ + padding-left: 0.5rem; + } + + .md\:pl-3{ + padding-left: 0.75rem; + } + + .md\:pl-4{ + padding-left: 1rem; + } + + .md\:pl-5{ + padding-left: 1.25rem; + } + + .md\:pl-6{ + padding-left: 1.5rem; + } + + .md\:pl-7{ + padding-left: 1.75rem; + } + + .md\:pl-8{ + padding-left: 2rem; + } + + .md\:pl-9{ + padding-left: 2.25rem; + } + + .md\:pl-10{ + padding-left: 2.5rem; + } + + .md\:pl-11{ + padding-left: 2.75rem; + } + + .md\:pl-12{ + padding-left: 3rem; + } + + .md\:pl-14{ + padding-left: 3.5rem; + } + + .md\:pl-16{ + padding-left: 4rem; + } + + .md\:pl-20{ + padding-left: 5rem; + } + + .md\:pl-24{ + padding-left: 6rem; + } + + .md\:pl-28{ + padding-left: 7rem; + } + + .md\:pl-32{ + padding-left: 8rem; + } + + .md\:pl-36{ + padding-left: 9rem; + } + + .md\:pl-40{ + padding-left: 10rem; + } + + .md\:pl-44{ + padding-left: 11rem; + } + + .md\:pl-48{ + padding-left: 12rem; + } + + .md\:pl-52{ + padding-left: 13rem; + } + + .md\:pl-56{ + padding-left: 14rem; + } + + .md\:pl-60{ + padding-left: 15rem; + } + + .md\:pl-64{ + padding-left: 16rem; + } + + .md\:pl-72{ + padding-left: 18rem; + } + + .md\:pl-80{ + padding-left: 20rem; + } + + .md\:pl-96{ + padding-left: 24rem; + } + + .md\:pl-px{ + padding-left: 1px; + } + + .md\:pl-0\.5{ + padding-left: 0.125rem; + } + + .md\:pl-1\.5{ + padding-left: 0.375rem; + } + + .md\:pl-2\.5{ + padding-left: 0.625rem; + } + + .md\:pl-3\.5{ + padding-left: 0.875rem; + } + + .md\:text-left{ + text-align: left; + } + + .md\:text-center{ + text-align: center; + } + + .md\:text-right{ + text-align: right; + } + + .md\:text-justify{ + text-align: justify; + } + + .md\:align-baseline{ + vertical-align: baseline; + } + + .md\:align-top{ + vertical-align: top; + } + + .md\:align-middle{ + vertical-align: middle; + } + + .md\:align-bottom{ + vertical-align: bottom; + } + + .md\:align-text-top{ + vertical-align: text-top; + } + + .md\:align-text-bottom{ + vertical-align: text-bottom; + } + + .md\:font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .md\:font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .md\:font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .md\:text-xs{ + font-size: 0.75rem; + line-height: 1rem; + } + + .md\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + + .md\:text-base{ + font-size: 1rem; + line-height: 1.5rem; + } + + .md\:text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; + } + + .md\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } + + .md\:text-2xl{ + font-size: 1.5rem; + line-height: 2rem; + } + + .md\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + + .md\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + + .md\:text-5xl{ + font-size: 3rem; + line-height: 1; + } + + .md\:text-6xl{ + font-size: 3.75rem; + line-height: 1; + } + + .md\:text-7xl{ + font-size: 4.5rem; + line-height: 1; + } + + .md\:text-8xl{ + font-size: 6rem; + line-height: 1; + } + + .md\:text-9xl{ + font-size: 8rem; + line-height: 1; + } + + .md\:font-thin{ + font-weight: 100; + } + + .md\:font-extralight{ + font-weight: 200; + } + + .md\:font-light{ + font-weight: 300; + } + + .md\:font-normal{ + font-weight: 400; + } + + .md\:font-medium{ + font-weight: 500; + } + + .md\:font-semibold{ + font-weight: 600; + } + + .md\:font-bold{ + font-weight: 700; + } + + .md\:font-extrabold{ + font-weight: 800; + } + + .md\:font-black{ + font-weight: 900; + } + + .md\:uppercase{ + text-transform: uppercase; + } + + .md\:lowercase{ + text-transform: lowercase; + } + + .md\:capitalize{ + text-transform: capitalize; + } + + .md\:normal-case{ + text-transform: none; + } + + .md\:italic{ + font-style: italic; + } + + .md\:not-italic{ + font-style: normal; + } + + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .md\:normal-nums{ + font-variant-numeric: normal; + } + + .md\:ordinal{ + --tw-ordinal: ordinal; + } + + .md\:slashed-zero{ + --tw-slashed-zero: slashed-zero; + } + + .md\:lining-nums{ + --tw-numeric-figure: lining-nums; + } + + .md\:oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; + } + + .md\:proportional-nums{ + --tw-numeric-spacing: proportional-nums; + } + + .md\:tabular-nums{ + --tw-numeric-spacing: tabular-nums; + } + + .md\:diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; + } + + .md\:stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; + } + + .md\:leading-3{ + line-height: .75rem; + } + + .md\:leading-4{ + line-height: 1rem; + } + + .md\:leading-5{ + line-height: 1.25rem; + } + + .md\:leading-6{ + line-height: 1.5rem; + } + + .md\:leading-7{ + line-height: 1.75rem; + } + + .md\:leading-8{ + line-height: 2rem; + } + + .md\:leading-9{ + line-height: 2.25rem; + } + + .md\:leading-10{ + line-height: 2.5rem; + } + + .md\:leading-none{ + line-height: 1; + } + + .md\:leading-tight{ + line-height: 1.25; + } + + .md\:leading-snug{ + line-height: 1.375; + } + + .md\:leading-normal{ + line-height: 1.5; + } + + .md\:leading-relaxed{ + line-height: 1.625; + } + + .md\:leading-loose{ + line-height: 2; + } + + .md\:tracking-tighter{ + letter-spacing: -0.05em; + } + + .md\:tracking-tight{ + letter-spacing: -0.025em; + } + + .md\:tracking-normal{ + letter-spacing: 0em; + } + + .md\:tracking-wide{ + letter-spacing: 0.025em; + } + + .md\:tracking-wider{ + letter-spacing: 0.05em; + } + + .md\:tracking-widest{ + letter-spacing: 0.1em; + } + + .md\:text-transparent{ + color: transparent; + } + + .md\:text-current{ + color: currentColor; + } + + .md\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .md\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .md\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .md\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .md\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .md\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .md\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .md\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .md\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .md\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .md\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .md\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .md\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .md\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .md\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .md\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .md\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .md\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .md\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .md\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .md\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .md\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .md\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .md\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .md\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .md\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .md\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .md\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .md\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .md\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .md\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .md\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .md\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .md\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .md\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .md\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .md\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .md\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .md\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .md\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .md\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .md\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .md\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .md\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .md\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .md\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .md\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .md\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .md\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .md\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .md\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .md\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .md\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .md\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .md\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .md\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .md\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .md\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .md\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .md\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .md\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .md\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .md\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .md\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .md\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .md\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .md\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .md\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .md\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .md\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .md\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .md\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .md\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .md\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .md\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .md\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .md\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .md\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .md\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .md\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .md\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .md\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .md\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .md\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .md\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .md\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .md\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .md\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .md\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-transparent{ + color: transparent; + } + + .group:hover .md\:group-hover\:text-current{ + color: currentColor; + } + + .group:hover .md\:group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-transparent:focus-within{ + color: transparent; + } + + .md\:focus-within\:text-current:focus-within{ + color: currentColor; + } + + .md\:focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .md\:hover\:text-transparent:hover{ + color: transparent; + } + + .md\:hover\:text-current:hover{ + color: currentColor; + } + + .md\:hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .md\:hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .md\:hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .md\:hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .md\:hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .md\:focus\:text-transparent:focus{ + color: transparent; + } + + .md\:focus\:text-current:focus{ + color: currentColor; + } + + .md\:focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .md\:focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .md\:focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .md\:focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .md\:focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .md\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .md\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .md\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .md\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .md\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .md\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .md\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .md\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .md\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .md\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .md\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .md\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .md\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .md\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .md\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .group:hover .md\:group-hover\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .group:hover .md\:group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .group:hover .md\:group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .group:hover .md\:group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .group:hover .md\:group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .group:hover .md\:group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .group:hover .md\:group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .group:hover .md\:group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .group:hover .md\:group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .group:hover .md\:group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .group:hover .md\:group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .group:hover .md\:group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .group:hover .md\:group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .group:hover .md\:group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .group:hover .md\:group-hover\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .md\:focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; + } + + .md\:focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; + } + + .md\:focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; + } + + .md\:focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; + } + + .md\:focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; + } + + .md\:focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; + } + + .md\:focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; + } + + .md\:focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; + } + + .md\:focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; + } + + .md\:focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; + } + + .md\:focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; + } + + .md\:focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; + } + + .md\:focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; + } + + .md\:focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; + } + + .md\:focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; + } + + .md\:hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; + } + + .md\:hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; + } + + .md\:hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; + } + + .md\:hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; + } + + .md\:hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; + } + + .md\:hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; + } + + .md\:hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; + } + + .md\:hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; + } + + .md\:hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; + } + + .md\:hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; + } + + .md\:hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; + } + + .md\:hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; + } + + .md\:hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; + } + + .md\:hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; + } + + .md\:hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; + } + + .md\:focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; + } + + .md\:focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; + } + + .md\:focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; + } + + .md\:focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; + } + + .md\:focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; + } + + .md\:focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; + } + + .md\:focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; + } + + .md\:focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; + } + + .md\:focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; + } + + .md\:focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; + } + + .md\:focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; + } + + .md\:focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; + } + + .md\:focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; + } + + .md\:focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; + } + + .md\:focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; + } + + .md\:underline{ + text-decoration: underline; + } + + .md\:line-through{ + text-decoration: line-through; + } + + .md\:no-underline{ + text-decoration: none; + } + + .group:hover .md\:group-hover\:underline{ + text-decoration: underline; + } + + .group:hover .md\:group-hover\:line-through{ + text-decoration: line-through; + } + + .group:hover .md\:group-hover\:no-underline{ + text-decoration: none; + } + + .md\:focus-within\:underline:focus-within{ + text-decoration: underline; + } + + .md\:focus-within\:line-through:focus-within{ + text-decoration: line-through; + } + + .md\:focus-within\:no-underline:focus-within{ + text-decoration: none; + } + + .md\:hover\:underline:hover{ + text-decoration: underline; + } + + .md\:hover\:line-through:hover{ + text-decoration: line-through; + } + + .md\:hover\:no-underline:hover{ + text-decoration: none; + } + + .md\:focus\:underline:focus{ + text-decoration: underline; + } + + .md\:focus\:line-through:focus{ + text-decoration: line-through; + } + + .md\:focus\:no-underline:focus{ + text-decoration: none; + } + + .md\:antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .md\:subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .md\:placeholder-transparent::-moz-placeholder{ + color: transparent; + } + + .md\:placeholder-transparent:-ms-input-placeholder{ + color: transparent; + } + + .md\:placeholder-transparent::placeholder{ + color: transparent; + } + + .md\:placeholder-current::-moz-placeholder{ + color: currentColor; + } + + .md\:placeholder-current:-ms-input-placeholder{ + color: currentColor; + } + + .md\:placeholder-current::placeholder{ + color: currentColor; + } + + .md\:placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; + } + + .md\:focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; + } + + .md\:focus\:placeholder-transparent:focus::placeholder{ + color: transparent; + } + + .md\:focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; + } + + .md\:focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::placeholder{ + color: currentColor; + } + + .md\:focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + } + + .md\:opacity-0{ + opacity: 0; + } + + .md\:opacity-5{ + opacity: 0.05; + } + + .md\:opacity-10{ + opacity: 0.1; + } + + .md\:opacity-20{ + opacity: 0.2; + } + + .md\:opacity-25{ + opacity: 0.25; + } + + .md\:opacity-30{ + opacity: 0.3; + } + + .md\:opacity-40{ + opacity: 0.4; + } + + .md\:opacity-50{ + opacity: 0.5; + } + + .md\:opacity-60{ + opacity: 0.6; + } + + .md\:opacity-70{ + opacity: 0.7; + } + + .md\:opacity-75{ + opacity: 0.75; + } + + .md\:opacity-80{ + opacity: 0.8; + } + + .md\:opacity-90{ + opacity: 0.9; + } + + .md\:opacity-95{ + opacity: 0.95; + } + + .md\:opacity-100{ + opacity: 1; + } + + .group:hover .md\:group-hover\:opacity-0{ + opacity: 0; + } + + .group:hover .md\:group-hover\:opacity-5{ + opacity: 0.05; + } + + .group:hover .md\:group-hover\:opacity-10{ + opacity: 0.1; + } + + .group:hover .md\:group-hover\:opacity-20{ + opacity: 0.2; + } + + .group:hover .md\:group-hover\:opacity-25{ + opacity: 0.25; + } + + .group:hover .md\:group-hover\:opacity-30{ + opacity: 0.3; + } + + .group:hover .md\:group-hover\:opacity-40{ + opacity: 0.4; + } + + .group:hover .md\:group-hover\:opacity-50{ + opacity: 0.5; + } + + .group:hover .md\:group-hover\:opacity-60{ + opacity: 0.6; + } + + .group:hover .md\:group-hover\:opacity-70{ + opacity: 0.7; + } + + .group:hover .md\:group-hover\:opacity-75{ + opacity: 0.75; + } + + .group:hover .md\:group-hover\:opacity-80{ + opacity: 0.8; + } + + .group:hover .md\:group-hover\:opacity-90{ + opacity: 0.9; + } + + .group:hover .md\:group-hover\:opacity-95{ + opacity: 0.95; + } + + .group:hover .md\:group-hover\:opacity-100{ + opacity: 1; + } + + .md\:focus-within\:opacity-0:focus-within{ + opacity: 0; + } + + .md\:focus-within\:opacity-5:focus-within{ + opacity: 0.05; + } + + .md\:focus-within\:opacity-10:focus-within{ + opacity: 0.1; + } + + .md\:focus-within\:opacity-20:focus-within{ + opacity: 0.2; + } + + .md\:focus-within\:opacity-25:focus-within{ + opacity: 0.25; + } + + .md\:focus-within\:opacity-30:focus-within{ + opacity: 0.3; + } + + .md\:focus-within\:opacity-40:focus-within{ + opacity: 0.4; + } + + .md\:focus-within\:opacity-50:focus-within{ + opacity: 0.5; + } + + .md\:focus-within\:opacity-60:focus-within{ + opacity: 0.6; + } + + .md\:focus-within\:opacity-70:focus-within{ + opacity: 0.7; + } + + .md\:focus-within\:opacity-75:focus-within{ + opacity: 0.75; + } + + .md\:focus-within\:opacity-80:focus-within{ + opacity: 0.8; + } + + .md\:focus-within\:opacity-90:focus-within{ + opacity: 0.9; + } + + .md\:focus-within\:opacity-95:focus-within{ + opacity: 0.95; + } + + .md\:focus-within\:opacity-100:focus-within{ + opacity: 1; + } + + .md\:hover\:opacity-0:hover{ + opacity: 0; + } + + .md\:hover\:opacity-5:hover{ + opacity: 0.05; + } + + .md\:hover\:opacity-10:hover{ + opacity: 0.1; + } + + .md\:hover\:opacity-20:hover{ + opacity: 0.2; + } + + .md\:hover\:opacity-25:hover{ + opacity: 0.25; + } + + .md\:hover\:opacity-30:hover{ + opacity: 0.3; + } + + .md\:hover\:opacity-40:hover{ + opacity: 0.4; + } + + .md\:hover\:opacity-50:hover{ + opacity: 0.5; + } + + .md\:hover\:opacity-60:hover{ + opacity: 0.6; + } + + .md\:hover\:opacity-70:hover{ + opacity: 0.7; + } + + .md\:hover\:opacity-75:hover{ + opacity: 0.75; + } + + .md\:hover\:opacity-80:hover{ + opacity: 0.8; + } + + .md\:hover\:opacity-90:hover{ + opacity: 0.9; + } + + .md\:hover\:opacity-95:hover{ + opacity: 0.95; + } + + .md\:hover\:opacity-100:hover{ + opacity: 1; + } + + .md\:focus\:opacity-0:focus{ + opacity: 0; + } + + .md\:focus\:opacity-5:focus{ + opacity: 0.05; + } + + .md\:focus\:opacity-10:focus{ + opacity: 0.1; + } + + .md\:focus\:opacity-20:focus{ + opacity: 0.2; + } + + .md\:focus\:opacity-25:focus{ + opacity: 0.25; + } + + .md\:focus\:opacity-30:focus{ + opacity: 0.3; + } + + .md\:focus\:opacity-40:focus{ + opacity: 0.4; + } + + .md\:focus\:opacity-50:focus{ + opacity: 0.5; + } + + .md\:focus\:opacity-60:focus{ + opacity: 0.6; + } + + .md\:focus\:opacity-70:focus{ + opacity: 0.7; + } + + .md\:focus\:opacity-75:focus{ + opacity: 0.75; + } + + .md\:focus\:opacity-80:focus{ + opacity: 0.8; + } + + .md\:focus\:opacity-90:focus{ + opacity: 0.9; + } + + .md\:focus\:opacity-95:focus{ + opacity: 0.95; + } + + .md\:focus\:opacity-100:focus{ + opacity: 1; + } + + .md\:bg-blend-normal{ + background-blend-mode: normal; + } + + .md\:bg-blend-multiply{ + background-blend-mode: multiply; + } + + .md\:bg-blend-screen{ + background-blend-mode: screen; + } + + .md\:bg-blend-overlay{ + background-blend-mode: overlay; + } + + .md\:bg-blend-darken{ + background-blend-mode: darken; + } + + .md\:bg-blend-lighten{ + background-blend-mode: lighten; + } + + .md\:bg-blend-color-dodge{ + background-blend-mode: color-dodge; + } + + .md\:bg-blend-color-burn{ + background-blend-mode: color-burn; + } + + .md\:bg-blend-hard-light{ + background-blend-mode: hard-light; + } + + .md\:bg-blend-soft-light{ + background-blend-mode: soft-light; + } + + .md\:bg-blend-difference{ + background-blend-mode: difference; + } + + .md\:bg-blend-exclusion{ + background-blend-mode: exclusion; + } + + .md\:bg-blend-hue{ + background-blend-mode: hue; + } + + .md\:bg-blend-saturation{ + background-blend-mode: saturation; + } + + .md\:bg-blend-color{ + background-blend-mode: color; + } + + .md\:bg-blend-luminosity{ + background-blend-mode: luminosity; + } + + .md\:mix-blend-normal{ + mix-blend-mode: normal; + } + + .md\:mix-blend-multiply{ + mix-blend-mode: multiply; + } + + .md\:mix-blend-screen{ + mix-blend-mode: screen; + } + + .md\:mix-blend-overlay{ + mix-blend-mode: overlay; + } + + .md\:mix-blend-darken{ + mix-blend-mode: darken; + } + + .md\:mix-blend-lighten{ + mix-blend-mode: lighten; + } + + .md\:mix-blend-color-dodge{ + mix-blend-mode: color-dodge; + } + + .md\:mix-blend-color-burn{ + mix-blend-mode: color-burn; + } + + .md\:mix-blend-hard-light{ + mix-blend-mode: hard-light; + } + + .md\:mix-blend-soft-light{ + mix-blend-mode: soft-light; + } + + .md\:mix-blend-difference{ + mix-blend-mode: difference; + } + + .md\:mix-blend-exclusion{ + mix-blend-mode: exclusion; + } + + .md\:mix-blend-hue{ + mix-blend-mode: hue; + } + + .md\:mix-blend-saturation{ + mix-blend-mode: saturation; + } + + .md\:mix-blend-color{ + mix-blend-mode: color; + } + + .md\:mix-blend-luminosity{ + mix-blend-mode: luminosity; + } + + .md\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:outline-none{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:outline-white{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:outline-black{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\: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); + } + + .md\: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); + } + + .md\: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); + } + + .md\: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); + } + + .md\:ring-8{ + --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(8px + 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); + } + + .md\: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); + } + + .md\:focus-within\:ring-0:focus-within{ + --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); + } + + .md\:focus-within\:ring-1:focus-within{ + --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); + } + + .md\:focus-within\:ring-2:focus-within{ + --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); + } + + .md\:focus-within\:ring-4:focus-within{ + --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); + } + + .md\:focus-within\:ring-8:focus-within{ + --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(8px + 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); + } + + .md\:focus-within\:ring:focus-within{ + --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); + } + + .md\: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); + } + + .md\: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); + } + + .md\: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); + } + + .md\:focus\:ring-4: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(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); + } + + .md\:focus\:ring-8: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(8px + 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); + } + + .md\: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); + } + + .md\:ring-inset{ + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; + } + + .md\:focus\:ring-inset:focus{ + --tw-ring-inset: inset; + } + + .md\:ring-transparent{ + --tw-ring-color: transparent; + } + + .md\:ring-current{ + --tw-ring-color: currentColor; + } + + .md\:ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .md\:ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .md\:ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .md\:ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .md\:ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .md\:ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .md\:ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .md\:ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .md\:ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .md\:ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .md\:ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .md\:ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .md\:ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .md\:ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .md\:ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .md\:ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .md\:ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .md\:ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .md\:ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .md\:ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .md\:ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .md\:ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .md\:ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .md\:ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .md\:ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .md\:ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .md\:ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .md\:ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .md\:ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .md\:ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .md\:ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .md\:ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .md\:ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .md\:ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .md\:ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .md\:ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .md\:ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .md\:ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .md\:ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .md\:ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .md\:ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .md\:ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .md\:ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .md\:ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .md\:ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .md\:ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .md\:ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .md\:ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .md\:ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .md\:ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .md\:ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .md\:ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .md\:ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .md\:ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .md\:ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .md\:ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .md\:ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .md\:ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .md\:ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .md\:ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .md\:ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .md\:ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .md\:ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .md\:ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .md\:ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .md\:ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .md\:ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .md\:ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .md\:ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .md\:ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .md\:ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .md\:ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; + } + + .md\:focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; + } + + .md\:focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-transparent:focus{ + --tw-ring-color: transparent; + } + + .md\:focus\:ring-current:focus{ + --tw-ring-color: currentColor; + } + + .md\:focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .md\:ring-opacity-0{ + --tw-ring-opacity: 0; + } + + .md\:ring-opacity-5{ + --tw-ring-opacity: 0.05; + } + + .md\:ring-opacity-10{ + --tw-ring-opacity: 0.1; + } + + .md\:ring-opacity-20{ + --tw-ring-opacity: 0.2; + } + + .md\:ring-opacity-25{ + --tw-ring-opacity: 0.25; + } + + .md\:ring-opacity-30{ + --tw-ring-opacity: 0.3; + } + + .md\:ring-opacity-40{ + --tw-ring-opacity: 0.4; + } + + .md\:ring-opacity-50{ + --tw-ring-opacity: 0.5; + } + + .md\:ring-opacity-60{ + --tw-ring-opacity: 0.6; + } + + .md\:ring-opacity-70{ + --tw-ring-opacity: 0.7; + } + + .md\:ring-opacity-75{ + --tw-ring-opacity: 0.75; + } + + .md\:ring-opacity-80{ + --tw-ring-opacity: 0.8; + } + + .md\:ring-opacity-90{ + --tw-ring-opacity: 0.9; + } + + .md\:ring-opacity-95{ + --tw-ring-opacity: 0.95; + } + + .md\:ring-opacity-100{ + --tw-ring-opacity: 1; + } + + .md\:focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; + } + + .md\:focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; + } + + .md\:focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; + } + + .md\:focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; + } + + .md\:focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; + } + + .md\:focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; + } + + .md\:focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; + } + + .md\:focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; + } + + .md\:focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; + } + + .md\:focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; + } + + .md\:focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; + } + + .md\:focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; + } + + .md\:focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; + } + + .md\:focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; + } + + .md\:focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; + } + + .md\:focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; + } + + .md\:focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; + } + + .md\:focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; + } + + .md\:focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; + } + + .md\:focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; + } + + .md\:focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; + } + + .md\:focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; + } + + .md\:focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; + } + + .md\:focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; + } + + .md\:focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; + } + + .md\:focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; + } + + .md\:focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; + } + + .md\:focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; + } + + .md\:focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; + } + + .md\:focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; + } + + .md\:ring-offset-0{ + --tw-ring-offset-width: 0px; + } + + .md\:ring-offset-1{ + --tw-ring-offset-width: 1px; + } + + .md\:ring-offset-2{ + --tw-ring-offset-width: 2px; + } + + .md\:ring-offset-4{ + --tw-ring-offset-width: 4px; + } + + .md\:ring-offset-8{ + --tw-ring-offset-width: 8px; + } + + .md\:focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; + } + + .md\:focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; + } + + .md\:focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; + } + + .md\:focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; + } + + .md\:focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; + } + + .md\:focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; + } + + .md\:focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; + } + + .md\:focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; + } + + .md\:focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; + } + + .md\:focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; + } + + .md\:ring-offset-transparent{ + --tw-ring-offset-color: transparent; + } + + .md\:ring-offset-current{ + --tw-ring-offset-color: currentColor; + } + + .md\:ring-offset-black{ + --tw-ring-offset-color: #000; + } + + .md\:ring-offset-white{ + --tw-ring-offset-color: #fff; + } + + .md\:ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; + } + + .md\:ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; + } + + .md\:ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; + } + + .md\:ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; + } + + .md\:ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; + } + + .md\:ring-offset-gray-600{ + --tw-ring-offset-color: #718096; + } + + .md\:ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; + } + + .md\:ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; + } + + .md\:ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; + } + + .md\:ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; + } + + .md\:ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; + } + + .md\:ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; + } + + .md\:ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; + } + + .md\:ring-offset-red-500{ + --tw-ring-offset-color: #f56565; + } + + .md\:ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; + } + + .md\:ring-offset-red-700{ + --tw-ring-offset-color: #c53030; + } + + .md\:ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; + } + + .md\:ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; + } + + .md\:ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; + } + + .md\:ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; + } + + .md\:ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; + } + + .md\:ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; + } + + .md\:ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; + } + + .md\:ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; + } + + .md\:ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; + } + + .md\:ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; + } + + .md\:ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; + } + + .md\:ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; + } + + .md\:ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; + } + + .md\:ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; + } + + .md\:ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; + } + + .md\:ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; + } + + .md\:ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; + } + + .md\:ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; + } + + .md\:ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; + } + + .md\:ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; + } + + .md\:ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; + } + + .md\:ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; + } + + .md\:ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; + } + + .md\:ring-offset-green-400{ + --tw-ring-offset-color: #68d391; + } + + .md\:ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; + } + + .md\:ring-offset-green-600{ + --tw-ring-offset-color: #38a169; + } + + .md\:ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; + } + + .md\:ring-offset-green-800{ + --tw-ring-offset-color: #276749; + } + + .md\:ring-offset-green-900{ + --tw-ring-offset-color: #22543d; + } + + .md\:ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; + } + + .md\:ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; + } + + .md\:ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; + } + + .md\:ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; + } + + .md\:ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; + } + + .md\:ring-offset-teal-600{ + --tw-ring-offset-color: #319795; + } + + .md\:ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; + } + + .md\:ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; + } + + .md\:ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; + } + + .md\:ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; + } + + .md\:ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; + } + + .md\:ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; + } + + .md\:ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; + } + + .md\:ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; + } + + .md\:ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; + } + + .md\:ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; + } + + .md\:ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; + } + + .md\:ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; + } + + .md\:ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; + } + + .md\:ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; + } + + .md\:ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; + } + + .md\:ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; + } + + .md\:ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; + } + + .md\:ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; + } + + .md\:ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; + } + + .md\:ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; + } + + .md\:ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; + } + + .md\:ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; + } + + .md\:ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; + } + + .md\:ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; + } + + .md\:ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; + } + + .md\:ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; + } + + .md\:ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; + } + + .md\:ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; + } + + .md\:ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; + } + + .md\:ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; + } + + .md\:ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; + } + + .md\:ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; + } + + .md\:ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; + } + + .md\:ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; + } + + .md\:ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; + } + + .md\:ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; + } + + .md\:ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; + } + + .md\:ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; + } + + .md\:ring-offset-pink-900{ + --tw-ring-offset-color: #702459; + } + + .md\:focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; + } + + .md\:focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; + } + + .md\:focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; + } + + .md\:focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; + } + + .md\:focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; + } + + .md\:focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; + } + + .md\:focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; + } + + .md\:focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; + } + + .md\:focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; + } + + .md\:focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; + } + + .md\:focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; + } + + .md\:focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; + } + + .md\:focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; + } + + .md\:focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; + } + + .md\:focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; + } + + .md\:focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; + } + + .md\:focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; + } + + .md\:focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; + } + + .md\:focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; + } + + .md\:focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; + } + + .md\:focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; + } + + .md\:focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; + } + + .md\:focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; + } + + .md\:focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; + } + + .md\:focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; + } + + .md\:focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; + } + + .md\:focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; + } + + .md\:focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; + } + + .md\:focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; + } + + .md\:focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; + } + + .md\:focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; + } + + .md\:focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; + } + + .md\:focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; + } + + .md\:focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; + } + + .md\:focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; + } + + .md\:focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; + } + + .md\:focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; + } + + .md\:focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; + } + + .md\:focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; + } + + .md\:focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; + } + + .md\:focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; + } + + .md\:focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; + } + + .md\:focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; + } + + .md\:focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; + } + + .md\:focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; + } + + .md\:focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; + } + + .md\:focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; + } + + .md\:focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; + } + + .md\:focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; + } + + .md\:focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; + } + + .md\:focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; + } + + .md\:focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; + } + + .md\:focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; + } + + .md\:focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; + } + + .md\:focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; + } + + .md\:focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; + } + + .md\:focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; + } + + .md\:focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; + } + + .md\:focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; + } + + .md\:focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; + } + + .md\:focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; + } + + .md\:focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; + } + + .md\:focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; + } + + .md\:focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; + } + + .md\:focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; + } + + .md\:focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; + } + + .md\:focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; + } + + .md\:focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; + } + + .md\:focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; + } + + .md\:focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; + } + + .md\:focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; + } + + .md\:focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; + } + + .md\:focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; + } + + .md\:focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; + } + + .md\:focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; + } + + .md\:focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; + } + + .md\:focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; + } + + .md\:focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; + } + + .md\:focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; + } + + .md\:focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; + } + + .md\:focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; + } + + .md\:focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; + } + + .md\:focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; + } + + .md\:focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; + } + + .md\:focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; + } + + .md\:focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; + } + + .md\:focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; + } + + .md\:focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; + } + + .md\:focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; + } + + .md\:focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; + } + + .md\:focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; + } + + .md\:focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; + } + + .md\:focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; + } + + .md\:focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; + } + + .md\:focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; + } + + .md\:focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; + } + + .md\:focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; + } + + .md\:focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; + } + + .md\:focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; + } + + .md\:focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; + } + + .md\:focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; + } + + .md\:focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; + } + + .md\:focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; + } + + .md\:focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; + } + + .md\:focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; + } + + .md\:focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; + } + + .md\:focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; + } + + .md\:focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; + } + + .md\:focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; + } + + .md\:focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; + } + + .md\:focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; + } + + .md\:focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; + } + + .md\:focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; + } + + .md\:focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; + } + + .md\:focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; + } + + .md\:focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; + } + + .md\:focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; + } + + .md\:focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; + } + + .md\:focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; + } + + .md\:focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; + } + + .md\:focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; + } + + .md\:focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; + } + + .md\:focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; + } + + .md\:focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; + } + + .md\:focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; + } + + .md\:focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; + } + + .md\:focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; + } + + .md\:focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; + } + + .md\:focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; + } + + .md\:focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; + } + + .md\:focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; + } + + .md\:focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; + } + + .md\:focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; + } + + .md\:focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; + } + + .md\:focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; + } + + .md\:focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; + } + + .md\:focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; + } + + .md\:focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; + } + + .md\:focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; + } + + .md\:focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; + } + + .md\:focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; + } + + .md\:focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; + } + + .md\:focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; + } + + .md\:focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; + } + + .md\:focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; + } + + .md\:focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; + } + + .md\:focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; + } + + .md\:focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; + } + + .md\:focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; + } + + .md\:focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; + } + + .md\:focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; + } + + .md\:focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; + } + + .md\:focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; + } + + .md\:focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; + } + + .md\:focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; + } + + .md\:focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; + } + + .md\:focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; + } + + .md\:focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; + } + + .md\:focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; + } + + .md\:focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; + } + + .md\:focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; + } + + .md\:focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; + } + + .md\:focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; + } + + .md\:focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; + } + + .md\:focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; + } + + .md\:focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; + } + + .md\:focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; + } + + .md\:focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; + } + + .md\:focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; + } + + .md\:focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; + } + + .md\:focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; + } + + .md\:focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; + } + + .md\:focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; + } + + .md\:focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; + } + + .md\:focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; + } + + .md\:focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; + } + + .md\:focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; + } + + .md\:focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; + } + + .md\:focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; + } + + .md\:focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; + } + + .md\:focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; + } + + .md\:focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; + } + + .md\:focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; + } + + .md\:focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; + } + + .md\:focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; + } + + .md\:focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; + } + + .md\:focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; + } + + .md\:focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; + } + + .md\:filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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); + } + + .md\:filter-none{ + filter: none; + } + + .md\:blur-0{ + --tw-blur: blur(0); + } + + .md\:blur-none{ + --tw-blur: blur(0); + } + + .md\:blur-sm{ + --tw-blur: blur(4px); + } + + .md\:blur{ + --tw-blur: blur(8px); + } + + .md\:blur-md{ + --tw-blur: blur(12px); + } + + .md\:blur-lg{ + --tw-blur: blur(16px); + } + + .md\:blur-xl{ + --tw-blur: blur(24px); + } + + .md\:blur-2xl{ + --tw-blur: blur(40px); + } + + .md\:blur-3xl{ + --tw-blur: blur(64px); + } + + .md\:brightness-0{ + --tw-brightness: brightness(0); + } + + .md\:brightness-50{ + --tw-brightness: brightness(.5); + } + + .md\:brightness-75{ + --tw-brightness: brightness(.75); + } + + .md\:brightness-90{ + --tw-brightness: brightness(.9); + } + + .md\:brightness-95{ + --tw-brightness: brightness(.95); + } + + .md\:brightness-100{ + --tw-brightness: brightness(1); + } + + .md\:brightness-105{ + --tw-brightness: brightness(1.05); + } + + .md\:brightness-110{ + --tw-brightness: brightness(1.1); + } + + .md\:brightness-125{ + --tw-brightness: brightness(1.25); + } + + .md\:brightness-150{ + --tw-brightness: brightness(1.5); + } + + .md\:brightness-200{ + --tw-brightness: brightness(2); + } + + .md\:contrast-0{ + --tw-contrast: contrast(0); + } + + .md\:contrast-50{ + --tw-contrast: contrast(.5); + } + + .md\:contrast-75{ + --tw-contrast: contrast(.75); + } + + .md\:contrast-100{ + --tw-contrast: contrast(1); + } + + .md\:contrast-125{ + --tw-contrast: contrast(1.25); + } + + .md\:contrast-150{ + --tw-contrast: contrast(1.5); + } + + .md\:contrast-200{ + --tw-contrast: contrast(2); + } + + .md\:drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + } + + .md\:drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + } + + .md\:drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + } + + .md\:drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + } + + .md\:drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + } + + .md\:drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + } + + .md\:drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); + } + + .md\:grayscale-0{ + --tw-grayscale: grayscale(0); + } + + .md\:grayscale{ + --tw-grayscale: grayscale(100%); + } + + .md\:hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); + } + + .md\:hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); + } + + .md\:hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); + } + + .md\:hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); + } + + .md\:hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); + } + + .md\:hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); + } + + .md\:-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); + } + + .md\:-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); + } + + .md\:-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); + } + + .md\:-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); + } + + .md\:-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); + } + + .md\:invert-0{ + --tw-invert: invert(0); + } + + .md\:invert{ + --tw-invert: invert(100%); + } + + .md\:saturate-0{ + --tw-saturate: saturate(0); + } + + .md\:saturate-50{ + --tw-saturate: saturate(.5); + } + + .md\:saturate-100{ + --tw-saturate: saturate(1); + } + + .md\:saturate-150{ + --tw-saturate: saturate(1.5); + } + + .md\:saturate-200{ + --tw-saturate: saturate(2); + } + + .md\:sepia-0{ + --tw-sepia: sepia(0); + } + + .md\:sepia{ + --tw-sepia: sepia(100%); + } + + .md\:backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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); + } + + .md\:backdrop-filter-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; + } + + .md\:backdrop-blur-0{ + --tw-backdrop-blur: blur(0); + } + + .md\:backdrop-blur-none{ + --tw-backdrop-blur: blur(0); + } + + .md\:backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); + } + + .md\:backdrop-blur{ + --tw-backdrop-blur: blur(8px); + } + + .md\:backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); + } + + .md\:backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); + } + + .md\:backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); + } + + .md\:backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); + } + + .md\:backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); + } + + .md\:backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); + } + + .md\:backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); + } + + .md\:backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); + } + + .md\:backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); + } + + .md\:backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); + } + + .md\:backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); + } + + .md\:backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); + } + + .md\:backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); + } + + .md\:backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); + } + + .md\:backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); + } + + .md\:backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); + } + + .md\:backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); + } + + .md\:backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); + } + + .md\:backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); + } + + .md\:backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); + } + + .md\:backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); + } + + .md\:backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); + } + + .md\:backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); + } + + .md\:backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); + } + + .md\:backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); + } + + .md\:backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); + } + + .md\:backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); + } + + .md\:backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); + } + + .md\:backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); + } + + .md\:backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); + } + + .md\:backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); + } + + .md\:-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); + } + + .md\:-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); + } + + .md\:-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); + } + + .md\:-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); + } + + .md\:-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); + } + + .md\:backdrop-invert-0{ + --tw-backdrop-invert: invert(0); + } + + .md\:backdrop-invert{ + --tw-backdrop-invert: invert(100%); + } + + .md\:backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); + } + + .md\:backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); + } + + .md\:backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); + } + + .md\:backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); + } + + .md\:backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); + } + + .md\:backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); + } + + .md\:backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); + } + + .md\:backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); + } + + .md\:backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); + } + + .md\:backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); + } + + .md\:backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); + } + + .md\:backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); + } + + .md\:backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); + } + + .md\:backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); + } + + .md\:backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); + } + + .md\:backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); + } + + .md\:backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); + } + + .md\:backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); + } + + .md\:backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); + } + + .md\:backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); + } + + .md\:backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); + } + + .md\:backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); + } + + .md\:transition-none{ + transition-property: none; + } + + .md\:transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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; + } + + .md\:transition-colors{ + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-opacity{ + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-shadow{ + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-transform{ + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:delay-75{ + transition-delay: 75ms; + } + + .md\:delay-100{ + transition-delay: 100ms; + } + + .md\:delay-150{ + transition-delay: 150ms; + } + + .md\:delay-200{ + transition-delay: 200ms; + } + + .md\:delay-300{ + transition-delay: 300ms; + } + + .md\:delay-500{ + transition-delay: 500ms; + } + + .md\:delay-700{ + transition-delay: 700ms; + } + + .md\:delay-1000{ + transition-delay: 1000ms; + } + + .md\:duration-75{ + transition-duration: 75ms; + } + + .md\:duration-100{ + transition-duration: 100ms; + } + + .md\:duration-150{ + transition-duration: 150ms; + } + + .md\:duration-200{ + transition-duration: 200ms; + } + + .md\:duration-300{ + transition-duration: 300ms; + } + + .md\:duration-500{ + transition-duration: 500ms; + } + + .md\:duration-700{ + transition-duration: 700ms; + } + + .md\:duration-1000{ + transition-duration: 1000ms; + } + + .md\:ease-linear{ + transition-timing-function: linear; + } + + .md\:ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .md\:ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .md\:ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} + +@media (min-width: 1024px){ + .lg\:container{ + width: 100%; + } + + @media (min-width: 640px){ + .lg\:container{ + max-width: 640px; + } + } + + @media (min-width: 768px){ + .lg\:container{ + max-width: 768px; + } + } + + @media (min-width: 1024px){ + .lg\:container{ + max-width: 1024px; + } + } + + @media (min-width: 1280px){ + .lg\:container{ + max-width: 1280px; + } + } + + @media (min-width: 1536px){ + .lg\:container{ + max-width: 1536px; + } + } + + .lg\: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; + } + + .lg\:not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:pointer-events-none{ + pointer-events: none; + } + + .lg\:pointer-events-auto{ + pointer-events: auto; + } + + .lg\:visible{ + visibility: visible; + } + + .lg\:invisible{ + visibility: hidden; + } + + .lg\:static{ + position: static; + } + + .lg\:fixed{ + position: fixed; + } + + .lg\:absolute{ + position: absolute; + } + + .lg\:relative{ + position: relative; + } + + .lg\:sticky{ + position: -webkit-sticky; + position: sticky; + } + + .lg\:inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .lg\:inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .lg\:inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .lg\:inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .lg\:inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .lg\:inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .lg\:inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .lg\:inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .lg\:inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .lg\:inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .lg\:inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .lg\:inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .lg\:inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .lg\:inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .lg\:inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .lg\:inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .lg\:inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .lg\:inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .lg\:inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .lg\:inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .lg\:inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .lg\:inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .lg\:inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .lg\:inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .lg\:inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .lg\:inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .lg\:inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .lg\:inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .lg\:inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .lg\:inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .lg\:inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .lg\:inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .lg\:inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .lg\:inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .lg\:inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .lg\:-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .lg\:-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .lg\:-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .lg\:-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .lg\:-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .lg\:-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .lg\:-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .lg\:-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .lg\:-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .lg\:-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .lg\:-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .lg\:-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .lg\:-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .lg\:-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .lg\:-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .lg\:-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .lg\:-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .lg\:-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .lg\:-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .lg\:-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .lg\:-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .lg\:-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .lg\:-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .lg\:-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .lg\:-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .lg\:-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .lg\:-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .lg\:-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .lg\:-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .lg\:-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .lg\:-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .lg\:-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .lg\:-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .lg\:inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .lg\:inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .lg\:inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .lg\:inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .lg\:inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .lg\:-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .lg\:-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .lg\:-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .lg\:-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .lg\:-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; + } + + .lg\:inset-x-0{ + left: 0px; + right: 0px; + } + + .lg\:inset-x-1{ + left: 0.25rem; + right: 0.25rem; + } + + .lg\:inset-x-2{ + left: 0.5rem; + right: 0.5rem; + } + + .lg\:inset-x-3{ + left: 0.75rem; + right: 0.75rem; + } + + .lg\:inset-x-4{ + left: 1rem; + right: 1rem; + } + + .lg\:inset-x-5{ + left: 1.25rem; + right: 1.25rem; + } + + .lg\:inset-x-6{ + left: 1.5rem; + right: 1.5rem; + } + + .lg\:inset-x-7{ + left: 1.75rem; + right: 1.75rem; + } + + .lg\:inset-x-8{ + left: 2rem; + right: 2rem; + } + + .lg\:inset-x-9{ + left: 2.25rem; + right: 2.25rem; + } + + .lg\:inset-x-10{ + left: 2.5rem; + right: 2.5rem; + } + + .lg\:inset-x-11{ + left: 2.75rem; + right: 2.75rem; + } + + .lg\:inset-x-12{ + left: 3rem; + right: 3rem; + } + + .lg\:inset-x-14{ + left: 3.5rem; + right: 3.5rem; + } + + .lg\:inset-x-16{ + left: 4rem; + right: 4rem; + } + + .lg\:inset-x-20{ + left: 5rem; + right: 5rem; + } + + .lg\:inset-x-24{ + left: 6rem; + right: 6rem; + } + + .lg\:inset-x-28{ + left: 7rem; + right: 7rem; + } + + .lg\:inset-x-32{ + left: 8rem; + right: 8rem; + } + + .lg\:inset-x-36{ + left: 9rem; + right: 9rem; + } + + .lg\:inset-x-40{ + left: 10rem; + right: 10rem; + } + + .lg\:inset-x-44{ + left: 11rem; + right: 11rem; + } + + .lg\:inset-x-48{ + left: 12rem; + right: 12rem; + } + + .lg\:inset-x-52{ + left: 13rem; + right: 13rem; + } + + .lg\:inset-x-56{ + left: 14rem; + right: 14rem; + } + + .lg\:inset-x-60{ + left: 15rem; + right: 15rem; + } + + .lg\:inset-x-64{ + left: 16rem; + right: 16rem; + } + + .lg\:inset-x-72{ + left: 18rem; + right: 18rem; + } + + .lg\:inset-x-80{ + left: 20rem; + right: 20rem; + } + + .lg\:inset-x-96{ + left: 24rem; + right: 24rem; + } + + .lg\:inset-x-auto{ + left: auto; + right: auto; + } + + .lg\:inset-x-px{ + left: 1px; + right: 1px; + } + + .lg\:inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; + } + + .lg\:inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; + } + + .lg\:inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; + } + + .lg\:inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; + } + + .lg\:-inset-x-0{ + left: 0px; + right: 0px; + } + + .lg\:-inset-x-1{ + left: -0.25rem; + right: -0.25rem; + } + + .lg\:-inset-x-2{ + left: -0.5rem; + right: -0.5rem; + } + + .lg\:-inset-x-3{ + left: -0.75rem; + right: -0.75rem; + } + + .lg\:-inset-x-4{ + left: -1rem; + right: -1rem; + } + + .lg\:-inset-x-5{ + left: -1.25rem; + right: -1.25rem; + } + + .lg\:-inset-x-6{ + left: -1.5rem; + right: -1.5rem; + } + + .lg\:-inset-x-7{ + left: -1.75rem; + right: -1.75rem; + } + + .lg\:-inset-x-8{ + left: -2rem; + right: -2rem; + } + + .lg\:-inset-x-9{ + left: -2.25rem; + right: -2.25rem; + } + + .lg\:-inset-x-10{ + left: -2.5rem; + right: -2.5rem; + } + + .lg\:-inset-x-11{ + left: -2.75rem; + right: -2.75rem; + } + + .lg\:-inset-x-12{ + left: -3rem; + right: -3rem; + } + + .lg\:-inset-x-14{ + left: -3.5rem; + right: -3.5rem; + } + + .lg\:-inset-x-16{ + left: -4rem; + right: -4rem; + } + + .lg\:-inset-x-20{ + left: -5rem; + right: -5rem; + } + + .lg\:-inset-x-24{ + left: -6rem; + right: -6rem; + } + + .lg\:-inset-x-28{ + left: -7rem; + right: -7rem; + } + + .lg\:-inset-x-32{ + left: -8rem; + right: -8rem; + } + + .lg\:-inset-x-36{ + left: -9rem; + right: -9rem; + } + + .lg\:-inset-x-40{ + left: -10rem; + right: -10rem; + } + + .lg\:-inset-x-44{ + left: -11rem; + right: -11rem; + } + + .lg\:-inset-x-48{ + left: -12rem; + right: -12rem; + } + + .lg\:-inset-x-52{ + left: -13rem; + right: -13rem; + } + + .lg\:-inset-x-56{ + left: -14rem; + right: -14rem; + } + + .lg\:-inset-x-60{ + left: -15rem; + right: -15rem; + } + + .lg\:-inset-x-64{ + left: -16rem; + right: -16rem; + } + + .lg\:-inset-x-72{ + left: -18rem; + right: -18rem; + } + + .lg\:-inset-x-80{ + left: -20rem; + right: -20rem; + } + + .lg\:-inset-x-96{ + left: -24rem; + right: -24rem; + } + + .lg\:-inset-x-px{ + left: -1px; + right: -1px; + } + + .lg\:-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; + } + + .lg\:-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; + } + + .lg\:-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; + } + + .lg\:-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; + } + + .lg\:inset-x-1\/2{ + left: 50%; + right: 50%; + } + + .lg\:inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; + } + + .lg\:inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; + } + + .lg\:inset-x-1\/4{ + left: 25%; + right: 25%; + } + + .lg\:inset-x-2\/4{ + left: 50%; + right: 50%; + } + + .lg\:inset-x-3\/4{ + left: 75%; + right: 75%; + } + + .lg\:inset-x-full{ + left: 100%; + right: 100%; + } + + .lg\:-inset-x-1\/2{ + left: -50%; + right: -50%; + } + + .lg\:-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; + } + + .lg\:-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; + } + + .lg\:-inset-x-1\/4{ + left: -25%; + right: -25%; + } + + .lg\:-inset-x-2\/4{ + left: -50%; + right: -50%; + } + + .lg\:-inset-x-3\/4{ + left: -75%; + right: -75%; + } + + .lg\:-inset-x-full{ + left: -100%; + right: -100%; + } + + .lg\:inset-x-5vw{ + left: 5vw; + right: 5vw; + } + + .lg\:inset-y-0{ + top: 0px; + bottom: 0px; + } + + .lg\:inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; + } + + .lg\:inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; + } + + .lg\:inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; + } + + .lg\:inset-y-4{ + top: 1rem; + bottom: 1rem; + } + + .lg\:inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; + } + + .lg\:inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; + } + + .lg\:inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; + } + + .lg\:inset-y-8{ + top: 2rem; + bottom: 2rem; + } + + .lg\:inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; + } + + .lg\:inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; + } + + .lg\:inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; + } + + .lg\:inset-y-12{ + top: 3rem; + bottom: 3rem; + } + + .lg\:inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; + } + + .lg\:inset-y-16{ + top: 4rem; + bottom: 4rem; + } + + .lg\:inset-y-20{ + top: 5rem; + bottom: 5rem; + } + + .lg\:inset-y-24{ + top: 6rem; + bottom: 6rem; + } + + .lg\:inset-y-28{ + top: 7rem; + bottom: 7rem; + } + + .lg\:inset-y-32{ + top: 8rem; + bottom: 8rem; + } + + .lg\:inset-y-36{ + top: 9rem; + bottom: 9rem; + } + + .lg\:inset-y-40{ + top: 10rem; + bottom: 10rem; + } + + .lg\:inset-y-44{ + top: 11rem; + bottom: 11rem; + } + + .lg\:inset-y-48{ + top: 12rem; + bottom: 12rem; + } + + .lg\:inset-y-52{ + top: 13rem; + bottom: 13rem; + } + + .lg\:inset-y-56{ + top: 14rem; + bottom: 14rem; + } + + .lg\:inset-y-60{ + top: 15rem; + bottom: 15rem; + } + + .lg\:inset-y-64{ + top: 16rem; + bottom: 16rem; + } + + .lg\:inset-y-72{ + top: 18rem; + bottom: 18rem; + } + + .lg\:inset-y-80{ + top: 20rem; + bottom: 20rem; + } + + .lg\:inset-y-96{ + top: 24rem; + bottom: 24rem; + } + + .lg\:inset-y-auto{ + top: auto; + bottom: auto; + } + + .lg\:inset-y-px{ + top: 1px; + bottom: 1px; + } + + .lg\:inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; + } + + .lg\:inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; + } + + .lg\:inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; + } + + .lg\:inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; + } + + .lg\:-inset-y-0{ + top: 0px; + bottom: 0px; + } + + .lg\:-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; + } + + .lg\:-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; + } + + .lg\:-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; + } + + .lg\:-inset-y-4{ + top: -1rem; + bottom: -1rem; + } + + .lg\:-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; + } + + .lg\:-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; + } + + .lg\:-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; + } + + .lg\:-inset-y-8{ + top: -2rem; + bottom: -2rem; + } + + .lg\:-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; + } + + .lg\:-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; + } + + .lg\:-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; + } + + .lg\:-inset-y-12{ + top: -3rem; + bottom: -3rem; + } + + .lg\:-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; + } + + .lg\:-inset-y-16{ + top: -4rem; + bottom: -4rem; + } + + .lg\:-inset-y-20{ + top: -5rem; + bottom: -5rem; + } + + .lg\:-inset-y-24{ + top: -6rem; + bottom: -6rem; + } + + .lg\:-inset-y-28{ + top: -7rem; + bottom: -7rem; + } + + .lg\:-inset-y-32{ + top: -8rem; + bottom: -8rem; + } + + .lg\:-inset-y-36{ + top: -9rem; + bottom: -9rem; + } + + .lg\:-inset-y-40{ + top: -10rem; + bottom: -10rem; + } + + .lg\:-inset-y-44{ + top: -11rem; + bottom: -11rem; + } + + .lg\:-inset-y-48{ + top: -12rem; + bottom: -12rem; + } + + .lg\:-inset-y-52{ + top: -13rem; + bottom: -13rem; + } + + .lg\:-inset-y-56{ + top: -14rem; + bottom: -14rem; + } + + .lg\:-inset-y-60{ + top: -15rem; + bottom: -15rem; + } + + .lg\:-inset-y-64{ + top: -16rem; + bottom: -16rem; + } + + .lg\:-inset-y-72{ + top: -18rem; + bottom: -18rem; + } + + .lg\:-inset-y-80{ + top: -20rem; + bottom: -20rem; + } + + .lg\:-inset-y-96{ + top: -24rem; + bottom: -24rem; + } + + .lg\:-inset-y-px{ + top: -1px; + bottom: -1px; + } + + .lg\:-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; + } + + .lg\:-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; + } + + .lg\:-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; + } + + .lg\:-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; + } + + .lg\:inset-y-1\/2{ + top: 50%; + bottom: 50%; + } + + .lg\:inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; + } + + .lg\:inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; + } + + .lg\:inset-y-1\/4{ + top: 25%; + bottom: 25%; + } + + .lg\:inset-y-2\/4{ + top: 50%; + bottom: 50%; + } + + .lg\:inset-y-3\/4{ + top: 75%; + bottom: 75%; + } + + .lg\:inset-y-full{ + top: 100%; + bottom: 100%; + } + + .lg\:-inset-y-1\/2{ + top: -50%; + bottom: -50%; + } + + .lg\:-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; + } + + .lg\:-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; + } + + .lg\:-inset-y-1\/4{ + top: -25%; + bottom: -25%; + } + + .lg\:-inset-y-2\/4{ + top: -50%; + bottom: -50%; + } + + .lg\:-inset-y-3\/4{ + top: -75%; + bottom: -75%; + } + + .lg\:-inset-y-full{ + top: -100%; + bottom: -100%; + } + + .lg\:inset-y-5vw{ + top: 5vw; + bottom: 5vw; + } + + .lg\:top-0{ + top: 0px; + } + + .lg\:top-1{ + top: 0.25rem; + } + + .lg\:top-2{ + top: 0.5rem; + } + + .lg\:top-3{ + top: 0.75rem; + } + + .lg\:top-4{ + top: 1rem; + } + + .lg\:top-5{ + top: 1.25rem; + } + + .lg\:top-6{ + top: 1.5rem; + } + + .lg\:top-7{ + top: 1.75rem; + } + + .lg\:top-8{ + top: 2rem; + } + + .lg\:top-9{ + top: 2.25rem; + } + + .lg\:top-10{ + top: 2.5rem; + } + + .lg\:top-11{ + top: 2.75rem; + } + + .lg\:top-12{ + top: 3rem; + } + + .lg\:top-14{ + top: 3.5rem; + } + + .lg\:top-16{ + top: 4rem; + } + + .lg\:top-20{ + top: 5rem; + } + + .lg\:top-24{ + top: 6rem; + } + + .lg\:top-28{ + top: 7rem; + } + + .lg\:top-32{ + top: 8rem; + } + + .lg\:top-36{ + top: 9rem; + } + + .lg\:top-40{ + top: 10rem; + } + + .lg\:top-44{ + top: 11rem; + } + + .lg\:top-48{ + top: 12rem; + } + + .lg\:top-52{ + top: 13rem; + } + + .lg\:top-56{ + top: 14rem; + } + + .lg\:top-60{ + top: 15rem; + } + + .lg\:top-64{ + top: 16rem; + } + + .lg\:top-72{ + top: 18rem; + } + + .lg\:top-80{ + top: 20rem; + } + + .lg\:top-96{ + top: 24rem; + } + + .lg\:top-auto{ + top: auto; + } + + .lg\:top-px{ + top: 1px; + } + + .lg\:top-0\.5{ + top: 0.125rem; + } + + .lg\:top-1\.5{ + top: 0.375rem; + } + + .lg\:top-2\.5{ + top: 0.625rem; + } + + .lg\:top-3\.5{ + top: 0.875rem; + } + + .lg\:-top-0{ + top: 0px; + } + + .lg\:-top-1{ + top: -0.25rem; + } + + .lg\:-top-2{ + top: -0.5rem; + } + + .lg\:-top-3{ + top: -0.75rem; + } + + .lg\:-top-4{ + top: -1rem; + } + + .lg\:-top-5{ + top: -1.25rem; + } + + .lg\:-top-6{ + top: -1.5rem; + } + + .lg\:-top-7{ + top: -1.75rem; + } + + .lg\:-top-8{ + top: -2rem; + } + + .lg\:-top-9{ + top: -2.25rem; + } + + .lg\:-top-10{ + top: -2.5rem; + } + + .lg\:-top-11{ + top: -2.75rem; + } + + .lg\:-top-12{ + top: -3rem; + } + + .lg\:-top-14{ + top: -3.5rem; + } + + .lg\:-top-16{ + top: -4rem; + } + + .lg\:-top-20{ + top: -5rem; + } + + .lg\:-top-24{ + top: -6rem; + } + + .lg\:-top-28{ + top: -7rem; + } + + .lg\:-top-32{ + top: -8rem; + } + + .lg\:-top-36{ + top: -9rem; + } + + .lg\:-top-40{ + top: -10rem; + } + + .lg\:-top-44{ + top: -11rem; + } + + .lg\:-top-48{ + top: -12rem; + } + + .lg\:-top-52{ + top: -13rem; + } + + .lg\:-top-56{ + top: -14rem; + } + + .lg\:-top-60{ + top: -15rem; + } + + .lg\:-top-64{ + top: -16rem; + } + + .lg\:-top-72{ + top: -18rem; + } + + .lg\:-top-80{ + top: -20rem; + } + + .lg\:-top-96{ + top: -24rem; + } + + .lg\:-top-px{ + top: -1px; + } + + .lg\:-top-0\.5{ + top: -0.125rem; + } + + .lg\:-top-1\.5{ + top: -0.375rem; + } + + .lg\:-top-2\.5{ + top: -0.625rem; + } + + .lg\:-top-3\.5{ + top: -0.875rem; + } + + .lg\:top-1\/2{ + top: 50%; + } + + .lg\:top-1\/3{ + top: 33.333333%; + } + + .lg\:top-2\/3{ + top: 66.666667%; + } + + .lg\:top-1\/4{ + top: 25%; + } + + .lg\:top-2\/4{ + top: 50%; + } + + .lg\:top-3\/4{ + top: 75%; + } + + .lg\:top-full{ + top: 100%; + } + + .lg\:-top-1\/2{ + top: -50%; + } + + .lg\:-top-1\/3{ + top: -33.333333%; + } + + .lg\:-top-2\/3{ + top: -66.666667%; + } + + .lg\:-top-1\/4{ + top: -25%; + } + + .lg\:-top-2\/4{ + top: -50%; + } + + .lg\:-top-3\/4{ + top: -75%; + } + + .lg\:-top-full{ + top: -100%; + } + + .lg\:top-5vw{ + top: 5vw; + } + + .lg\:right-0{ + right: 0px; + } + + .lg\:right-1{ + right: 0.25rem; + } + + .lg\:right-2{ + right: 0.5rem; + } + + .lg\:right-3{ + right: 0.75rem; + } + + .lg\:right-4{ + right: 1rem; + } + + .lg\:right-5{ + right: 1.25rem; + } + + .lg\:right-6{ + right: 1.5rem; + } + + .lg\:right-7{ + right: 1.75rem; + } + + .lg\:right-8{ + right: 2rem; + } + + .lg\:right-9{ + right: 2.25rem; + } + + .lg\:right-10{ + right: 2.5rem; + } + + .lg\:right-11{ + right: 2.75rem; + } + + .lg\:right-12{ + right: 3rem; + } + + .lg\:right-14{ + right: 3.5rem; + } + + .lg\:right-16{ + right: 4rem; + } + + .lg\:right-20{ + right: 5rem; + } + + .lg\:right-24{ + right: 6rem; + } + + .lg\:right-28{ + right: 7rem; + } + + .lg\:right-32{ + right: 8rem; + } + + .lg\:right-36{ + right: 9rem; + } + + .lg\:right-40{ + right: 10rem; + } + + .lg\:right-44{ + right: 11rem; + } + + .lg\:right-48{ + right: 12rem; + } + + .lg\:right-52{ + right: 13rem; + } + + .lg\:right-56{ + right: 14rem; + } + + .lg\:right-60{ + right: 15rem; + } + + .lg\:right-64{ + right: 16rem; + } + + .lg\:right-72{ + right: 18rem; + } + + .lg\:right-80{ + right: 20rem; + } + + .lg\:right-96{ + right: 24rem; + } + + .lg\:right-auto{ + right: auto; + } + + .lg\:right-px{ + right: 1px; + } + + .lg\:right-0\.5{ + right: 0.125rem; + } + + .lg\:right-1\.5{ + right: 0.375rem; + } + + .lg\:right-2\.5{ + right: 0.625rem; + } + + .lg\:right-3\.5{ + right: 0.875rem; + } + + .lg\:-right-0{ + right: 0px; + } + + .lg\:-right-1{ + right: -0.25rem; + } + + .lg\:-right-2{ + right: -0.5rem; + } + + .lg\:-right-3{ + right: -0.75rem; + } + + .lg\:-right-4{ + right: -1rem; + } + + .lg\:-right-5{ + right: -1.25rem; + } + + .lg\:-right-6{ + right: -1.5rem; + } + + .lg\:-right-7{ + right: -1.75rem; + } + + .lg\:-right-8{ + right: -2rem; + } + + .lg\:-right-9{ + right: -2.25rem; + } + + .lg\:-right-10{ + right: -2.5rem; + } + + .lg\:-right-11{ + right: -2.75rem; + } + + .lg\:-right-12{ + right: -3rem; + } + + .lg\:-right-14{ + right: -3.5rem; + } + + .lg\:-right-16{ + right: -4rem; + } + + .lg\:-right-20{ + right: -5rem; + } + + .lg\:-right-24{ + right: -6rem; + } + + .lg\:-right-28{ + right: -7rem; + } + + .lg\:-right-32{ + right: -8rem; + } + + .lg\:-right-36{ + right: -9rem; + } + + .lg\:-right-40{ + right: -10rem; + } + + .lg\:-right-44{ + right: -11rem; + } + + .lg\:-right-48{ + right: -12rem; + } + + .lg\:-right-52{ + right: -13rem; + } + + .lg\:-right-56{ + right: -14rem; + } + + .lg\:-right-60{ + right: -15rem; + } + + .lg\:-right-64{ + right: -16rem; + } + + .lg\:-right-72{ + right: -18rem; + } + + .lg\:-right-80{ + right: -20rem; + } + + .lg\:-right-96{ + right: -24rem; + } + + .lg\:-right-px{ + right: -1px; + } + + .lg\:-right-0\.5{ + right: -0.125rem; + } + + .lg\:-right-1\.5{ + right: -0.375rem; + } + + .lg\:-right-2\.5{ + right: -0.625rem; + } + + .lg\:-right-3\.5{ + right: -0.875rem; + } + + .lg\:right-1\/2{ + right: 50%; + } + + .lg\:right-1\/3{ + right: 33.333333%; + } + + .lg\:right-2\/3{ + right: 66.666667%; + } + + .lg\:right-1\/4{ + right: 25%; + } + + .lg\:right-2\/4{ + right: 50%; + } + + .lg\:right-3\/4{ + right: 75%; + } + + .lg\:right-full{ + right: 100%; + } + + .lg\:-right-1\/2{ + right: -50%; + } + + .lg\:-right-1\/3{ + right: -33.333333%; + } + + .lg\:-right-2\/3{ + right: -66.666667%; + } + + .lg\:-right-1\/4{ + right: -25%; + } + + .lg\:-right-2\/4{ + right: -50%; + } + + .lg\:-right-3\/4{ + right: -75%; + } + + .lg\:-right-full{ + right: -100%; + } + + .lg\:right-5vw{ + right: 5vw; + } + + .lg\:bottom-0{ + bottom: 0px; + } + + .lg\:bottom-1{ + bottom: 0.25rem; + } + + .lg\:bottom-2{ + bottom: 0.5rem; + } + + .lg\:bottom-3{ + bottom: 0.75rem; + } + + .lg\:bottom-4{ + bottom: 1rem; + } + + .lg\:bottom-5{ + bottom: 1.25rem; + } + + .lg\:bottom-6{ + bottom: 1.5rem; + } + + .lg\:bottom-7{ + bottom: 1.75rem; + } + + .lg\:bottom-8{ + bottom: 2rem; + } + + .lg\:bottom-9{ + bottom: 2.25rem; + } + + .lg\:bottom-10{ + bottom: 2.5rem; + } + + .lg\:bottom-11{ + bottom: 2.75rem; + } + + .lg\:bottom-12{ + bottom: 3rem; + } + + .lg\:bottom-14{ + bottom: 3.5rem; + } + + .lg\:bottom-16{ + bottom: 4rem; + } + + .lg\:bottom-20{ + bottom: 5rem; + } + + .lg\:bottom-24{ + bottom: 6rem; + } + + .lg\:bottom-28{ + bottom: 7rem; + } + + .lg\:bottom-32{ + bottom: 8rem; + } + + .lg\:bottom-36{ + bottom: 9rem; + } + + .lg\:bottom-40{ + bottom: 10rem; + } + + .lg\:bottom-44{ + bottom: 11rem; + } + + .lg\:bottom-48{ + bottom: 12rem; + } + + .lg\:bottom-52{ + bottom: 13rem; + } + + .lg\:bottom-56{ + bottom: 14rem; + } + + .lg\:bottom-60{ + bottom: 15rem; + } + + .lg\:bottom-64{ + bottom: 16rem; + } + + .lg\:bottom-72{ + bottom: 18rem; + } + + .lg\:bottom-80{ + bottom: 20rem; + } + + .lg\:bottom-96{ + bottom: 24rem; + } + + .lg\:bottom-auto{ + bottom: auto; + } + + .lg\:bottom-px{ + bottom: 1px; + } + + .lg\:bottom-0\.5{ + bottom: 0.125rem; + } + + .lg\:bottom-1\.5{ + bottom: 0.375rem; + } + + .lg\:bottom-2\.5{ + bottom: 0.625rem; + } + + .lg\:bottom-3\.5{ + bottom: 0.875rem; + } + + .lg\:-bottom-0{ + bottom: 0px; + } + + .lg\:-bottom-1{ + bottom: -0.25rem; + } + + .lg\:-bottom-2{ + bottom: -0.5rem; + } + + .lg\:-bottom-3{ + bottom: -0.75rem; + } + + .lg\:-bottom-4{ + bottom: -1rem; + } + + .lg\:-bottom-5{ + bottom: -1.25rem; + } + + .lg\:-bottom-6{ + bottom: -1.5rem; + } + + .lg\:-bottom-7{ + bottom: -1.75rem; + } + + .lg\:-bottom-8{ + bottom: -2rem; + } + + .lg\:-bottom-9{ + bottom: -2.25rem; + } + + .lg\:-bottom-10{ + bottom: -2.5rem; + } + + .lg\:-bottom-11{ + bottom: -2.75rem; + } + + .lg\:-bottom-12{ + bottom: -3rem; + } + + .lg\:-bottom-14{ + bottom: -3.5rem; + } + + .lg\:-bottom-16{ + bottom: -4rem; + } + + .lg\:-bottom-20{ + bottom: -5rem; + } + + .lg\:-bottom-24{ + bottom: -6rem; + } + + .lg\:-bottom-28{ + bottom: -7rem; + } + + .lg\:-bottom-32{ + bottom: -8rem; + } + + .lg\:-bottom-36{ + bottom: -9rem; + } + + .lg\:-bottom-40{ + bottom: -10rem; + } + + .lg\:-bottom-44{ + bottom: -11rem; + } + + .lg\:-bottom-48{ + bottom: -12rem; + } + + .lg\:-bottom-52{ + bottom: -13rem; + } + + .lg\:-bottom-56{ + bottom: -14rem; + } + + .lg\:-bottom-60{ + bottom: -15rem; + } + + .lg\:-bottom-64{ + bottom: -16rem; + } + + .lg\:-bottom-72{ + bottom: -18rem; + } + + .lg\:-bottom-80{ + bottom: -20rem; + } + + .lg\:-bottom-96{ + bottom: -24rem; + } + + .lg\:-bottom-px{ + bottom: -1px; + } + + .lg\:-bottom-0\.5{ + bottom: -0.125rem; + } + + .lg\:-bottom-1\.5{ + bottom: -0.375rem; + } + + .lg\:-bottom-2\.5{ + bottom: -0.625rem; + } + + .lg\:-bottom-3\.5{ + bottom: -0.875rem; + } + + .lg\:bottom-1\/2{ + bottom: 50%; + } + + .lg\:bottom-1\/3{ + bottom: 33.333333%; + } + + .lg\:bottom-2\/3{ + bottom: 66.666667%; + } + + .lg\:bottom-1\/4{ + bottom: 25%; + } + + .lg\:bottom-2\/4{ + bottom: 50%; + } + + .lg\:bottom-3\/4{ + bottom: 75%; + } + + .lg\:bottom-full{ + bottom: 100%; + } + + .lg\:-bottom-1\/2{ + bottom: -50%; + } + + .lg\:-bottom-1\/3{ + bottom: -33.333333%; + } + + .lg\:-bottom-2\/3{ + bottom: -66.666667%; + } + + .lg\:-bottom-1\/4{ + bottom: -25%; + } + + .lg\:-bottom-2\/4{ + bottom: -50%; + } + + .lg\:-bottom-3\/4{ + bottom: -75%; + } + + .lg\:-bottom-full{ + bottom: -100%; + } + + .lg\:bottom-5vw{ + bottom: 5vw; + } + + .lg\:left-0{ + left: 0px; + } + + .lg\:left-1{ + left: 0.25rem; + } + + .lg\:left-2{ + left: 0.5rem; + } + + .lg\:left-3{ + left: 0.75rem; + } + + .lg\:left-4{ + left: 1rem; + } + + .lg\:left-5{ + left: 1.25rem; + } + + .lg\:left-6{ + left: 1.5rem; + } + + .lg\:left-7{ + left: 1.75rem; + } + + .lg\:left-8{ + left: 2rem; + } + + .lg\:left-9{ + left: 2.25rem; + } + + .lg\:left-10{ + left: 2.5rem; + } + + .lg\:left-11{ + left: 2.75rem; + } + + .lg\:left-12{ + left: 3rem; + } + + .lg\:left-14{ + left: 3.5rem; + } + + .lg\:left-16{ + left: 4rem; + } + + .lg\:left-20{ + left: 5rem; + } + + .lg\:left-24{ + left: 6rem; + } + + .lg\:left-28{ + left: 7rem; + } + + .lg\:left-32{ + left: 8rem; + } + + .lg\:left-36{ + left: 9rem; + } + + .lg\:left-40{ + left: 10rem; + } + + .lg\:left-44{ + left: 11rem; + } + + .lg\:left-48{ + left: 12rem; + } + + .lg\:left-52{ + left: 13rem; + } + + .lg\:left-56{ + left: 14rem; + } + + .lg\:left-60{ + left: 15rem; + } + + .lg\:left-64{ + left: 16rem; + } + + .lg\:left-72{ + left: 18rem; + } + + .lg\:left-80{ + left: 20rem; + } + + .lg\:left-96{ + left: 24rem; + } + + .lg\:left-auto{ + left: auto; + } + + .lg\:left-px{ + left: 1px; + } + + .lg\:left-0\.5{ + left: 0.125rem; + } + + .lg\:left-1\.5{ + left: 0.375rem; + } + + .lg\:left-2\.5{ + left: 0.625rem; + } + + .lg\:left-3\.5{ + left: 0.875rem; + } + + .lg\:-left-0{ + left: 0px; + } + + .lg\:-left-1{ + left: -0.25rem; + } + + .lg\:-left-2{ + left: -0.5rem; + } + + .lg\:-left-3{ + left: -0.75rem; + } + + .lg\:-left-4{ + left: -1rem; + } + + .lg\:-left-5{ + left: -1.25rem; + } + + .lg\:-left-6{ + left: -1.5rem; + } + + .lg\:-left-7{ + left: -1.75rem; + } + + .lg\:-left-8{ + left: -2rem; + } + + .lg\:-left-9{ + left: -2.25rem; + } + + .lg\:-left-10{ + left: -2.5rem; + } + + .lg\:-left-11{ + left: -2.75rem; + } + + .lg\:-left-12{ + left: -3rem; + } + + .lg\:-left-14{ + left: -3.5rem; + } + + .lg\:-left-16{ + left: -4rem; + } + + .lg\:-left-20{ + left: -5rem; + } + + .lg\:-left-24{ + left: -6rem; + } + + .lg\:-left-28{ + left: -7rem; + } + + .lg\:-left-32{ + left: -8rem; + } + + .lg\:-left-36{ + left: -9rem; + } + + .lg\:-left-40{ + left: -10rem; + } + + .lg\:-left-44{ + left: -11rem; + } + + .lg\:-left-48{ + left: -12rem; + } + + .lg\:-left-52{ + left: -13rem; + } + + .lg\:-left-56{ + left: -14rem; + } + + .lg\:-left-60{ + left: -15rem; + } + + .lg\:-left-64{ + left: -16rem; + } + + .lg\:-left-72{ + left: -18rem; + } + + .lg\:-left-80{ + left: -20rem; + } + + .lg\:-left-96{ + left: -24rem; + } + + .lg\:-left-px{ + left: -1px; + } + + .lg\:-left-0\.5{ + left: -0.125rem; + } + + .lg\:-left-1\.5{ + left: -0.375rem; + } + + .lg\:-left-2\.5{ + left: -0.625rem; + } + + .lg\:-left-3\.5{ + left: -0.875rem; + } + + .lg\:left-1\/2{ + left: 50%; + } + + .lg\:left-1\/3{ + left: 33.333333%; + } + + .lg\:left-2\/3{ + left: 66.666667%; + } + + .lg\:left-1\/4{ + left: 25%; + } + + .lg\:left-2\/4{ + left: 50%; + } + + .lg\:left-3\/4{ + left: 75%; + } + + .lg\:left-full{ + left: 100%; + } + + .lg\:-left-1\/2{ + left: -50%; + } + + .lg\:-left-1\/3{ + left: -33.333333%; + } + + .lg\:-left-2\/3{ + left: -66.666667%; + } + + .lg\:-left-1\/4{ + left: -25%; + } + + .lg\:-left-2\/4{ + left: -50%; + } + + .lg\:-left-3\/4{ + left: -75%; + } + + .lg\:-left-full{ + left: -100%; + } + + .lg\:left-5vw{ + left: 5vw; + } + + .lg\:isolate{ + isolation: isolate; + } + + .lg\:isolation-auto{ + isolation: auto; + } + + .lg\:z-0{ + z-index: 0; + } + + .lg\:z-10{ + z-index: 10; + } + + .lg\:z-20{ + z-index: 20; + } + + .lg\:z-30{ + z-index: 30; + } + + .lg\:z-40{ + z-index: 40; + } + + .lg\:z-50{ + z-index: 50; + } + + .lg\:z-auto{ + z-index: auto; + } + + .lg\:focus-within\:z-0:focus-within{ + z-index: 0; + } + + .lg\:focus-within\:z-10:focus-within{ + z-index: 10; + } + + .lg\:focus-within\:z-20:focus-within{ + z-index: 20; + } + + .lg\:focus-within\:z-30:focus-within{ + z-index: 30; + } + + .lg\:focus-within\:z-40:focus-within{ + z-index: 40; + } + + .lg\:focus-within\:z-50:focus-within{ + z-index: 50; + } + + .lg\:focus-within\:z-auto:focus-within{ + z-index: auto; + } + + .lg\:focus\:z-0:focus{ + z-index: 0; + } + + .lg\:focus\:z-10:focus{ + z-index: 10; + } + + .lg\:focus\:z-20:focus{ + z-index: 20; + } + + .lg\:focus\:z-30:focus{ + z-index: 30; + } + + .lg\:focus\:z-40:focus{ + z-index: 40; + } + + .lg\:focus\:z-50:focus{ + z-index: 50; + } + + .lg\:focus\:z-auto:focus{ + z-index: auto; + } + + .lg\:order-1{ + order: 1; + } + + .lg\:order-2{ + order: 2; + } + + .lg\:order-3{ + order: 3; + } + + .lg\:order-4{ + order: 4; + } + + .lg\:order-5{ + order: 5; + } + + .lg\:order-6{ + order: 6; + } + + .lg\:order-7{ + order: 7; + } + + .lg\:order-8{ + order: 8; + } + + .lg\:order-9{ + order: 9; + } + + .lg\:order-10{ + order: 10; + } + + .lg\:order-11{ + order: 11; + } + + .lg\:order-12{ + order: 12; + } + + .lg\:order-first{ + order: -9999; + } + + .lg\:order-last{ + order: 9999; + } + + .lg\:order-none{ + order: 0; + } + + .lg\:col-auto{ + grid-column: 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-5{ + grid-column: span 5 / span 5; + } + + .lg\:col-span-6{ + grid-column: span 6 / span 6; + } + + .lg\:col-span-7{ + grid-column: span 7 / span 7; + } + + .lg\:col-span-8{ + grid-column: span 8 / span 8; + } + + .lg\:col-span-9{ + grid-column: span 9 / span 9; + } + + .lg\:col-span-10{ + grid-column: span 10 / span 10; + } + + .lg\:col-span-11{ + grid-column: span 11 / span 11; + } + + .lg\:col-span-12{ + grid-column: span 12 / span 12; + } + + .lg\:col-span-full{ + grid-column: 1 / -1; + } + + .lg\:col-start-1{ + grid-column-start: 1; + } + + .lg\:col-start-2{ + grid-column-start: 2; + } + + .lg\:col-start-3{ + grid-column-start: 3; + } + + .lg\:col-start-4{ + grid-column-start: 4; + } + + .lg\:col-start-5{ + grid-column-start: 5; + } + + .lg\:col-start-6{ + grid-column-start: 6; + } + + .lg\:col-start-7{ + grid-column-start: 7; + } + + .lg\:col-start-8{ + grid-column-start: 8; + } + + .lg\:col-start-9{ + grid-column-start: 9; + } + + .lg\:col-start-10{ + grid-column-start: 10; + } + + .lg\:col-start-11{ + grid-column-start: 11; + } + + .lg\:col-start-12{ + grid-column-start: 12; + } + + .lg\:col-start-13{ + grid-column-start: 13; + } + + .lg\:col-start-auto{ + grid-column-start: auto; + } + + .lg\:col-end-1{ + grid-column-end: 1; + } + + .lg\:col-end-2{ + grid-column-end: 2; + } + + .lg\:col-end-3{ + grid-column-end: 3; + } + + .lg\:col-end-4{ + grid-column-end: 4; + } + + .lg\:col-end-5{ + grid-column-end: 5; + } + + .lg\:col-end-6{ + grid-column-end: 6; + } + + .lg\:col-end-7{ + grid-column-end: 7; + } + + .lg\:col-end-8{ + grid-column-end: 8; + } + + .lg\:col-end-9{ + grid-column-end: 9; + } + + .lg\:col-end-10{ + grid-column-end: 10; + } + + .lg\:col-end-11{ + grid-column-end: 11; + } + + .lg\:col-end-12{ + grid-column-end: 12; + } + + .lg\:col-end-13{ + grid-column-end: 13; + } + + .lg\:col-end-auto{ + grid-column-end: auto; + } + + .lg\:row-auto{ + grid-row: auto; + } + + .lg\:row-span-1{ + grid-row: span 1 / span 1; + } + + .lg\:row-span-2{ + grid-row: span 2 / span 2; + } + + .lg\:row-span-3{ + grid-row: span 3 / span 3; + } + + .lg\:row-span-4{ + grid-row: span 4 / span 4; + } + + .lg\:row-span-5{ + grid-row: span 5 / span 5; + } + + .lg\:row-span-6{ + grid-row: span 6 / span 6; + } + + .lg\:row-span-full{ + grid-row: 1 / -1; + } + + .lg\:row-start-1{ + grid-row-start: 1; + } + + .lg\:row-start-2{ + grid-row-start: 2; + } + + .lg\:row-start-3{ + grid-row-start: 3; + } + + .lg\:row-start-4{ + grid-row-start: 4; + } + + .lg\:row-start-5{ + grid-row-start: 5; + } + + .lg\:row-start-6{ + grid-row-start: 6; + } + + .lg\:row-start-7{ + grid-row-start: 7; + } + + .lg\:row-start-auto{ + grid-row-start: auto; + } + + .lg\:row-end-1{ + grid-row-end: 1; + } + + .lg\:row-end-2{ + grid-row-end: 2; + } + + .lg\:row-end-3{ + grid-row-end: 3; + } + + .lg\:row-end-4{ + grid-row-end: 4; + } + + .lg\:row-end-5{ + grid-row-end: 5; + } + + .lg\:row-end-6{ + grid-row-end: 6; + } + + .lg\:row-end-7{ + grid-row-end: 7; + } + + .lg\:row-end-auto{ + grid-row-end: auto; + } + + .lg\:float-right{ + float: right; + } + + .lg\:float-left{ + float: left; + } + + .lg\:float-none{ + float: none; + } + + .lg\:clear-left{ + clear: left; + } + + .lg\:clear-right{ + clear: right; + } + + .lg\:clear-both{ + clear: both; + } + + .lg\:clear-none{ + clear: none; + } + + .lg\:m-0{ + margin: 0px; + } + + .lg\:m-1{ + margin: 0.25rem; + } + + .lg\:m-2{ + margin: 0.5rem; + } + + .lg\:m-3{ + margin: 0.75rem; + } + + .lg\:m-4{ + margin: 1rem; + } + + .lg\:m-5{ + margin: 1.25rem; + } + + .lg\:m-6{ + margin: 1.5rem; + } + + .lg\:m-7{ + margin: 1.75rem; + } + + .lg\:m-8{ + margin: 2rem; + } + + .lg\:m-9{ + margin: 2.25rem; + } + + .lg\:m-10{ + margin: 2.5rem; + } + + .lg\:m-11{ + margin: 2.75rem; + } + + .lg\:m-12{ + margin: 3rem; + } + + .lg\:m-14{ + margin: 3.5rem; + } + + .lg\:m-16{ + margin: 4rem; + } + + .lg\:m-20{ + margin: 5rem; + } + + .lg\:m-24{ + margin: 6rem; + } + + .lg\:m-28{ + margin: 7rem; + } + + .lg\:m-32{ + margin: 8rem; + } + + .lg\:m-36{ + margin: 9rem; + } + + .lg\:m-40{ + margin: 10rem; + } + + .lg\:m-44{ + margin: 11rem; + } + + .lg\:m-48{ + margin: 12rem; + } + + .lg\:m-52{ + margin: 13rem; + } + + .lg\:m-56{ + margin: 14rem; + } + + .lg\:m-60{ + margin: 15rem; + } + + .lg\:m-64{ + margin: 16rem; + } + + .lg\:m-72{ + margin: 18rem; + } + + .lg\:m-80{ + margin: 20rem; + } + + .lg\:m-96{ + margin: 24rem; + } + + .lg\:m-auto{ + margin: auto; + } + + .lg\:m-px{ + margin: 1px; + } + + .lg\:m-0\.5{ + margin: 0.125rem; + } + + .lg\:m-1\.5{ + margin: 0.375rem; + } + + .lg\:m-2\.5{ + margin: 0.625rem; + } + + .lg\:m-3\.5{ + margin: 0.875rem; + } + + .lg\:-m-0{ + margin: 0px; + } + + .lg\:-m-1{ + margin: -0.25rem; + } + + .lg\:-m-2{ + margin: -0.5rem; + } + + .lg\:-m-3{ + margin: -0.75rem; + } + + .lg\:-m-4{ + margin: -1rem; + } + + .lg\:-m-5{ + margin: -1.25rem; + } + + .lg\:-m-6{ + margin: -1.5rem; + } + + .lg\:-m-7{ + margin: -1.75rem; + } + + .lg\:-m-8{ + margin: -2rem; + } + + .lg\:-m-9{ + margin: -2.25rem; + } + + .lg\:-m-10{ + margin: -2.5rem; + } + + .lg\:-m-11{ + margin: -2.75rem; + } + + .lg\:-m-12{ + margin: -3rem; + } + + .lg\:-m-14{ + margin: -3.5rem; + } + + .lg\:-m-16{ + margin: -4rem; + } + + .lg\:-m-20{ + margin: -5rem; + } + + .lg\:-m-24{ + margin: -6rem; + } + + .lg\:-m-28{ + margin: -7rem; + } + + .lg\:-m-32{ + margin: -8rem; + } + + .lg\:-m-36{ + margin: -9rem; + } + + .lg\:-m-40{ + margin: -10rem; + } + + .lg\:-m-44{ + margin: -11rem; + } + + .lg\:-m-48{ + margin: -12rem; + } + + .lg\:-m-52{ + margin: -13rem; + } + + .lg\:-m-56{ + margin: -14rem; + } + + .lg\:-m-60{ + margin: -15rem; + } + + .lg\:-m-64{ + margin: -16rem; + } + + .lg\:-m-72{ + margin: -18rem; + } + + .lg\:-m-80{ + margin: -20rem; + } + + .lg\:-m-96{ + margin: -24rem; + } + + .lg\:-m-px{ + margin: -1px; + } + + .lg\:-m-0\.5{ + margin: -0.125rem; + } + + .lg\:-m-1\.5{ + margin: -0.375rem; + } + + .lg\:-m-2\.5{ + margin: -0.625rem; + } + + .lg\:-m-3\.5{ + margin: -0.875rem; + } + + .lg\:mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .lg\:mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .lg\:mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .lg\:mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .lg\:mx-4{ + margin-left: 1rem; + margin-right: 1rem; + } + + .lg\:mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .lg\:mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .lg\:mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .lg\:mx-8{ + margin-left: 2rem; + margin-right: 2rem; + } + + .lg\:mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .lg\:mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .lg\:mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .lg\:mx-12{ + margin-left: 3rem; + margin-right: 3rem; + } + + .lg\:mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .lg\:mx-16{ + margin-left: 4rem; + margin-right: 4rem; + } + + .lg\:mx-20{ + margin-left: 5rem; + margin-right: 5rem; + } + + .lg\:mx-24{ + margin-left: 6rem; + margin-right: 6rem; + } + + .lg\:mx-28{ + margin-left: 7rem; + margin-right: 7rem; + } + + .lg\:mx-32{ + margin-left: 8rem; + margin-right: 8rem; + } + + .lg\:mx-36{ + margin-left: 9rem; + margin-right: 9rem; + } + + .lg\:mx-40{ + margin-left: 10rem; + margin-right: 10rem; + } + + .lg\:mx-44{ + margin-left: 11rem; + margin-right: 11rem; + } + + .lg\:mx-48{ + margin-left: 12rem; + margin-right: 12rem; + } + + .lg\:mx-52{ + margin-left: 13rem; + margin-right: 13rem; + } + + .lg\:mx-56{ + margin-left: 14rem; + margin-right: 14rem; + } + + .lg\:mx-60{ + margin-left: 15rem; + margin-right: 15rem; + } + + .lg\:mx-64{ + margin-left: 16rem; + margin-right: 16rem; + } + + .lg\:mx-72{ + margin-left: 18rem; + margin-right: 18rem; + } + + .lg\:mx-80{ + margin-left: 20rem; + margin-right: 20rem; + } + + .lg\:mx-96{ + margin-left: 24rem; + margin-right: 24rem; + } + + .lg\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + + .lg\:mx-px{ + margin-left: 1px; + margin-right: 1px; + } + + .lg\:mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .lg\:mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .lg\:mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .lg\:mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .lg\:-mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .lg\:-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .lg\:-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .lg\:-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .lg\:-mx-4{ + margin-left: -1rem; + margin-right: -1rem; + } + + .lg\:-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .lg\:-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .lg\:-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .lg\:-mx-8{ + margin-left: -2rem; + margin-right: -2rem; + } + + .lg\:-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .lg\:-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .lg\:-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .lg\:-mx-12{ + margin-left: -3rem; + margin-right: -3rem; + } + + .lg\:-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .lg\:-mx-16{ + margin-left: -4rem; + margin-right: -4rem; + } + + .lg\:-mx-20{ + margin-left: -5rem; + margin-right: -5rem; + } + + .lg\:-mx-24{ + margin-left: -6rem; + margin-right: -6rem; + } + + .lg\:-mx-28{ + margin-left: -7rem; + margin-right: -7rem; + } + + .lg\:-mx-32{ + margin-left: -8rem; + margin-right: -8rem; + } + + .lg\:-mx-36{ + margin-left: -9rem; + margin-right: -9rem; + } + + .lg\:-mx-40{ + margin-left: -10rem; + margin-right: -10rem; + } + + .lg\:-mx-44{ + margin-left: -11rem; + margin-right: -11rem; + } + + .lg\:-mx-48{ + margin-left: -12rem; + margin-right: -12rem; + } + + .lg\:-mx-52{ + margin-left: -13rem; + margin-right: -13rem; + } + + .lg\:-mx-56{ + margin-left: -14rem; + margin-right: -14rem; + } + + .lg\:-mx-60{ + margin-left: -15rem; + margin-right: -15rem; + } + + .lg\:-mx-64{ + margin-left: -16rem; + margin-right: -16rem; + } + + .lg\:-mx-72{ + margin-left: -18rem; + margin-right: -18rem; + } + + .lg\:-mx-80{ + margin-left: -20rem; + margin-right: -20rem; + } + + .lg\:-mx-96{ + margin-left: -24rem; + margin-right: -24rem; + } + + .lg\:-mx-px{ + margin-left: -1px; + margin-right: -1px; + } + + .lg\:-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .lg\:-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .lg\:-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .lg\:-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .lg\:my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .lg\:my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .lg\:my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .lg\:my-4{ + margin-top: 1rem; + margin-bottom: 1rem; + } + + .lg\:my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .lg\:my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .lg\:my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .lg\:my-8{ + margin-top: 2rem; + margin-bottom: 2rem; + } + + .lg\:my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .lg\:my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .lg\:my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .lg\:my-12{ + margin-top: 3rem; + margin-bottom: 3rem; + } + + .lg\:my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .lg\:my-16{ + margin-top: 4rem; + margin-bottom: 4rem; + } + + .lg\:my-20{ + margin-top: 5rem; + margin-bottom: 5rem; + } + + .lg\:my-24{ + margin-top: 6rem; + margin-bottom: 6rem; + } + + .lg\:my-28{ + margin-top: 7rem; + margin-bottom: 7rem; + } + + .lg\:my-32{ + margin-top: 8rem; + margin-bottom: 8rem; + } + + .lg\:my-36{ + margin-top: 9rem; + margin-bottom: 9rem; + } + + .lg\:my-40{ + margin-top: 10rem; + margin-bottom: 10rem; + } + + .lg\:my-44{ + margin-top: 11rem; + margin-bottom: 11rem; + } + + .lg\:my-48{ + margin-top: 12rem; + margin-bottom: 12rem; + } + + .lg\:my-52{ + margin-top: 13rem; + margin-bottom: 13rem; + } + + .lg\:my-56{ + margin-top: 14rem; + margin-bottom: 14rem; + } + + .lg\:my-60{ + margin-top: 15rem; + margin-bottom: 15rem; + } + + .lg\:my-64{ + margin-top: 16rem; + margin-bottom: 16rem; + } + + .lg\:my-72{ + margin-top: 18rem; + margin-bottom: 18rem; + } + + .lg\:my-80{ + margin-top: 20rem; + margin-bottom: 20rem; + } + + .lg\:my-96{ + margin-top: 24rem; + margin-bottom: 24rem; + } + + .lg\:my-auto{ + margin-top: auto; + margin-bottom: auto; + } + + .lg\:my-px{ + margin-top: 1px; + margin-bottom: 1px; + } + + .lg\:my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .lg\:my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .lg\:my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .lg\:my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .lg\:-my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .lg\:-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .lg\:-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .lg\:-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; + } + + .lg\:-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .lg\:-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .lg\:-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .lg\:-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; + } + + .lg\:-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .lg\:-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .lg\:-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .lg\:-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; + } + + .lg\:-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .lg\:-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; + } + + .lg\:-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; + } + + .lg\:-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; + } + + .lg\:-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; + } + + .lg\:-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; + } + + .lg\:-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; + } + + .lg\:-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; + } + + .lg\:-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; + } + + .lg\:-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; + } + + .lg\:-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; + } + + .lg\:-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; + } + + .lg\:-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; + } + + .lg\:-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; + } + + .lg\:-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; + } + + .lg\:-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; + } + + .lg\:-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; + } + + .lg\:-my-px{ + margin-top: -1px; + margin-bottom: -1px; + } + + .lg\:-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .lg\:-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .lg\:-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .lg\:-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .lg\:mt-0{ + margin-top: 0px; + } + + .lg\:mt-1{ + margin-top: 0.25rem; + } + + .lg\:mt-2{ + margin-top: 0.5rem; + } + + .lg\:mt-3{ + margin-top: 0.75rem; + } + + .lg\:mt-4{ + margin-top: 1rem; + } + + .lg\:mt-5{ + margin-top: 1.25rem; + } + + .lg\:mt-6{ + margin-top: 1.5rem; + } + + .lg\:mt-7{ + margin-top: 1.75rem; + } + + .lg\:mt-8{ + margin-top: 2rem; + } + + .lg\:mt-9{ + margin-top: 2.25rem; + } + + .lg\:mt-10{ + margin-top: 2.5rem; + } + + .lg\:mt-11{ + margin-top: 2.75rem; + } + + .lg\:mt-12{ + margin-top: 3rem; + } + + .lg\:mt-14{ + margin-top: 3.5rem; + } + + .lg\:mt-16{ + margin-top: 4rem; + } + + .lg\:mt-20{ + margin-top: 5rem; + } + + .lg\:mt-24{ + margin-top: 6rem; + } + + .lg\:mt-28{ + margin-top: 7rem; + } + + .lg\:mt-32{ + margin-top: 8rem; + } + + .lg\:mt-36{ + margin-top: 9rem; + } + + .lg\:mt-40{ + margin-top: 10rem; + } + + .lg\:mt-44{ + margin-top: 11rem; + } + + .lg\:mt-48{ + margin-top: 12rem; + } + + .lg\:mt-52{ + margin-top: 13rem; + } + + .lg\:mt-56{ + margin-top: 14rem; + } + + .lg\:mt-60{ + margin-top: 15rem; + } + + .lg\:mt-64{ + margin-top: 16rem; + } + + .lg\:mt-72{ + margin-top: 18rem; + } + + .lg\:mt-80{ + margin-top: 20rem; + } + + .lg\:mt-96{ + margin-top: 24rem; + } + + .lg\:mt-auto{ + margin-top: auto; + } + + .lg\:mt-px{ + margin-top: 1px; + } + + .lg\:mt-0\.5{ + margin-top: 0.125rem; + } + + .lg\:mt-1\.5{ + margin-top: 0.375rem; + } + + .lg\:mt-2\.5{ + margin-top: 0.625rem; + } + + .lg\:mt-3\.5{ + margin-top: 0.875rem; + } + + .lg\:-mt-0{ + margin-top: 0px; + } + + .lg\:-mt-1{ + margin-top: -0.25rem; + } + + .lg\:-mt-2{ + margin-top: -0.5rem; + } + + .lg\:-mt-3{ + margin-top: -0.75rem; + } + + .lg\:-mt-4{ + margin-top: -1rem; + } + + .lg\:-mt-5{ + margin-top: -1.25rem; + } + + .lg\:-mt-6{ + margin-top: -1.5rem; + } + + .lg\:-mt-7{ + margin-top: -1.75rem; + } + + .lg\:-mt-8{ + margin-top: -2rem; + } + + .lg\:-mt-9{ + margin-top: -2.25rem; + } + + .lg\:-mt-10{ + margin-top: -2.5rem; + } + + .lg\:-mt-11{ + margin-top: -2.75rem; + } + + .lg\:-mt-12{ + margin-top: -3rem; + } + + .lg\:-mt-14{ + margin-top: -3.5rem; + } + + .lg\:-mt-16{ + margin-top: -4rem; + } + + .lg\:-mt-20{ + margin-top: -5rem; + } + + .lg\:-mt-24{ + margin-top: -6rem; + } + + .lg\:-mt-28{ + margin-top: -7rem; + } + + .lg\:-mt-32{ + margin-top: -8rem; + } + + .lg\:-mt-36{ + margin-top: -9rem; + } + + .lg\:-mt-40{ + margin-top: -10rem; + } + + .lg\:-mt-44{ + margin-top: -11rem; + } + + .lg\:-mt-48{ + margin-top: -12rem; + } + + .lg\:-mt-52{ + margin-top: -13rem; + } + + .lg\:-mt-56{ + margin-top: -14rem; + } + + .lg\:-mt-60{ + margin-top: -15rem; + } + + .lg\:-mt-64{ + margin-top: -16rem; + } + + .lg\:-mt-72{ + margin-top: -18rem; + } + + .lg\:-mt-80{ + margin-top: -20rem; + } + + .lg\:-mt-96{ + margin-top: -24rem; + } + + .lg\:-mt-px{ + margin-top: -1px; + } + + .lg\:-mt-0\.5{ + margin-top: -0.125rem; + } + + .lg\:-mt-1\.5{ + margin-top: -0.375rem; + } + + .lg\:-mt-2\.5{ + margin-top: -0.625rem; + } + + .lg\:-mt-3\.5{ + margin-top: -0.875rem; + } + + .lg\:mr-0{ + margin-right: 0px; + } + + .lg\:mr-1{ + margin-right: 0.25rem; + } + + .lg\:mr-2{ + margin-right: 0.5rem; + } + + .lg\:mr-3{ + margin-right: 0.75rem; + } + + .lg\:mr-4{ + margin-right: 1rem; + } + + .lg\:mr-5{ + margin-right: 1.25rem; + } + + .lg\:mr-6{ + margin-right: 1.5rem; + } + + .lg\:mr-7{ + margin-right: 1.75rem; + } + + .lg\:mr-8{ + margin-right: 2rem; + } + + .lg\:mr-9{ + margin-right: 2.25rem; + } + + .lg\:mr-10{ + margin-right: 2.5rem; + } + + .lg\:mr-11{ + margin-right: 2.75rem; + } + + .lg\:mr-12{ + margin-right: 3rem; + } + + .lg\:mr-14{ + margin-right: 3.5rem; + } + + .lg\:mr-16{ + margin-right: 4rem; + } + + .lg\:mr-20{ + margin-right: 5rem; + } + + .lg\:mr-24{ + margin-right: 6rem; + } + + .lg\:mr-28{ + margin-right: 7rem; + } + + .lg\:mr-32{ + margin-right: 8rem; + } + + .lg\:mr-36{ + margin-right: 9rem; + } + + .lg\:mr-40{ + margin-right: 10rem; + } + + .lg\:mr-44{ + margin-right: 11rem; + } + + .lg\:mr-48{ + margin-right: 12rem; + } + + .lg\:mr-52{ + margin-right: 13rem; + } + + .lg\:mr-56{ + margin-right: 14rem; + } + + .lg\:mr-60{ + margin-right: 15rem; + } + + .lg\:mr-64{ + margin-right: 16rem; + } + + .lg\:mr-72{ + margin-right: 18rem; + } + + .lg\:mr-80{ + margin-right: 20rem; + } + + .lg\:mr-96{ + margin-right: 24rem; + } + + .lg\:mr-auto{ + margin-right: auto; + } + + .lg\:mr-px{ + margin-right: 1px; + } + + .lg\:mr-0\.5{ + margin-right: 0.125rem; + } + + .lg\:mr-1\.5{ + margin-right: 0.375rem; + } + + .lg\:mr-2\.5{ + margin-right: 0.625rem; + } + + .lg\:mr-3\.5{ + margin-right: 0.875rem; + } + + .lg\:-mr-0{ + margin-right: 0px; + } + + .lg\:-mr-1{ + margin-right: -0.25rem; + } + + .lg\:-mr-2{ + margin-right: -0.5rem; + } + + .lg\:-mr-3{ + margin-right: -0.75rem; + } + + .lg\:-mr-4{ + margin-right: -1rem; + } + + .lg\:-mr-5{ + margin-right: -1.25rem; + } + + .lg\:-mr-6{ + margin-right: -1.5rem; + } + + .lg\:-mr-7{ + margin-right: -1.75rem; + } + + .lg\:-mr-8{ + margin-right: -2rem; + } + + .lg\:-mr-9{ + margin-right: -2.25rem; + } + + .lg\:-mr-10{ + margin-right: -2.5rem; + } + + .lg\:-mr-11{ + margin-right: -2.75rem; + } + + .lg\:-mr-12{ + margin-right: -3rem; + } + + .lg\:-mr-14{ + margin-right: -3.5rem; + } + + .lg\:-mr-16{ + margin-right: -4rem; + } + + .lg\:-mr-20{ + margin-right: -5rem; + } + + .lg\:-mr-24{ + margin-right: -6rem; + } + + .lg\:-mr-28{ + margin-right: -7rem; + } + + .lg\:-mr-32{ + margin-right: -8rem; + } + + .lg\:-mr-36{ + margin-right: -9rem; + } + + .lg\:-mr-40{ + margin-right: -10rem; + } + + .lg\:-mr-44{ + margin-right: -11rem; + } + + .lg\:-mr-48{ + margin-right: -12rem; + } + + .lg\:-mr-52{ + margin-right: -13rem; + } + + .lg\:-mr-56{ + margin-right: -14rem; + } + + .lg\:-mr-60{ + margin-right: -15rem; + } + + .lg\:-mr-64{ + margin-right: -16rem; + } + + .lg\:-mr-72{ + margin-right: -18rem; + } + + .lg\:-mr-80{ + margin-right: -20rem; + } + + .lg\:-mr-96{ + margin-right: -24rem; + } + + .lg\:-mr-px{ + margin-right: -1px; + } + + .lg\:-mr-0\.5{ + margin-right: -0.125rem; + } + + .lg\:-mr-1\.5{ + margin-right: -0.375rem; + } + + .lg\:-mr-2\.5{ + margin-right: -0.625rem; + } + + .lg\:-mr-3\.5{ + margin-right: -0.875rem; + } + + .lg\:mb-0{ + margin-bottom: 0px; + } + + .lg\:mb-1{ + margin-bottom: 0.25rem; + } + + .lg\:mb-2{ + margin-bottom: 0.5rem; + } + + .lg\:mb-3{ + margin-bottom: 0.75rem; + } + + .lg\:mb-4{ + margin-bottom: 1rem; + } + + .lg\:mb-5{ + margin-bottom: 1.25rem; + } + + .lg\:mb-6{ + margin-bottom: 1.5rem; + } + + .lg\:mb-7{ + margin-bottom: 1.75rem; + } + + .lg\:mb-8{ + margin-bottom: 2rem; + } + + .lg\:mb-9{ + margin-bottom: 2.25rem; + } + + .lg\:mb-10{ + margin-bottom: 2.5rem; + } + + .lg\:mb-11{ + margin-bottom: 2.75rem; + } + + .lg\:mb-12{ + margin-bottom: 3rem; + } + + .lg\:mb-14{ + margin-bottom: 3.5rem; + } + + .lg\:mb-16{ + margin-bottom: 4rem; + } + + .lg\:mb-20{ + margin-bottom: 5rem; + } + + .lg\:mb-24{ + margin-bottom: 6rem; + } + + .lg\:mb-28{ + margin-bottom: 7rem; + } + + .lg\:mb-32{ + margin-bottom: 8rem; + } + + .lg\:mb-36{ + margin-bottom: 9rem; + } + + .lg\:mb-40{ + margin-bottom: 10rem; + } + + .lg\:mb-44{ + margin-bottom: 11rem; + } + + .lg\:mb-48{ + margin-bottom: 12rem; + } + + .lg\:mb-52{ + margin-bottom: 13rem; + } + + .lg\:mb-56{ + margin-bottom: 14rem; + } + + .lg\:mb-60{ + margin-bottom: 15rem; + } + + .lg\:mb-64{ + margin-bottom: 16rem; + } + + .lg\:mb-72{ + margin-bottom: 18rem; + } + + .lg\:mb-80{ + margin-bottom: 20rem; + } + + .lg\:mb-96{ + margin-bottom: 24rem; + } + + .lg\:mb-auto{ + margin-bottom: auto; + } + + .lg\:mb-px{ + margin-bottom: 1px; + } + + .lg\:mb-0\.5{ + margin-bottom: 0.125rem; + } + + .lg\:mb-1\.5{ + margin-bottom: 0.375rem; + } + + .lg\:mb-2\.5{ + margin-bottom: 0.625rem; + } + + .lg\:mb-3\.5{ + margin-bottom: 0.875rem; + } + + .lg\:-mb-0{ + margin-bottom: 0px; + } + + .lg\:-mb-1{ + margin-bottom: -0.25rem; + } + + .lg\:-mb-2{ + margin-bottom: -0.5rem; + } + + .lg\:-mb-3{ + margin-bottom: -0.75rem; + } + + .lg\:-mb-4{ + margin-bottom: -1rem; + } + + .lg\:-mb-5{ + margin-bottom: -1.25rem; + } + + .lg\:-mb-6{ + margin-bottom: -1.5rem; + } + + .lg\:-mb-7{ + margin-bottom: -1.75rem; + } + + .lg\:-mb-8{ + margin-bottom: -2rem; + } + + .lg\:-mb-9{ + margin-bottom: -2.25rem; + } + + .lg\:-mb-10{ + margin-bottom: -2.5rem; + } + + .lg\:-mb-11{ + margin-bottom: -2.75rem; + } + + .lg\:-mb-12{ + margin-bottom: -3rem; + } + + .lg\:-mb-14{ + margin-bottom: -3.5rem; + } + + .lg\:-mb-16{ + margin-bottom: -4rem; + } + + .lg\:-mb-20{ + margin-bottom: -5rem; + } + + .lg\:-mb-24{ + margin-bottom: -6rem; + } + + .lg\:-mb-28{ + margin-bottom: -7rem; + } + + .lg\:-mb-32{ + margin-bottom: -8rem; + } + + .lg\:-mb-36{ + margin-bottom: -9rem; + } + + .lg\:-mb-40{ + margin-bottom: -10rem; + } + + .lg\:-mb-44{ + margin-bottom: -11rem; + } + + .lg\:-mb-48{ + margin-bottom: -12rem; + } + + .lg\:-mb-52{ + margin-bottom: -13rem; + } + + .lg\:-mb-56{ + margin-bottom: -14rem; + } + + .lg\:-mb-60{ + margin-bottom: -15rem; + } + + .lg\:-mb-64{ + margin-bottom: -16rem; + } + + .lg\:-mb-72{ + margin-bottom: -18rem; + } + + .lg\:-mb-80{ + margin-bottom: -20rem; + } + + .lg\:-mb-96{ + margin-bottom: -24rem; + } + + .lg\:-mb-px{ + margin-bottom: -1px; + } + + .lg\:-mb-0\.5{ + margin-bottom: -0.125rem; + } + + .lg\:-mb-1\.5{ + margin-bottom: -0.375rem; + } + + .lg\:-mb-2\.5{ + margin-bottom: -0.625rem; + } + + .lg\:-mb-3\.5{ + margin-bottom: -0.875rem; + } + + .lg\:ml-0{ + margin-left: 0px; + } + + .lg\:ml-1{ + margin-left: 0.25rem; + } + + .lg\:ml-2{ + margin-left: 0.5rem; + } + + .lg\:ml-3{ + margin-left: 0.75rem; + } + + .lg\:ml-4{ + margin-left: 1rem; + } + + .lg\:ml-5{ + margin-left: 1.25rem; + } + + .lg\:ml-6{ + margin-left: 1.5rem; + } + + .lg\:ml-7{ + margin-left: 1.75rem; + } + + .lg\:ml-8{ + margin-left: 2rem; + } + + .lg\:ml-9{ + margin-left: 2.25rem; + } + + .lg\:ml-10{ + margin-left: 2.5rem; + } + + .lg\:ml-11{ + margin-left: 2.75rem; + } + + .lg\:ml-12{ + margin-left: 3rem; + } + + .lg\:ml-14{ + margin-left: 3.5rem; + } + + .lg\:ml-16{ + margin-left: 4rem; + } + + .lg\:ml-20{ + margin-left: 5rem; + } + + .lg\:ml-24{ + margin-left: 6rem; + } + + .lg\:ml-28{ + margin-left: 7rem; + } + + .lg\:ml-32{ + margin-left: 8rem; + } + + .lg\:ml-36{ + margin-left: 9rem; + } + + .lg\:ml-40{ + margin-left: 10rem; + } + + .lg\:ml-44{ + margin-left: 11rem; + } + + .lg\:ml-48{ + margin-left: 12rem; + } + + .lg\:ml-52{ + margin-left: 13rem; + } + + .lg\:ml-56{ + margin-left: 14rem; + } + + .lg\:ml-60{ + margin-left: 15rem; + } + + .lg\:ml-64{ + margin-left: 16rem; + } + + .lg\:ml-72{ + margin-left: 18rem; + } + + .lg\:ml-80{ + margin-left: 20rem; + } + + .lg\:ml-96{ + margin-left: 24rem; + } + + .lg\:ml-auto{ + margin-left: auto; + } + + .lg\:ml-px{ + margin-left: 1px; + } + + .lg\:ml-0\.5{ + margin-left: 0.125rem; + } + + .lg\:ml-1\.5{ + margin-left: 0.375rem; + } + + .lg\:ml-2\.5{ + margin-left: 0.625rem; + } + + .lg\:ml-3\.5{ + margin-left: 0.875rem; + } + + .lg\:-ml-0{ + margin-left: 0px; + } + + .lg\:-ml-1{ + margin-left: -0.25rem; + } + + .lg\:-ml-2{ + margin-left: -0.5rem; + } + + .lg\:-ml-3{ + margin-left: -0.75rem; + } + + .lg\:-ml-4{ + margin-left: -1rem; + } + + .lg\:-ml-5{ + margin-left: -1.25rem; + } + + .lg\:-ml-6{ + margin-left: -1.5rem; + } + + .lg\:-ml-7{ + margin-left: -1.75rem; + } + + .lg\:-ml-8{ + margin-left: -2rem; + } + + .lg\:-ml-9{ + margin-left: -2.25rem; + } + + .lg\:-ml-10{ + margin-left: -2.5rem; + } + + .lg\:-ml-11{ + margin-left: -2.75rem; + } + + .lg\:-ml-12{ + margin-left: -3rem; + } + + .lg\:-ml-14{ + margin-left: -3.5rem; + } + + .lg\:-ml-16{ + margin-left: -4rem; + } + + .lg\:-ml-20{ + margin-left: -5rem; + } + + .lg\:-ml-24{ + margin-left: -6rem; + } + + .lg\:-ml-28{ + margin-left: -7rem; + } + + .lg\:-ml-32{ + margin-left: -8rem; + } + + .lg\:-ml-36{ + margin-left: -9rem; + } + + .lg\:-ml-40{ + margin-left: -10rem; + } + + .lg\:-ml-44{ + margin-left: -11rem; + } + + .lg\:-ml-48{ + margin-left: -12rem; + } + + .lg\:-ml-52{ + margin-left: -13rem; + } + + .lg\:-ml-56{ + margin-left: -14rem; + } + + .lg\:-ml-60{ + margin-left: -15rem; + } + + .lg\:-ml-64{ + margin-left: -16rem; + } + + .lg\:-ml-72{ + margin-left: -18rem; + } + + .lg\:-ml-80{ + margin-left: -20rem; + } + + .lg\:-ml-96{ + margin-left: -24rem; + } + + .lg\:-ml-px{ + margin-left: -1px; + } + + .lg\:-ml-0\.5{ + margin-left: -0.125rem; + } + + .lg\:-ml-1\.5{ + margin-left: -0.375rem; + } + + .lg\:-ml-2\.5{ + margin-left: -0.625rem; + } + + .lg\:-ml-3\.5{ + margin-left: -0.875rem; + } + + .lg\:box-border{ + box-sizing: border-box; + } + + .lg\:box-content{ + box-sizing: content-box; + } + + .lg\:block{ + display: block; + } + + .lg\:inline-block{ + display: inline-block; + } + + .lg\:inline{ + display: inline; + } + + .lg\:flex{ + display: flex; + } + + .lg\:inline-flex{ + display: inline-flex; + } + + .lg\:table{ + display: table; + } + + .lg\:inline-table{ + display: inline-table; + } + + .lg\:table-caption{ + display: table-caption; + } + + .lg\:table-cell{ + display: table-cell; + } + + .lg\:table-column{ + display: table-column; + } + + .lg\:table-column-group{ + display: table-column-group; + } + + .lg\:table-footer-group{ + display: table-footer-group; + } + + .lg\:table-header-group{ + display: table-header-group; + } + + .lg\:table-row-group{ + display: table-row-group; + } + + .lg\:table-row{ + display: table-row; + } + + .lg\:flow-root{ + display: flow-root; + } + + .lg\:grid{ + display: grid; + } + + .lg\:inline-grid{ + display: inline-grid; + } + + .lg\:contents{ + display: contents; + } + + .lg\:list-item{ + display: list-item; + } + + .lg\:hidden{ + display: none; + } + + .lg\:h-0{ + height: 0px; + } + + .lg\:h-1{ + height: 0.25rem; + } + + .lg\:h-2{ + height: 0.5rem; + } + + .lg\:h-3{ + height: 0.75rem; + } + + .lg\:h-4{ + height: 1rem; + } + + .lg\:h-5{ + height: 1.25rem; + } + + .lg\:h-6{ + height: 1.5rem; + } + + .lg\:h-7{ + height: 1.75rem; + } + + .lg\:h-8{ + height: 2rem; + } + + .lg\:h-9{ + height: 2.25rem; + } + + .lg\:h-10{ + height: 2.5rem; + } + + .lg\:h-11{ + height: 2.75rem; + } + + .lg\:h-12{ + height: 3rem; + } + + .lg\:h-14{ + height: 3.5rem; + } + + .lg\:h-16{ + height: 4rem; + } + + .lg\:h-20{ + height: 5rem; + } + + .lg\:h-24{ + height: 6rem; + } + + .lg\:h-28{ + height: 7rem; + } + + .lg\:h-32{ + height: 8rem; + } + + .lg\:h-36{ + height: 9rem; + } + + .lg\:h-40{ + height: 10rem; + } + + .lg\:h-44{ + height: 11rem; + } + + .lg\:h-48{ + height: 12rem; + } + + .lg\:h-52{ + height: 13rem; + } + + .lg\:h-56{ + height: 14rem; + } + + .lg\:h-60{ + height: 15rem; + } + + .lg\:h-64{ + height: 16rem; + } + + .lg\:h-72{ + height: 18rem; + } + + .lg\:h-80{ + height: 20rem; + } + + .lg\:h-96{ + height: 24rem; + } + + .lg\:h-auto{ + height: auto; + } + + .lg\:h-px{ + height: 1px; + } + + .lg\:h-0\.5{ + height: 0.125rem; + } + + .lg\:h-1\.5{ + height: 0.375rem; + } + + .lg\:h-2\.5{ + height: 0.625rem; + } + + .lg\:h-3\.5{ + height: 0.875rem; + } + + .lg\:h-1\/2{ + height: 50%; + } + + .lg\:h-1\/3{ + height: 33.333333%; + } + + .lg\:h-2\/3{ + height: 66.666667%; + } + + .lg\:h-1\/4{ + height: 25%; + } + + .lg\:h-2\/4{ + height: 50%; + } + + .lg\:h-3\/4{ + height: 75%; + } + + .lg\:h-1\/5{ + height: 20%; + } + + .lg\:h-2\/5{ + height: 40%; + } + + .lg\:h-3\/5{ + height: 60%; + } + + .lg\:h-4\/5{ + height: 80%; + } + + .lg\:h-1\/6{ + height: 16.666667%; + } + + .lg\:h-2\/6{ + height: 33.333333%; + } + + .lg\:h-3\/6{ + height: 50%; + } + + .lg\:h-4\/6{ + height: 66.666667%; + } + + .lg\:h-5\/6{ + height: 83.333333%; + } + + .lg\:h-full{ + height: 100%; + } + + .lg\:h-screen{ + height: 100vh; + } + + .lg\:max-h-0{ + max-height: 0px; + } + + .lg\:max-h-1{ + max-height: 0.25rem; + } + + .lg\:max-h-2{ + max-height: 0.5rem; + } + + .lg\:max-h-3{ + max-height: 0.75rem; + } + + .lg\:max-h-4{ + max-height: 1rem; + } + + .lg\:max-h-5{ + max-height: 1.25rem; + } + + .lg\:max-h-6{ + max-height: 1.5rem; + } + + .lg\:max-h-7{ + max-height: 1.75rem; + } + + .lg\:max-h-8{ + max-height: 2rem; + } + + .lg\:max-h-9{ + max-height: 2.25rem; + } + + .lg\:max-h-10{ + max-height: 2.5rem; + } + + .lg\:max-h-11{ + max-height: 2.75rem; + } + + .lg\:max-h-12{ + max-height: 3rem; + } + + .lg\:max-h-14{ + max-height: 3.5rem; + } + + .lg\:max-h-16{ + max-height: 4rem; + } + + .lg\:max-h-20{ + max-height: 5rem; + } + + .lg\:max-h-24{ + max-height: 6rem; + } + + .lg\:max-h-28{ + max-height: 7rem; + } + + .lg\:max-h-32{ + max-height: 8rem; + } + + .lg\:max-h-36{ + max-height: 9rem; + } + + .lg\:max-h-40{ + max-height: 10rem; + } + + .lg\:max-h-44{ + max-height: 11rem; + } + + .lg\:max-h-48{ + max-height: 12rem; + } + + .lg\:max-h-52{ + max-height: 13rem; + } + + .lg\:max-h-56{ + max-height: 14rem; + } + + .lg\:max-h-60{ + max-height: 15rem; + } + + .lg\:max-h-64{ + max-height: 16rem; + } + + .lg\:max-h-72{ + max-height: 18rem; + } + + .lg\:max-h-80{ + max-height: 20rem; + } + + .lg\:max-h-96{ + max-height: 24rem; + } + + .lg\:max-h-px{ + max-height: 1px; + } + + .lg\:max-h-0\.5{ + max-height: 0.125rem; + } + + .lg\:max-h-1\.5{ + max-height: 0.375rem; + } + + .lg\:max-h-2\.5{ + max-height: 0.625rem; + } + + .lg\:max-h-3\.5{ + max-height: 0.875rem; + } + + .lg\:max-h-full{ + max-height: 100%; + } + + .lg\:max-h-screen{ + max-height: 100vh; + } + + .lg\:min-h-0{ + min-height: 0px; + } + + .lg\:min-h-full{ + min-height: 100%; + } + + .lg\:min-h-screen{ + min-height: 100vh; + } + + .lg\:w-0{ + width: 0px; + } + + .lg\:w-1{ + width: 0.25rem; + } + + .lg\:w-2{ + width: 0.5rem; + } + + .lg\:w-3{ + width: 0.75rem; + } + + .lg\:w-4{ + width: 1rem; + } + + .lg\:w-5{ + width: 1.25rem; + } + + .lg\:w-6{ + width: 1.5rem; + } + + .lg\:w-7{ + width: 1.75rem; + } + + .lg\:w-8{ + width: 2rem; + } + + .lg\:w-9{ + width: 2.25rem; + } + + .lg\:w-10{ + width: 2.5rem; + } + + .lg\:w-11{ + width: 2.75rem; + } + + .lg\:w-12{ + width: 3rem; + } + + .lg\:w-14{ + width: 3.5rem; + } + + .lg\:w-16{ + width: 4rem; + } + + .lg\:w-20{ + width: 5rem; + } + + .lg\:w-24{ + width: 6rem; + } + + .lg\:w-28{ + width: 7rem; + } + + .lg\:w-32{ + width: 8rem; + } + + .lg\:w-36{ + width: 9rem; + } + + .lg\:w-40{ + width: 10rem; + } + + .lg\:w-44{ + width: 11rem; + } + + .lg\:w-48{ + width: 12rem; + } + + .lg\:w-52{ + width: 13rem; + } + + .lg\:w-56{ + width: 14rem; + } + + .lg\:w-60{ + width: 15rem; + } + + .lg\:w-64{ + width: 16rem; + } + + .lg\:w-72{ + width: 18rem; + } + + .lg\:w-80{ + width: 20rem; + } + + .lg\:w-96{ + width: 24rem; + } + + .lg\:w-auto{ + width: auto; + } + + .lg\:w-px{ + width: 1px; + } + + .lg\:w-0\.5{ + width: 0.125rem; + } + + .lg\:w-1\.5{ + width: 0.375rem; + } + + .lg\:w-2\.5{ + width: 0.625rem; + } + + .lg\:w-3\.5{ + width: 0.875rem; + } + + .lg\:w-1\/2{ + width: 50%; + } + + .lg\:w-1\/3{ + width: 33.333333%; + } + + .lg\:w-2\/3{ + width: 66.666667%; + } + + .lg\:w-1\/4{ + width: 25%; + } + + .lg\:w-2\/4{ + width: 50%; + } + + .lg\:w-3\/4{ + width: 75%; + } + + .lg\:w-1\/5{ + width: 20%; + } + + .lg\:w-2\/5{ + width: 40%; + } + + .lg\:w-3\/5{ + width: 60%; + } + + .lg\:w-4\/5{ + width: 80%; + } + + .lg\:w-1\/6{ + width: 16.666667%; + } + + .lg\:w-2\/6{ + width: 33.333333%; + } + + .lg\:w-3\/6{ + width: 50%; + } + + .lg\:w-4\/6{ + width: 66.666667%; + } + + .lg\:w-5\/6{ + width: 83.333333%; + } + + .lg\:w-1\/12{ + width: 8.333333%; + } + + .lg\:w-2\/12{ + width: 16.666667%; + } + + .lg\:w-3\/12{ + width: 25%; + } + + .lg\:w-4\/12{ + width: 33.333333%; + } + + .lg\:w-5\/12{ + width: 41.666667%; + } + + .lg\:w-6\/12{ + width: 50%; + } + + .lg\:w-7\/12{ + width: 58.333333%; + } + + .lg\:w-8\/12{ + width: 66.666667%; + } + + .lg\:w-9\/12{ + width: 75%; + } + + .lg\:w-10\/12{ + width: 83.333333%; + } + + .lg\:w-11\/12{ + width: 91.666667%; + } + + .lg\:w-full{ + width: 100%; + } + + .lg\:w-screen{ + width: 100vw; + } + + .lg\:w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; + } + + .lg\:w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + } + + .lg\:min-w-0{ + min-width: 0px; + } + + .lg\:min-w-full{ + min-width: 100%; + } + + .lg\:min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; + } + + .lg\:min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; + } + + .lg\:max-w-0{ + max-width: 0rem; + } + + .lg\:max-w-none{ + max-width: none; + } + + .lg\:max-w-xs{ + max-width: 20rem; + } + + .lg\:max-w-sm{ + max-width: 24rem; + } + + .lg\:max-w-md{ + max-width: 28rem; + } + + .lg\:max-w-lg{ + max-width: 32rem; + } + + .lg\:max-w-xl{ + max-width: 36rem; + } + + .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-full{ + max-width: 100%; + } + + .lg\:max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .lg\:max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .lg\:max-w-prose{ + max-width: 65ch; + } + + .lg\:max-w-screen-sm{ + max-width: 640px; + } + + .lg\:max-w-screen-md{ + max-width: 768px; + } + + .lg\:max-w-screen-lg{ + max-width: 1024px; + } + + .lg\:max-w-screen-xl{ + max-width: 1280px; + } + + .lg\:max-w-screen-2xl{ + max-width: 1536px; + } + + .lg\:flex-1{ + flex: 1 1 0%; + } + + .lg\:flex-auto{ + flex: 1 1 auto; + } + + .lg\:flex-initial{ + flex: 0 1 auto; + } + + .lg\:flex-none{ + flex: none; + } + + .lg\:flex-shrink-0{ + flex-shrink: 0; + } + + .lg\:flex-shrink{ + flex-shrink: 1; + } + + .lg\:flex-grow-0{ + flex-grow: 0; + } + + .lg\:flex-grow{ + flex-grow: 1; + } + + .lg\:table-auto{ + table-layout: auto; + } + + .lg\:table-fixed{ + table-layout: fixed; + } + + .lg\:border-collapse{ + border-collapse: collapse; + } + + .lg\:border-separate{ + border-collapse: separate; + } + + .lg\:origin-center{ + transform-origin: center; + } + + .lg\:origin-top{ + transform-origin: top; + } + + .lg\:origin-top-right{ + transform-origin: top right; + } + + .lg\:origin-right{ + transform-origin: right; + } + + .lg\:origin-bottom-right{ + transform-origin: bottom right; + } + + .lg\:origin-bottom{ + transform-origin: bottom; + } + + .lg\:origin-bottom-left{ + transform-origin: bottom left; + } + + .lg\:origin-left{ + transform-origin: left; + } + + .lg\:origin-top-left{ + transform-origin: top left; + } + + .lg\:transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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)); + } + + .lg\:transform-gpu{ + --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; + 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)); + } + + .lg\:transform-none{ + transform: none; + } + + .lg\:translate-x-0{ + --tw-translate-x: 0px; + } + + .lg\:translate-x-1{ + --tw-translate-x: 0.25rem; + } + + .lg\:translate-x-2{ + --tw-translate-x: 0.5rem; + } + + .lg\:translate-x-3{ + --tw-translate-x: 0.75rem; + } + + .lg\:translate-x-4{ + --tw-translate-x: 1rem; + } + + .lg\:translate-x-5{ + --tw-translate-x: 1.25rem; + } + + .lg\:translate-x-6{ + --tw-translate-x: 1.5rem; + } + + .lg\:translate-x-7{ + --tw-translate-x: 1.75rem; + } + + .lg\:translate-x-8{ + --tw-translate-x: 2rem; + } + + .lg\:translate-x-9{ + --tw-translate-x: 2.25rem; + } + + .lg\:translate-x-10{ + --tw-translate-x: 2.5rem; + } + + .lg\:translate-x-11{ + --tw-translate-x: 2.75rem; + } + + .lg\:translate-x-12{ + --tw-translate-x: 3rem; + } + + .lg\:translate-x-14{ + --tw-translate-x: 3.5rem; + } + + .lg\:translate-x-16{ + --tw-translate-x: 4rem; + } + + .lg\:translate-x-20{ + --tw-translate-x: 5rem; + } + + .lg\:translate-x-24{ + --tw-translate-x: 6rem; + } + + .lg\:translate-x-28{ + --tw-translate-x: 7rem; + } + + .lg\:translate-x-32{ + --tw-translate-x: 8rem; + } + + .lg\:translate-x-36{ + --tw-translate-x: 9rem; + } + + .lg\:translate-x-40{ + --tw-translate-x: 10rem; + } + + .lg\:translate-x-44{ + --tw-translate-x: 11rem; + } + + .lg\:translate-x-48{ + --tw-translate-x: 12rem; + } + + .lg\:translate-x-52{ + --tw-translate-x: 13rem; + } + + .lg\:translate-x-56{ + --tw-translate-x: 14rem; + } + + .lg\:translate-x-60{ + --tw-translate-x: 15rem; + } + + .lg\:translate-x-64{ + --tw-translate-x: 16rem; + } + + .lg\:translate-x-72{ + --tw-translate-x: 18rem; + } + + .lg\:translate-x-80{ + --tw-translate-x: 20rem; + } + + .lg\:translate-x-96{ + --tw-translate-x: 24rem; + } + + .lg\:translate-x-px{ + --tw-translate-x: 1px; + } + + .lg\:translate-x-0\.5{ + --tw-translate-x: 0.125rem; + } + + .lg\:translate-x-1\.5{ + --tw-translate-x: 0.375rem; + } + + .lg\:translate-x-2\.5{ + --tw-translate-x: 0.625rem; + } + + .lg\:translate-x-3\.5{ + --tw-translate-x: 0.875rem; + } + + .lg\:-translate-x-0{ + --tw-translate-x: 0px; + } + + .lg\:-translate-x-1{ + --tw-translate-x: -0.25rem; + } + + .lg\:-translate-x-2{ + --tw-translate-x: -0.5rem; + } + + .lg\:-translate-x-3{ + --tw-translate-x: -0.75rem; + } + + .lg\:-translate-x-4{ + --tw-translate-x: -1rem; + } + + .lg\:-translate-x-5{ + --tw-translate-x: -1.25rem; + } + + .lg\:-translate-x-6{ + --tw-translate-x: -1.5rem; + } + + .lg\:-translate-x-7{ + --tw-translate-x: -1.75rem; + } + + .lg\:-translate-x-8{ + --tw-translate-x: -2rem; + } + + .lg\:-translate-x-9{ + --tw-translate-x: -2.25rem; + } + + .lg\:-translate-x-10{ + --tw-translate-x: -2.5rem; + } + + .lg\:-translate-x-11{ + --tw-translate-x: -2.75rem; + } + + .lg\:-translate-x-12{ + --tw-translate-x: -3rem; + } + + .lg\:-translate-x-14{ + --tw-translate-x: -3.5rem; + } + + .lg\:-translate-x-16{ + --tw-translate-x: -4rem; + } + + .lg\:-translate-x-20{ + --tw-translate-x: -5rem; + } + + .lg\:-translate-x-24{ + --tw-translate-x: -6rem; + } + + .lg\:-translate-x-28{ + --tw-translate-x: -7rem; + } + + .lg\:-translate-x-32{ + --tw-translate-x: -8rem; + } + + .lg\:-translate-x-36{ + --tw-translate-x: -9rem; + } + + .lg\:-translate-x-40{ + --tw-translate-x: -10rem; + } + + .lg\:-translate-x-44{ + --tw-translate-x: -11rem; + } + + .lg\:-translate-x-48{ + --tw-translate-x: -12rem; + } + + .lg\:-translate-x-52{ + --tw-translate-x: -13rem; + } + + .lg\:-translate-x-56{ + --tw-translate-x: -14rem; + } + + .lg\:-translate-x-60{ + --tw-translate-x: -15rem; + } + + .lg\:-translate-x-64{ + --tw-translate-x: -16rem; + } + + .lg\:-translate-x-72{ + --tw-translate-x: -18rem; + } + + .lg\:-translate-x-80{ + --tw-translate-x: -20rem; + } + + .lg\:-translate-x-96{ + --tw-translate-x: -24rem; + } + + .lg\:-translate-x-px{ + --tw-translate-x: -1px; + } + + .lg\:-translate-x-0\.5{ + --tw-translate-x: -0.125rem; + } + + .lg\:-translate-x-1\.5{ + --tw-translate-x: -0.375rem; + } + + .lg\:-translate-x-2\.5{ + --tw-translate-x: -0.625rem; + } + + .lg\:-translate-x-3\.5{ + --tw-translate-x: -0.875rem; + } + + .lg\:translate-x-1\/2{ + --tw-translate-x: 50%; + } + + .lg\:translate-x-1\/3{ + --tw-translate-x: 33.333333%; + } + + .lg\:translate-x-2\/3{ + --tw-translate-x: 66.666667%; + } + + .lg\:translate-x-1\/4{ + --tw-translate-x: 25%; + } + + .lg\:translate-x-2\/4{ + --tw-translate-x: 50%; + } + + .lg\:translate-x-3\/4{ + --tw-translate-x: 75%; + } + + .lg\:translate-x-full{ + --tw-translate-x: 100%; + } + + .lg\:-translate-x-1\/2{ + --tw-translate-x: -50%; + } + + .lg\:-translate-x-1\/3{ + --tw-translate-x: -33.333333%; + } + + .lg\:-translate-x-2\/3{ + --tw-translate-x: -66.666667%; + } + + .lg\:-translate-x-1\/4{ + --tw-translate-x: -25%; + } + + .lg\:-translate-x-2\/4{ + --tw-translate-x: -50%; + } + + .lg\:-translate-x-3\/4{ + --tw-translate-x: -75%; + } + + .lg\:-translate-x-full{ + --tw-translate-x: -100%; + } + + .lg\:translate-y-0{ + --tw-translate-y: 0px; + } + + .lg\:translate-y-1{ + --tw-translate-y: 0.25rem; + } + + .lg\:translate-y-2{ + --tw-translate-y: 0.5rem; + } + + .lg\:translate-y-3{ + --tw-translate-y: 0.75rem; + } + + .lg\:translate-y-4{ + --tw-translate-y: 1rem; + } + + .lg\:translate-y-5{ + --tw-translate-y: 1.25rem; + } + + .lg\:translate-y-6{ + --tw-translate-y: 1.5rem; + } + + .lg\:translate-y-7{ + --tw-translate-y: 1.75rem; + } + + .lg\:translate-y-8{ + --tw-translate-y: 2rem; + } + + .lg\:translate-y-9{ + --tw-translate-y: 2.25rem; + } + + .lg\:translate-y-10{ + --tw-translate-y: 2.5rem; + } + + .lg\:translate-y-11{ + --tw-translate-y: 2.75rem; + } + + .lg\:translate-y-12{ + --tw-translate-y: 3rem; + } + + .lg\:translate-y-14{ + --tw-translate-y: 3.5rem; + } + + .lg\:translate-y-16{ + --tw-translate-y: 4rem; + } + + .lg\:translate-y-20{ + --tw-translate-y: 5rem; + } + + .lg\:translate-y-24{ + --tw-translate-y: 6rem; + } + + .lg\:translate-y-28{ + --tw-translate-y: 7rem; + } + + .lg\:translate-y-32{ + --tw-translate-y: 8rem; + } + + .lg\:translate-y-36{ + --tw-translate-y: 9rem; + } + + .lg\:translate-y-40{ + --tw-translate-y: 10rem; + } + + .lg\:translate-y-44{ + --tw-translate-y: 11rem; + } + + .lg\:translate-y-48{ + --tw-translate-y: 12rem; + } + + .lg\:translate-y-52{ + --tw-translate-y: 13rem; + } + + .lg\:translate-y-56{ + --tw-translate-y: 14rem; + } + + .lg\:translate-y-60{ + --tw-translate-y: 15rem; + } + + .lg\:translate-y-64{ + --tw-translate-y: 16rem; + } + + .lg\:translate-y-72{ + --tw-translate-y: 18rem; + } + + .lg\:translate-y-80{ + --tw-translate-y: 20rem; + } + + .lg\:translate-y-96{ + --tw-translate-y: 24rem; + } + + .lg\:translate-y-px{ + --tw-translate-y: 1px; + } + + .lg\:translate-y-0\.5{ + --tw-translate-y: 0.125rem; + } + + .lg\:translate-y-1\.5{ + --tw-translate-y: 0.375rem; + } + + .lg\:translate-y-2\.5{ + --tw-translate-y: 0.625rem; + } + + .lg\:translate-y-3\.5{ + --tw-translate-y: 0.875rem; + } + + .lg\:-translate-y-0{ + --tw-translate-y: 0px; + } + + .lg\:-translate-y-1{ + --tw-translate-y: -0.25rem; + } + + .lg\:-translate-y-2{ + --tw-translate-y: -0.5rem; + } + + .lg\:-translate-y-3{ + --tw-translate-y: -0.75rem; + } + + .lg\:-translate-y-4{ + --tw-translate-y: -1rem; + } + + .lg\:-translate-y-5{ + --tw-translate-y: -1.25rem; + } + + .lg\:-translate-y-6{ + --tw-translate-y: -1.5rem; + } + + .lg\:-translate-y-7{ + --tw-translate-y: -1.75rem; + } + + .lg\:-translate-y-8{ + --tw-translate-y: -2rem; + } + + .lg\:-translate-y-9{ + --tw-translate-y: -2.25rem; + } + + .lg\:-translate-y-10{ + --tw-translate-y: -2.5rem; + } + + .lg\:-translate-y-11{ + --tw-translate-y: -2.75rem; + } + + .lg\:-translate-y-12{ + --tw-translate-y: -3rem; + } + + .lg\:-translate-y-14{ + --tw-translate-y: -3.5rem; + } + + .lg\:-translate-y-16{ + --tw-translate-y: -4rem; + } + + .lg\:-translate-y-20{ + --tw-translate-y: -5rem; + } + + .lg\:-translate-y-24{ + --tw-translate-y: -6rem; + } + + .lg\:-translate-y-28{ + --tw-translate-y: -7rem; + } + + .lg\:-translate-y-32{ + --tw-translate-y: -8rem; + } + + .lg\:-translate-y-36{ + --tw-translate-y: -9rem; + } + + .lg\:-translate-y-40{ + --tw-translate-y: -10rem; + } + + .lg\:-translate-y-44{ + --tw-translate-y: -11rem; + } + + .lg\:-translate-y-48{ + --tw-translate-y: -12rem; + } + + .lg\:-translate-y-52{ + --tw-translate-y: -13rem; + } + + .lg\:-translate-y-56{ + --tw-translate-y: -14rem; + } + + .lg\:-translate-y-60{ + --tw-translate-y: -15rem; + } + + .lg\:-translate-y-64{ + --tw-translate-y: -16rem; + } + + .lg\:-translate-y-72{ + --tw-translate-y: -18rem; + } + + .lg\:-translate-y-80{ + --tw-translate-y: -20rem; + } + + .lg\:-translate-y-96{ + --tw-translate-y: -24rem; + } + + .lg\:-translate-y-px{ + --tw-translate-y: -1px; + } + + .lg\:-translate-y-0\.5{ + --tw-translate-y: -0.125rem; + } + + .lg\:-translate-y-1\.5{ + --tw-translate-y: -0.375rem; + } + + .lg\:-translate-y-2\.5{ + --tw-translate-y: -0.625rem; + } + + .lg\:-translate-y-3\.5{ + --tw-translate-y: -0.875rem; + } + + .lg\:translate-y-1\/2{ + --tw-translate-y: 50%; + } + + .lg\:translate-y-1\/3{ + --tw-translate-y: 33.333333%; + } + + .lg\:translate-y-2\/3{ + --tw-translate-y: 66.666667%; + } + + .lg\:translate-y-1\/4{ + --tw-translate-y: 25%; + } + + .lg\:translate-y-2\/4{ + --tw-translate-y: 50%; + } + + .lg\:translate-y-3\/4{ + --tw-translate-y: 75%; + } + + .lg\:translate-y-full{ + --tw-translate-y: 100%; + } + + .lg\:-translate-y-1\/2{ + --tw-translate-y: -50%; + } + + .lg\:-translate-y-1\/3{ + --tw-translate-y: -33.333333%; + } + + .lg\:-translate-y-2\/3{ + --tw-translate-y: -66.666667%; + } + + .lg\:-translate-y-1\/4{ + --tw-translate-y: -25%; + } + + .lg\:-translate-y-2\/4{ + --tw-translate-y: -50%; + } + + .lg\:-translate-y-3\/4{ + --tw-translate-y: -75%; + } + + .lg\:-translate-y-full{ + --tw-translate-y: -100%; + } + + .lg\:hover\:translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .lg\:hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; + } + + .lg\:hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; + } + + .lg\:hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; + } + + .lg\:hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; + } + + .lg\:hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; + } + + .lg\:hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; + } + + .lg\:hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; + } + + .lg\:hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; + } + + .lg\:hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; + } + + .lg\:hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; + } + + .lg\:hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; + } + + .lg\:hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; + } + + .lg\:hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; + } + + .lg\:hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; + } + + .lg\:hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; + } + + .lg\:hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; + } + + .lg\:hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; + } + + .lg\:hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; + } + + .lg\:hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; + } + + .lg\:hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; + } + + .lg\:hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; + } + + .lg\:hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; + } + + .lg\:hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; + } + + .lg\:hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; + } + + .lg\:hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; + } + + .lg\:hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; + } + + .lg\:hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; + } + + .lg\:hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; + } + + .lg\:hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; + } + + .lg\:hover\:translate-x-px:hover{ + --tw-translate-x: 1px; + } + + .lg\:hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; + } + + .lg\:hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; + } + + .lg\:hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; + } + + .lg\:hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; + } + + .lg\:hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .lg\:hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; + } + + .lg\:hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; + } + + .lg\:hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; + } + + .lg\:hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; + } + + .lg\:hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; + } + + .lg\:hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; + } + + .lg\:hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; + } + + .lg\:hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; + } + + .lg\:hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; + } + + .lg\:hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; + } + + .lg\:hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; + } + + .lg\:hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; + } + + .lg\:hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; + } + + .lg\:hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; + } + + .lg\:hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; + } + + .lg\:hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; + } + + .lg\:hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; + } + + .lg\:hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; + } + + .lg\:hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; + } + + .lg\:hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; + } + + .lg\:hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; + } + + .lg\:hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; + } + + .lg\:hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; + } + + .lg\:hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; + } + + .lg\:hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; + } + + .lg\:hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; + } + + .lg\:hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; + } + + .lg\:hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; + } + + .lg\:hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; + } + + .lg\:hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; + } + + .lg\:hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; + } + + .lg\:hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; + } + + .lg\:hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; + } + + .lg\:hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; + } + + .lg\:hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; + } + + .lg\:hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; + } + + .lg\:hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; + } + + .lg\:hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; + } + + .lg\:hover\:translate-x-full:hover{ + --tw-translate-x: 100%; + } + + .lg\:hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; + } + + .lg\:hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; + } + + .lg\:hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; + } + + .lg\:hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; + } + + .lg\:hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; + } + + .lg\:hover\:translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .lg\:hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; + } + + .lg\:hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; + } + + .lg\:hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; + } + + .lg\:hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; + } + + .lg\:hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; + } + + .lg\:hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; + } + + .lg\:hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; + } + + .lg\:hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; + } + + .lg\:hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; + } + + .lg\:hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; + } + + .lg\:hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; + } + + .lg\:hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; + } + + .lg\:hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; + } + + .lg\:hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; + } + + .lg\:hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; + } + + .lg\:hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; + } + + .lg\:hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; + } + + .lg\:hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; + } + + .lg\:hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; + } + + .lg\:hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; + } + + .lg\:hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; + } + + .lg\:hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; + } + + .lg\:hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; + } + + .lg\:hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; + } + + .lg\:hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; + } + + .lg\:hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; + } + + .lg\:hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; + } + + .lg\:hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; + } + + .lg\:hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; + } + + .lg\:hover\:translate-y-px:hover{ + --tw-translate-y: 1px; + } + + .lg\:hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; + } + + .lg\:hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; + } + + .lg\:hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; + } + + .lg\:hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; + } + + .lg\:hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .lg\:hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; + } + + .lg\:hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; + } + + .lg\:hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; + } + + .lg\:hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; + } + + .lg\:hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; + } + + .lg\:hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; + } + + .lg\:hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; + } + + .lg\:hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; + } + + .lg\:hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; + } + + .lg\:hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; + } + + .lg\:hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; + } + + .lg\:hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; + } + + .lg\:hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; + } + + .lg\:hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; + } + + .lg\:hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; + } + + .lg\:hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; + } + + .lg\:hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; + } + + .lg\:hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; + } + + .lg\:hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; + } + + .lg\:hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; + } + + .lg\:hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; + } + + .lg\:hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; + } + + .lg\:hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; + } + + .lg\:hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; + } + + .lg\:hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; + } + + .lg\:hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; + } + + .lg\:hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; + } + + .lg\:hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; + } + + .lg\:hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; + } + + .lg\:hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; + } + + .lg\:hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; + } + + .lg\:hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; + } + + .lg\:hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; + } + + .lg\:hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; + } + + .lg\:hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; + } + + .lg\:hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; + } + + .lg\:hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; + } + + .lg\:hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; + } + + .lg\:hover\:translate-y-full:hover{ + --tw-translate-y: 100%; + } + + .lg\:hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; + } + + .lg\:hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; + } + + .lg\:hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; + } + + .lg\:hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; + } + + .lg\:hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; + } + + .lg\:focus\:translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .lg\:focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; + } + + .lg\:focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; + } + + .lg\:focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; + } + + .lg\:focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; + } + + .lg\:focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; + } + + .lg\:focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; + } + + .lg\:focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; + } + + .lg\:focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; + } + + .lg\:focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; + } + + .lg\:focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; + } + + .lg\:focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; + } + + .lg\:focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; + } + + .lg\:focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; + } + + .lg\:focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; + } + + .lg\:focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; + } + + .lg\:focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; + } + + .lg\:focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; + } + + .lg\:focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; + } + + .lg\:focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; + } + + .lg\:focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; + } + + .lg\:focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; + } + + .lg\:focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; + } + + .lg\:focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; + } + + .lg\:focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; + } + + .lg\:focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; + } + + .lg\:focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; + } + + .lg\:focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; + } + + .lg\:focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; + } + + .lg\:focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; + } + + .lg\:focus\:translate-x-px:focus{ + --tw-translate-x: 1px; + } + + .lg\:focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; + } + + .lg\:focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; + } + + .lg\:focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; + } + + .lg\:focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; + } + + .lg\:focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .lg\:focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; + } + + .lg\:focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; + } + + .lg\:focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; + } + + .lg\:focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; + } + + .lg\:focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; + } + + .lg\:focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; + } + + .lg\:focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; + } + + .lg\:focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; + } + + .lg\:focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; + } + + .lg\:focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; + } + + .lg\:focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; + } + + .lg\:focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; + } + + .lg\:focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; + } + + .lg\:focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; + } + + .lg\:focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; + } + + .lg\:focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; + } + + .lg\:focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; + } + + .lg\:focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; + } + + .lg\:focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; + } + + .lg\:focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; + } + + .lg\:focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; + } + + .lg\:focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; + } + + .lg\:focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; + } + + .lg\:focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; + } + + .lg\:focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; + } + + .lg\:focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; + } + + .lg\:focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; + } + + .lg\:focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; + } + + .lg\:focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; + } + + .lg\:focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; + } + + .lg\:focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; + } + + .lg\:focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; + } + + .lg\:focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; + } + + .lg\:focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; + } + + .lg\:focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; + } + + .lg\:focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; + } + + .lg\:focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; + } + + .lg\:focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; + } + + .lg\:focus\:translate-x-full:focus{ + --tw-translate-x: 100%; + } + + .lg\:focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; + } + + .lg\:focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; + } + + .lg\:focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; + } + + .lg\:focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; + } + + .lg\:focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; + } + + .lg\:focus\:translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .lg\:focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; + } + + .lg\:focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; + } + + .lg\:focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; + } + + .lg\:focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; + } + + .lg\:focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; + } + + .lg\:focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; + } + + .lg\:focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; + } + + .lg\:focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; + } + + .lg\:focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; + } + + .lg\:focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; + } + + .lg\:focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; + } + + .lg\:focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; + } + + .lg\:focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; + } + + .lg\:focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; + } + + .lg\:focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; + } + + .lg\:focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; + } + + .lg\:focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; + } + + .lg\:focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; + } + + .lg\:focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; + } + + .lg\:focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; + } + + .lg\:focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; + } + + .lg\:focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; + } + + .lg\:focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; + } + + .lg\:focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; + } + + .lg\:focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; + } + + .lg\:focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; + } + + .lg\:focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; + } + + .lg\:focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; + } + + .lg\:focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; + } + + .lg\:focus\:translate-y-px:focus{ + --tw-translate-y: 1px; + } + + .lg\:focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; + } + + .lg\:focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; + } + + .lg\:focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; + } + + .lg\:focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; + } + + .lg\:focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .lg\:focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; + } + + .lg\:focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; + } + + .lg\:focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; + } + + .lg\:focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; + } + + .lg\:focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; + } + + .lg\:focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; + } + + .lg\:focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; + } + + .lg\:focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; + } + + .lg\:focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; + } + + .lg\:focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; + } + + .lg\:focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; + } + + .lg\:focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; + } + + .lg\:focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; + } + + .lg\:focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; + } + + .lg\:focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; + } + + .lg\:focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; + } + + .lg\:focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; + } + + .lg\:focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; + } + + .lg\:focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; + } + + .lg\:focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; + } + + .lg\:focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; + } + + .lg\:focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; + } + + .lg\:focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; + } + + .lg\:focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; + } + + .lg\:focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; + } + + .lg\:focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; + } + + .lg\:focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; + } + + .lg\:focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; + } + + .lg\:focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; + } + + .lg\:focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; + } + + .lg\:focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; + } + + .lg\:focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; + } + + .lg\:focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; + } + + .lg\:focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; + } + + .lg\:focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; + } + + .lg\:focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; + } + + .lg\:focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; + } + + .lg\:focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; + } + + .lg\:focus\:translate-y-full:focus{ + --tw-translate-y: 100%; + } + + .lg\:focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; + } + + .lg\:focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; + } + + .lg\:focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; + } + + .lg\:focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; + } + + .lg\:focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; + } + + .lg\:rotate-0{ + --tw-rotate: 0deg; + } + + .lg\:rotate-1{ + --tw-rotate: 1deg; + } + + .lg\:rotate-2{ + --tw-rotate: 2deg; + } + + .lg\:rotate-3{ + --tw-rotate: 3deg; + } + + .lg\:rotate-6{ + --tw-rotate: 6deg; + } + + .lg\:rotate-12{ + --tw-rotate: 12deg; + } + + .lg\:rotate-45{ + --tw-rotate: 45deg; + } + + .lg\:rotate-90{ + --tw-rotate: 90deg; + } + + .lg\:rotate-180{ + --tw-rotate: 180deg; + } + + .lg\:-rotate-180{ + --tw-rotate: -180deg; + } + + .lg\:-rotate-90{ + --tw-rotate: -90deg; + } + + .lg\:-rotate-45{ + --tw-rotate: -45deg; + } + + .lg\:-rotate-12{ + --tw-rotate: -12deg; + } + + .lg\:-rotate-6{ + --tw-rotate: -6deg; + } + + .lg\:-rotate-3{ + --tw-rotate: -3deg; + } + + .lg\:-rotate-2{ + --tw-rotate: -2deg; + } + + .lg\:-rotate-1{ + --tw-rotate: -1deg; + } + + .lg\:hover\:rotate-0:hover{ + --tw-rotate: 0deg; + } + + .lg\:hover\:rotate-1:hover{ + --tw-rotate: 1deg; + } + + .lg\:hover\:rotate-2:hover{ + --tw-rotate: 2deg; + } + + .lg\:hover\:rotate-3:hover{ + --tw-rotate: 3deg; + } + + .lg\:hover\:rotate-6:hover{ + --tw-rotate: 6deg; + } + + .lg\:hover\:rotate-12:hover{ + --tw-rotate: 12deg; + } + + .lg\:hover\:rotate-45:hover{ + --tw-rotate: 45deg; + } + + .lg\:hover\:rotate-90:hover{ + --tw-rotate: 90deg; + } + + .lg\:hover\:rotate-180:hover{ + --tw-rotate: 180deg; + } + + .lg\:hover\:-rotate-180:hover{ + --tw-rotate: -180deg; + } + + .lg\:hover\:-rotate-90:hover{ + --tw-rotate: -90deg; + } + + .lg\:hover\:-rotate-45:hover{ + --tw-rotate: -45deg; + } + + .lg\:hover\:-rotate-12:hover{ + --tw-rotate: -12deg; + } + + .lg\:hover\:-rotate-6:hover{ + --tw-rotate: -6deg; + } + + .lg\:hover\:-rotate-3:hover{ + --tw-rotate: -3deg; + } + + .lg\:hover\:-rotate-2:hover{ + --tw-rotate: -2deg; + } + + .lg\:hover\:-rotate-1:hover{ + --tw-rotate: -1deg; + } + + .lg\:focus\:rotate-0:focus{ + --tw-rotate: 0deg; + } + + .lg\:focus\:rotate-1:focus{ + --tw-rotate: 1deg; + } + + .lg\:focus\:rotate-2:focus{ + --tw-rotate: 2deg; + } + + .lg\:focus\:rotate-3:focus{ + --tw-rotate: 3deg; + } + + .lg\:focus\:rotate-6:focus{ + --tw-rotate: 6deg; + } + + .lg\:focus\:rotate-12:focus{ + --tw-rotate: 12deg; + } + + .lg\:focus\:rotate-45:focus{ + --tw-rotate: 45deg; + } + + .lg\:focus\:rotate-90:focus{ + --tw-rotate: 90deg; + } + + .lg\:focus\:rotate-180:focus{ + --tw-rotate: 180deg; + } + + .lg\:focus\:-rotate-180:focus{ + --tw-rotate: -180deg; + } + + .lg\:focus\:-rotate-90:focus{ + --tw-rotate: -90deg; + } + + .lg\:focus\:-rotate-45:focus{ + --tw-rotate: -45deg; + } + + .lg\:focus\:-rotate-12:focus{ + --tw-rotate: -12deg; + } + + .lg\:focus\:-rotate-6:focus{ + --tw-rotate: -6deg; + } + + .lg\:focus\:-rotate-3:focus{ + --tw-rotate: -3deg; + } + + .lg\:focus\:-rotate-2:focus{ + --tw-rotate: -2deg; + } + + .lg\:focus\:-rotate-1:focus{ + --tw-rotate: -1deg; + } + + .lg\:skew-x-0{ + --tw-skew-x: 0deg; + } + + .lg\:skew-x-1{ + --tw-skew-x: 1deg; + } + + .lg\:skew-x-2{ + --tw-skew-x: 2deg; + } + + .lg\:skew-x-3{ + --tw-skew-x: 3deg; + } + + .lg\:skew-x-6{ + --tw-skew-x: 6deg; + } + + .lg\:skew-x-12{ + --tw-skew-x: 12deg; + } + + .lg\:-skew-x-12{ + --tw-skew-x: -12deg; + } + + .lg\:-skew-x-6{ + --tw-skew-x: -6deg; + } + + .lg\:-skew-x-3{ + --tw-skew-x: -3deg; + } + + .lg\:-skew-x-2{ + --tw-skew-x: -2deg; + } + + .lg\:-skew-x-1{ + --tw-skew-x: -1deg; + } + + .lg\:skew-y-0{ + --tw-skew-y: 0deg; + } + + .lg\:skew-y-1{ + --tw-skew-y: 1deg; + } + + .lg\:skew-y-2{ + --tw-skew-y: 2deg; + } + + .lg\:skew-y-3{ + --tw-skew-y: 3deg; + } + + .lg\:skew-y-6{ + --tw-skew-y: 6deg; + } + + .lg\:skew-y-12{ + --tw-skew-y: 12deg; + } + + .lg\:-skew-y-12{ + --tw-skew-y: -12deg; + } + + .lg\:-skew-y-6{ + --tw-skew-y: -6deg; + } + + .lg\:-skew-y-3{ + --tw-skew-y: -3deg; + } + + .lg\:-skew-y-2{ + --tw-skew-y: -2deg; + } + + .lg\:-skew-y-1{ + --tw-skew-y: -1deg; + } + + .lg\:hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; + } + + .lg\:hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; + } + + .lg\:hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; + } + + .lg\:hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; + } + + .lg\:hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; + } + + .lg\:hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; + } + + .lg\:hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; + } + + .lg\:hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; + } + + .lg\:hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; + } + + .lg\:hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; + } + + .lg\:hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; + } + + .lg\:hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; + } + + .lg\:hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; + } + + .lg\:hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; + } + + .lg\:hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; + } + + .lg\:hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; + } + + .lg\:hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; + } + + .lg\:hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; + } + + .lg\:hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; + } + + .lg\:hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; + } + + .lg\:hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; + } + + .lg\:hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; + } + + .lg\:focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; + } + + .lg\:focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; + } + + .lg\:focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; + } + + .lg\:focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; + } + + .lg\:focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; + } + + .lg\:focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; + } + + .lg\:focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; + } + + .lg\:focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; + } + + .lg\:focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; + } + + .lg\:focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; + } + + .lg\:focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; + } + + .lg\:focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; + } + + .lg\:focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; + } + + .lg\:focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; + } + + .lg\:focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; + } + + .lg\:focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; + } + + .lg\:focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; + } + + .lg\:focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; + } + + .lg\:focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; + } + + .lg\:focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; + } + + .lg\:focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; + } + + .lg\:focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; + } + + .lg\:scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:scale-x-0{ + --tw-scale-x: 0; + } + + .lg\:scale-x-50{ + --tw-scale-x: .5; + } + + .lg\:scale-x-75{ + --tw-scale-x: .75; + } + + .lg\:scale-x-90{ + --tw-scale-x: .9; + } + + .lg\:scale-x-95{ + --tw-scale-x: .95; + } + + .lg\:scale-x-100{ + --tw-scale-x: 1; + } + + .lg\:scale-x-105{ + --tw-scale-x: 1.05; + } + + .lg\:scale-x-110{ + --tw-scale-x: 1.1; + } + + .lg\:scale-x-125{ + --tw-scale-x: 1.25; + } + + .lg\:scale-x-150{ + --tw-scale-x: 1.5; + } + + .lg\:scale-y-0{ + --tw-scale-y: 0; + } + + .lg\:scale-y-50{ + --tw-scale-y: .5; + } + + .lg\:scale-y-75{ + --tw-scale-y: .75; + } + + .lg\:scale-y-90{ + --tw-scale-y: .9; + } + + .lg\:scale-y-95{ + --tw-scale-y: .95; + } + + .lg\:scale-y-100{ + --tw-scale-y: 1; + } + + .lg\:scale-y-105{ + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110{ + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125{ + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150{ + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-x-0:hover{ + --tw-scale-x: 0; + } + + .lg\:hover\:scale-x-50:hover{ + --tw-scale-x: .5; + } + + .lg\:hover\:scale-x-75:hover{ + --tw-scale-x: .75; + } + + .lg\:hover\:scale-x-90:hover{ + --tw-scale-x: .9; + } + + .lg\:hover\:scale-x-95:hover{ + --tw-scale-x: .95; + } + + .lg\:hover\:scale-x-100:hover{ + --tw-scale-x: 1; + } + + .lg\:hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; + } + + .lg\:hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; + } + + .lg\:hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; + } + + .lg\:hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; + } + + .lg\:hover\:scale-y-0:hover{ + --tw-scale-y: 0; + } + + .lg\:hover\:scale-y-50:hover{ + --tw-scale-y: .5; + } + + .lg\:hover\:scale-y-75:hover{ + --tw-scale-y: .75; + } + + .lg\:hover\:scale-y-90:hover{ + --tw-scale-y: .9; + } + + .lg\:hover\:scale-y-95:hover{ + --tw-scale-y: .95; + } + + .lg\:hover\:scale-y-100:hover{ + --tw-scale-y: 1; + } + + .lg\:hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-x-0:focus{ + --tw-scale-x: 0; + } + + .lg\:focus\:scale-x-50:focus{ + --tw-scale-x: .5; + } + + .lg\:focus\:scale-x-75:focus{ + --tw-scale-x: .75; + } + + .lg\:focus\:scale-x-90:focus{ + --tw-scale-x: .9; + } + + .lg\:focus\:scale-x-95:focus{ + --tw-scale-x: .95; + } + + .lg\:focus\:scale-x-100:focus{ + --tw-scale-x: 1; + } + + .lg\:focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; + } + + .lg\:focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; + } + + .lg\:focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; + } + + .lg\:focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; + } + + .lg\:focus\:scale-y-0:focus{ + --tw-scale-y: 0; + } + + .lg\:focus\:scale-y-50:focus{ + --tw-scale-y: .5; + } + + .lg\:focus\:scale-y-75:focus{ + --tw-scale-y: .75; + } + + .lg\:focus\:scale-y-90:focus{ + --tw-scale-y: .9; + } + + .lg\:focus\:scale-y-95:focus{ + --tw-scale-y: .95; + } + + .lg\:focus\:scale-y-100:focus{ + --tw-scale-y: 1; + } + + .lg\:focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; + } + + .lg\:animate-none{ + -webkit-animation: none; + animation: none; + } + + .lg\:animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .lg\:animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .lg\:animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .lg\:animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } + + .lg\:cursor-auto{ + cursor: auto; + } + + .lg\:cursor-default{ + cursor: default; + } + + .lg\:cursor-pointer{ + cursor: pointer; + } + + .lg\:cursor-wait{ + cursor: wait; + } + + .lg\:cursor-text{ + cursor: text; + } + + .lg\:cursor-move{ + cursor: move; + } + + .lg\:cursor-help{ + cursor: help; + } + + .lg\:cursor-not-allowed{ + cursor: not-allowed; + } + + .lg\:select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .lg\:select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .lg\:select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; + } + + .lg\:select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .lg\:resize-none{ + resize: none; + } + + .lg\:resize-y{ + resize: vertical; + } + + .lg\:resize-x{ + resize: horizontal; + } + + .lg\:resize{ + resize: both; + } + + .lg\:list-inside{ + list-style-position: inside; + } + + .lg\:list-outside{ + list-style-position: outside; + } + + .lg\:list-none{ + list-style-type: none; + } + + .lg\:list-disc{ + list-style-type: disc; + } + + .lg\:list-decimal{ + list-style-type: decimal; + } + + .lg\:appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .lg\:auto-cols-auto{ + grid-auto-columns: auto; + } + + .lg\:auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .lg\:auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .lg\:auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); + } + + .lg\:grid-flow-row{ + grid-auto-flow: row; + } + + .lg\:grid-flow-col{ + grid-auto-flow: column; + } + + .lg\:grid-flow-row-dense{ + grid-auto-flow: row dense; + } + + .lg\:grid-flow-col-dense{ + grid-auto-flow: column dense; + } + + .lg\:auto-rows-auto{ + grid-auto-rows: auto; + } + + .lg\:auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .lg\:auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .lg\:auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); + } + + .lg\:grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .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-7{ + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .lg\:grid-cols-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .lg\:grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .lg\:grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .lg\:grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .lg\:grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .lg\:grid-cols-none{ + grid-template-columns: none; + } + + .lg\:grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .lg\:grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-rows-none{ + grid-template-rows: none; + } + + .lg\:flex-row{ + flex-direction: row; + } + + .lg\:flex-row-reverse{ + flex-direction: row-reverse; + } + + .lg\:flex-col{ + flex-direction: column; + } + + .lg\:flex-col-reverse{ + flex-direction: column-reverse; + } + + .lg\:flex-wrap{ + flex-wrap: wrap; + } + + .lg\:flex-wrap-reverse{ + flex-wrap: wrap-reverse; + } + + .lg\:flex-nowrap{ + flex-wrap: nowrap; + } + + .lg\:place-content-center{ + place-content: center; + } + + .lg\:place-content-start{ + place-content: start; + } + + .lg\:place-content-end{ + place-content: end; + } + + .lg\:place-content-between{ + place-content: space-between; + } + + .lg\:place-content-around{ + place-content: space-around; + } + + .lg\:place-content-evenly{ + place-content: space-evenly; + } + + .lg\:place-content-stretch{ + place-content: stretch; + } + + .lg\:place-items-start{ + place-items: start; + } + + .lg\:place-items-end{ + place-items: end; + } + + .lg\:place-items-center{ + place-items: center; + } + + .lg\:place-items-stretch{ + place-items: stretch; + } + + .lg\:content-center{ + align-content: center; + } + + .lg\:content-start{ + align-content: flex-start; + } + + .lg\:content-end{ + align-content: flex-end; + } + + .lg\:content-between{ + align-content: space-between; + } + + .lg\:content-around{ + align-content: space-around; + } + + .lg\:content-evenly{ + align-content: space-evenly; + } + + .lg\:items-start{ + align-items: flex-start; + } + + .lg\:items-end{ + align-items: flex-end; + } + + .lg\:items-center{ + align-items: center; + } + + .lg\:items-baseline{ + align-items: baseline; + } + + .lg\:items-stretch{ + align-items: stretch; + } + + .lg\:justify-start{ + justify-content: flex-start; + } + + .lg\:justify-end{ + justify-content: flex-end; + } + + .lg\:justify-center{ + justify-content: center; + } + + .lg\:justify-between{ + justify-content: space-between; + } + + .lg\:justify-around{ + justify-content: space-around; + } + + .lg\:justify-evenly{ + justify-content: space-evenly; + } + + .lg\:justify-items-start{ + justify-items: start; + } + + .lg\:justify-items-end{ + justify-items: end; + } + + .lg\:justify-items-center{ + justify-items: center; + } + + .lg\:justify-items-stretch{ + justify-items: stretch; + } + + .lg\:gap-0{ + gap: 0px; + } + + .lg\:gap-1{ + gap: 0.25rem; + } + + .lg\:gap-2{ + gap: 0.5rem; + } + + .lg\:gap-3{ + gap: 0.75rem; + } + + .lg\:gap-4{ + gap: 1rem; + } + + .lg\:gap-5{ + gap: 1.25rem; + } + + .lg\:gap-6{ + gap: 1.5rem; + } + + .lg\:gap-7{ + gap: 1.75rem; + } + + .lg\:gap-8{ + gap: 2rem; + } + + .lg\:gap-9{ + gap: 2.25rem; + } + + .lg\:gap-10{ + gap: 2.5rem; + } + + .lg\:gap-11{ + gap: 2.75rem; + } + + .lg\:gap-12{ + gap: 3rem; + } + + .lg\:gap-14{ + gap: 3.5rem; + } + + .lg\:gap-16{ + gap: 4rem; + } + + .lg\:gap-20{ + gap: 5rem; + } + + .lg\:gap-24{ + gap: 6rem; + } + + .lg\:gap-28{ + gap: 7rem; + } + + .lg\:gap-32{ + gap: 8rem; + } + + .lg\:gap-36{ + gap: 9rem; + } + + .lg\:gap-40{ + gap: 10rem; + } + + .lg\:gap-44{ + gap: 11rem; + } + + .lg\:gap-48{ + gap: 12rem; + } + + .lg\:gap-52{ + gap: 13rem; + } + + .lg\:gap-56{ + gap: 14rem; + } + + .lg\:gap-60{ + gap: 15rem; + } + + .lg\:gap-64{ + gap: 16rem; + } + + .lg\:gap-72{ + gap: 18rem; + } + + .lg\:gap-80{ + gap: 20rem; + } + + .lg\:gap-96{ + gap: 24rem; + } + + .lg\:gap-px{ + gap: 1px; + } + + .lg\:gap-0\.5{ + gap: 0.125rem; + } + + .lg\:gap-1\.5{ + gap: 0.375rem; + } + + .lg\:gap-2\.5{ + gap: 0.625rem; + } + + .lg\:gap-3\.5{ + gap: 0.875rem; + } + + .lg\:gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; + } + + .lg\:gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .lg\:gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .lg\:gap-x-3{ + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .lg\:gap-x-4{ + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .lg\:gap-x-5{ + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .lg\:gap-x-6{ + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:gap-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .lg\:gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .lg\:gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .lg\:gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .lg\:gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .lg\:gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .lg\:gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .lg\:gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .lg\:gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .lg\:gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .lg\:gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .lg\:gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .lg\:gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .lg\:gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .lg\:gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .lg\:gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .lg\:gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .lg\:gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .lg\:gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .lg\:gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; + } + + .lg\:gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .lg\:gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .lg\:gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .lg\:gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .lg\:gap-y-0{ + row-gap: 0px; + } + + .lg\:gap-y-1{ + row-gap: 0.25rem; + } + + .lg\:gap-y-2{ + row-gap: 0.5rem; + } + + .lg\:gap-y-3{ + row-gap: 0.75rem; + } + + .lg\:gap-y-4{ + row-gap: 1rem; + } + + .lg\:gap-y-5{ + row-gap: 1.25rem; + } + + .lg\:gap-y-6{ + row-gap: 1.5rem; + } + + .lg\:gap-y-7{ + row-gap: 1.75rem; + } + + .lg\:gap-y-8{ + row-gap: 2rem; + } + + .lg\:gap-y-9{ + row-gap: 2.25rem; + } + + .lg\:gap-y-10{ + row-gap: 2.5rem; + } + + .lg\:gap-y-11{ + row-gap: 2.75rem; + } + + .lg\:gap-y-12{ + row-gap: 3rem; + } + + .lg\:gap-y-14{ + row-gap: 3.5rem; + } + + .lg\:gap-y-16{ + row-gap: 4rem; + } + + .lg\:gap-y-20{ + row-gap: 5rem; + } + + .lg\:gap-y-24{ + row-gap: 6rem; + } + + .lg\:gap-y-28{ + row-gap: 7rem; + } + + .lg\:gap-y-32{ + row-gap: 8rem; + } + + .lg\:gap-y-36{ + row-gap: 9rem; + } + + .lg\:gap-y-40{ + row-gap: 10rem; + } + + .lg\:gap-y-44{ + row-gap: 11rem; + } + + .lg\:gap-y-48{ + row-gap: 12rem; + } + + .lg\:gap-y-52{ + row-gap: 13rem; + } + + .lg\:gap-y-56{ + row-gap: 14rem; + } + + .lg\:gap-y-60{ + row-gap: 15rem; + } + + .lg\:gap-y-64{ + row-gap: 16rem; + } + + .lg\:gap-y-72{ + row-gap: 18rem; + } + + .lg\:gap-y-80{ + row-gap: 20rem; + } + + .lg\:gap-y-96{ + row-gap: 24rem; + } + + .lg\:gap-y-px{ + row-gap: 1px; + } + + .lg\:gap-y-0\.5{ + row-gap: 0.125rem; + } + + .lg\:gap-y-1\.5{ + row-gap: 0.375rem; + } + + .lg\:gap-y-2\.5{ + row-gap: 0.625rem; + } + + .lg\:gap-y-3\.5{ + row-gap: 0.875rem; + } + + .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\: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))); + } + + .lg\: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))); + } + + .lg\: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))); + } + + .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-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))); + } + + .lg\: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))); + } + + .lg\: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))); + } + + .lg\: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))); + } + + .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-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))); + } + + .lg\:-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))); + } + + .lg\:-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))); + } + + .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-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))); + } + + .lg\:-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))); + } + + .lg\:-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))); + } + + .lg\:-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))); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * 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-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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\: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)); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\: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)); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\: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)); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\: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)); + } + + .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\:space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-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-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-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)); + } + + .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-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)); + } + + .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-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)); + } + + .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-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)); + } + + .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\:-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; + } + + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; + } + + .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\: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))); + } + + .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\: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))); + } + + .lg\: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)); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\: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)); + } + + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; + } + + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; + } + + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; + } + + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; + } + + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; + } + + .lg\:divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; + } + + .lg\:divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; + } + + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; + } + + .lg\:divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; + } + + .lg\:divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .lg\:divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); + } + + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); + } + + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); + } + + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); + } + + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); + } + + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); + } + + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); + } + + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); + } + + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); + } + + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); + } + + .lg\:divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); + } + + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); + } + + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); + } + + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); + } + + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); + } + + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); + } + + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); + } + + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); + } + + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); + } + + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); + } + + .lg\:divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); + } + + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); + } + + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); + } + + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; + } + + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; + } + + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; + } + + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; + } + + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; + } + + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; + } + + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; + } + + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; + } + + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; + } + + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; + } + + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; + } + + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; + } + + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; + } + + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; + } + + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + } + + .lg\:place-self-auto{ + place-self: auto; + } + + .lg\:place-self-start{ + place-self: start; + } + + .lg\:place-self-end{ + place-self: end; + } + + .lg\:place-self-center{ + place-self: center; + } + + .lg\:place-self-stretch{ + place-self: stretch; + } + + .lg\:self-auto{ + align-self: auto; + } + + .lg\:self-start{ + align-self: flex-start; + } + + .lg\:self-end{ + align-self: flex-end; + } + + .lg\:self-center{ + align-self: center; + } + + .lg\:self-stretch{ + align-self: stretch; + } + + .lg\:self-baseline{ + align-self: baseline; + } + + .lg\:justify-self-auto{ + justify-self: auto; + } + + .lg\:justify-self-start{ + justify-self: start; + } + + .lg\:justify-self-end{ + justify-self: end; + } + + .lg\:justify-self-center{ + justify-self: center; + } + + .lg\:justify-self-stretch{ + justify-self: stretch; + } + + .lg\:overflow-auto{ + overflow: auto; + } + + .lg\:overflow-hidden{ + overflow: hidden; + } + + .lg\:overflow-visible{ + overflow: visible; + } + + .lg\:overflow-scroll{ + overflow: scroll; + } + + .lg\:overflow-x-auto{ + overflow-x: auto; + } + + .lg\:overflow-y-auto{ + overflow-y: auto; + } + + .lg\:overflow-x-hidden{ + overflow-x: hidden; + } + + .lg\:overflow-y-hidden{ + overflow-y: hidden; + } + + .lg\:overflow-x-visible{ + overflow-x: visible; + } + + .lg\:overflow-y-visible{ + overflow-y: visible; + } + + .lg\:overflow-x-scroll{ + overflow-x: scroll; + } + + .lg\:overflow-y-scroll{ + overflow-y: scroll; + } + + .lg\:overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .lg\:overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .lg\:overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .lg\:overscroll-y-auto{ + overscroll-behavior-y: auto; + } + + .lg\:overscroll-y-contain{ + overscroll-behavior-y: contain; + } + + .lg\:overscroll-y-none{ + overscroll-behavior-y: none; + } + + .lg\:overscroll-x-auto{ + overscroll-behavior-x: auto; + } + + .lg\:overscroll-x-contain{ + overscroll-behavior-x: contain; + } + + .lg\:overscroll-x-none{ + overscroll-behavior-x: none; + } + + .lg\:truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .lg\:overflow-ellipsis{ + text-overflow: ellipsis; + } + + .lg\:overflow-clip{ + text-overflow: clip; + } + + .lg\:whitespace-normal{ + white-space: normal; + } + + .lg\:whitespace-nowrap{ + white-space: nowrap; + } + + .lg\:whitespace-pre{ + white-space: pre; + } + + .lg\:whitespace-pre-line{ + white-space: pre-line; + } + + .lg\:whitespace-pre-wrap{ + white-space: pre-wrap; + } + + .lg\:break-normal{ + overflow-wrap: normal; + word-break: normal; + } + + .lg\:break-words{ + overflow-wrap: break-word; + } + + .lg\:break-all{ + word-break: break-all; + } + + .lg\:rounded-none{ + border-radius: 0px; + } + + .lg\:rounded-sm{ + border-radius: 0.125rem; + } + + .lg\:rounded{ + border-radius: 0.25rem; + } + + .lg\:rounded-md{ + border-radius: 0.375rem; + } + + .lg\:rounded-lg{ + border-radius: 0.5rem; + } + + .lg\:rounded-xl{ + border-radius: 0.75rem; + } + + .lg\:rounded-2xl{ + border-radius: 1rem; + } + + .lg\:rounded-3xl{ + border-radius: 1.5rem; + } + + .lg\:rounded-full{ + border-radius: 9999px; + } + + .lg\:rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; + } + + .lg\:rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .lg\:rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .lg\:rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + } + + .lg\:rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .lg\:rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + } + + .lg\:rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .lg\:rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + } + + .lg\:rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .lg\:rounded-tl-none{ + border-top-left-radius: 0px; + } + + .lg\:rounded-tl-sm{ + border-top-left-radius: 0.125rem; + } + + .lg\:rounded-tl{ + border-top-left-radius: 0.25rem; + } + + .lg\:rounded-tl-md{ + border-top-left-radius: 0.375rem; + } + + .lg\:rounded-tl-lg{ + border-top-left-radius: 0.5rem; + } + + .lg\:rounded-tl-xl{ + border-top-left-radius: 0.75rem; + } + + .lg\:rounded-tl-2xl{ + border-top-left-radius: 1rem; + } + + .lg\:rounded-tl-3xl{ + border-top-left-radius: 1.5rem; + } + + .lg\:rounded-tl-full{ + border-top-left-radius: 9999px; + } + + .lg\:rounded-tr-none{ + border-top-right-radius: 0px; + } + + .lg\:rounded-tr-sm{ + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-tr{ + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-tr-md{ + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-tr-lg{ + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-tr-xl{ + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-tr-2xl{ + border-top-right-radius: 1rem; + } + + .lg\:rounded-tr-3xl{ + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-tr-full{ + border-top-right-radius: 9999px; + } + + .lg\:rounded-br-none{ + border-bottom-right-radius: 0px; + } + + .lg\:rounded-br-sm{ + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-br{ + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-br-md{ + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-br-lg{ + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-br-xl{ + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-br-2xl{ + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-br-full{ + border-bottom-right-radius: 9999px; + } + + .lg\:rounded-bl-none{ + border-bottom-left-radius: 0px; + } + + .lg\:rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-bl{ + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-bl-md{ + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-bl-2xl{ + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-bl-full{ + border-bottom-left-radius: 9999px; + } + + .lg\:border-0{ + border-width: 0px; + } + + .lg\:border-2{ + border-width: 2px; + } + + .lg\:border-4{ + border-width: 4px; + } + + .lg\:border-8{ + border-width: 8px; + } + + .lg\:border{ + border-width: 1px; + } + + .lg\:border-t-0{ + border-top-width: 0px; + } + + .lg\:border-t-2{ + border-top-width: 2px; + } + + .lg\:border-t-4{ + border-top-width: 4px; + } + + .lg\:border-t-8{ + border-top-width: 8px; + } + + .lg\:border-t{ + border-top-width: 1px; + } + + .lg\:border-r-0{ + border-right-width: 0px; + } + + .lg\:border-r-2{ + border-right-width: 2px; + } + + .lg\:border-r-4{ + border-right-width: 4px; + } + + .lg\:border-r-8{ + border-right-width: 8px; + } + + .lg\:border-r{ + border-right-width: 1px; + } + + .lg\:border-b-0{ + border-bottom-width: 0px; + } + + .lg\:border-b-2{ + border-bottom-width: 2px; + } + + .lg\:border-b-4{ + border-bottom-width: 4px; + } + + .lg\:border-b-8{ + border-bottom-width: 8px; + } + + .lg\:border-b{ + border-bottom-width: 1px; + } + + .lg\:border-l-0{ + border-left-width: 0px; + } + + .lg\:border-l-2{ + border-left-width: 2px; + } + + .lg\:border-l-4{ + border-left-width: 4px; + } + + .lg\:border-l-8{ + border-left-width: 8px; + } + + .lg\:border-l{ + border-left-width: 1px; + } + + .lg\:border-solid{ + border-style: solid; + } + + .lg\:border-dashed{ + border-style: dashed; + } + + .lg\:border-dotted{ + border-style: dotted; + } + + .lg\:border-double{ + border-style: double; + } + + .lg\:border-none{ + border-style: none; + } + + .lg\:border-transparent{ + border-color: transparent; + } + + .lg\:border-current{ + border-color: currentColor; + } + + .lg\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .lg\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .lg\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .lg\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .lg\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .lg\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .lg\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .lg\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .lg\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .lg\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .lg\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .lg\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .lg\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .lg\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .lg\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .lg\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .lg\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .lg\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .lg\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .lg\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .lg\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .lg\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .lg\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .lg\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .lg\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .lg\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .lg\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .lg\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .lg\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .lg\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .lg\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .lg\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .lg\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .lg\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .lg\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .lg\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .lg\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .lg\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .lg\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .lg\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .lg\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .lg\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .lg\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .lg\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .lg\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .lg\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .lg\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .lg\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .lg\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .lg\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .lg\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .lg\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .lg\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .lg\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .lg\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .lg\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .lg\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .lg\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .lg\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .lg\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .lg\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .lg\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .lg\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .lg\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .lg\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .lg\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .lg\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .lg\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .lg\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .lg\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .lg\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .lg\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .lg\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .lg\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .lg\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .lg\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .lg\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .lg\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .lg\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .lg\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .lg\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .lg\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .lg\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .lg\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .lg\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .lg\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .lg\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .lg\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .lg\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-transparent{ + border-color: transparent; + } + + .group:hover .lg\:group-hover\:border-current{ + border-color: currentColor; + } + + .group:hover .lg\:group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-transparent:focus-within{ + border-color: transparent; + } + + .lg\:focus-within\:border-current:focus-within{ + border-color: currentColor; + } + + .lg\:focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .lg\:hover\:border-transparent:hover{ + border-color: transparent; + } + + .lg\:hover\:border-current:hover{ + border-color: currentColor; + } + + .lg\:hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .lg\:hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .lg\:hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .lg\:hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .lg\:hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .lg\:focus\:border-transparent:focus{ + border-color: transparent; + } + + .lg\:focus\:border-current:focus{ + border-color: currentColor; + } + + .lg\:focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .lg\:focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .lg\:focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .lg\:focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .lg\:focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .lg\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .lg\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .lg\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .lg\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .lg\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .lg\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .lg\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .lg\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .lg\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .lg\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .lg\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .lg\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .lg\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .lg\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .lg\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .group:hover .lg\:group-hover\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .group:hover .lg\:group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .lg\:focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; + } + + .lg\:focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; + } + + .lg\:focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; + } + + .lg\:focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; + } + + .lg\:focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; + } + + .lg\:focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; + } + + .lg\:focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; + } + + .lg\:focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; + } + + .lg\:focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; + } + + .lg\:focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; + } + + .lg\:focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; + } + + .lg\:focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; + } + + .lg\:focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; + } + + .lg\:focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; + } + + .lg\:focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; + } + + .lg\:hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; + } + + .lg\:hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; + } + + .lg\:hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; + } + + .lg\:hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; + } + + .lg\:hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; + } + + .lg\:hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; + } + + .lg\:hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; + } + + .lg\:hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; + } + + .lg\:hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; + } + + .lg\:hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; + } + + .lg\:hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; + } + + .lg\:hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; + } + + .lg\:hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; + } + + .lg\:hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; + } + + .lg\:hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; + } + + .lg\:focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; + } + + .lg\:focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; + } + + .lg\:focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; + } + + .lg\:focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; + } + + .lg\:focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; + } + + .lg\:focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; + } + + .lg\:focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; + } + + .lg\:focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; + } + + .lg\:focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; + } + + .lg\:focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; + } + + .lg\:focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; + } + + .lg\:focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; + } + + .lg\:focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; + } + + .lg\:focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; + } + + .lg\:focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; + } + + .lg\:bg-transparent{ + background-color: transparent; + } + + .lg\:bg-current{ + background-color: currentColor; + } + + .lg\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .lg\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .lg\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .lg\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .lg\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .lg\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .lg\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .lg\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .lg\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .lg\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .lg\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .lg\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .lg\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .lg\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .lg\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .lg\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .lg\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .lg\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .lg\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .lg\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .lg\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .lg\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .lg\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-transparent{ + background-color: transparent; + } + + .group:hover .lg\:group-hover\:bg-current{ + background-color: currentColor; + } + + .group:hover .lg\:group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-transparent:focus-within{ + background-color: transparent; + } + + .lg\:focus-within\:bg-current:focus-within{ + background-color: currentColor; + } + + .lg\:focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-transparent:hover{ + background-color: transparent; + } + + .lg\:hover\:bg-current:hover{ + background-color: currentColor; + } + + .lg\:hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-transparent:focus{ + background-color: transparent; + } + + .lg\:focus\:bg-current:focus{ + background-color: currentColor; + } + + .lg\:focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .lg\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .lg\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .lg\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .lg\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .lg\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .lg\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .lg\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .lg\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .lg\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .lg\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .lg\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .lg\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .lg\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .lg\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .lg\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .group:hover .lg\:group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .group:hover .lg\:group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .lg\:focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; + } + + .lg\:focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; + } + + .lg\:focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; + } + + .lg\:focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; + } + + .lg\:focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; + } + + .lg\:focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; + } + + .lg\:focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; + } + + .lg\:focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; + } + + .lg\:focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; + } + + .lg\:focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; + } + + .lg\:focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; + } + + .lg\:focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; + } + + .lg\:focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; + } + + .lg\:focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; + } + + .lg\:focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; + } + + .lg\:hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; + } + + .lg\:hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; + } + + .lg\:hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; + } + + .lg\:hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; + } + + .lg\:hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; + } + + .lg\:hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; + } + + .lg\:hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; + } + + .lg\:hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; + } + + .lg\:hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; + } + + .lg\:hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; + } + + .lg\:hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; + } + + .lg\:hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; + } + + .lg\:hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; + } + + .lg\:hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; + } + + .lg\:hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; + } + + .lg\:focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; + } + + .lg\:focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; + } + + .lg\:focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; + } + + .lg\:focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; + } + + .lg\:focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; + } + + .lg\:focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; + } + + .lg\:focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; + } + + .lg\:focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; + } + + .lg\:focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; + } + + .lg\:focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; + } + + .lg\:focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; + } + + .lg\:focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; + } + + .lg\:focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; + } + + .lg\:focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; + } + + .lg\:focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; + } + + .lg\:bg-none{ + background-image: none; + } + + .lg\:bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .lg\:from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .lg\:focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .lg\:focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .lg\:focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .lg\:focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .lg\:focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .lg\:focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .lg\:focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .lg\:focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .lg\:focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .lg\:focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .lg\:focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .lg\:focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .lg\:focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .lg\:focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .lg\:focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .lg\:focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .lg\:focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .lg\:focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .lg\:focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .lg\:focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .lg\:focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .lg\:focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .lg\:focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .lg\:focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .lg\:focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .lg\:focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .lg\:focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .lg\:focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .lg\:focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .lg\:focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .lg\:focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .lg\:focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .lg\:focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .lg\:focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .lg\:focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .lg\:focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .lg\:focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .lg\:focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .lg\:focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .lg\:focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .lg\:focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .lg\:focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .lg\:focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .lg\:focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .lg\:focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .lg\:focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .lg\:focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .lg\:focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .lg\:focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .lg\:focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .lg\:focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .lg\:focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .lg\:focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .lg\:focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .lg\:focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .lg\:focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .lg\:focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .lg\:focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .lg\:focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .lg\:focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .lg\:focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .lg\:focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .lg\:focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .lg\:focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .lg\:focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .lg\:focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .lg\:focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .lg\:focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .lg\:focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .lg\:focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .lg\:focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .lg\:focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .lg\:focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .lg\:focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .lg\:focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .lg\:focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .lg\:focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .lg\:focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .lg\:focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .lg\:focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .lg\:focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .lg\:focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .lg\:focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .lg\:focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .lg\:focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .lg\:focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .lg\:focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .lg\:focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .lg\:focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .lg\:to-transparent{ + --tw-gradient-to: transparent; + } + + .lg\:to-current{ + --tw-gradient-to: currentColor; + } + + .lg\:to-black{ + --tw-gradient-to: #000; + } + + .lg\:to-white{ + --tw-gradient-to: #fff; + } + + .lg\:to-gray-100{ + --tw-gradient-to: #f7fafc; + } + + .lg\:to-gray-200{ + --tw-gradient-to: #edf2f7; + } + + .lg\:to-gray-300{ + --tw-gradient-to: #e2e8f0; + } + + .lg\:to-gray-400{ + --tw-gradient-to: #cbd5e0; + } + + .lg\:to-gray-500{ + --tw-gradient-to: #a0aec0; + } + + .lg\:to-gray-600{ + --tw-gradient-to: #718096; + } + + .lg\:to-gray-700{ + --tw-gradient-to: #4a5568; + } + + .lg\:to-gray-800{ + --tw-gradient-to: #2d3748; + } + + .lg\:to-gray-900{ + --tw-gradient-to: #1a202c; + } + + .lg\:to-red-100{ + --tw-gradient-to: #fff5f5; + } + + .lg\:to-red-200{ + --tw-gradient-to: #fed7d7; + } + + .lg\:to-red-300{ + --tw-gradient-to: #feb2b2; + } + + .lg\:to-red-400{ + --tw-gradient-to: #fc8181; + } + + .lg\:to-red-500{ + --tw-gradient-to: #f56565; + } + + .lg\:to-red-600{ + --tw-gradient-to: #e53e3e; + } + + .lg\:to-red-700{ + --tw-gradient-to: #c53030; + } + + .lg\:to-red-800{ + --tw-gradient-to: #9b2c2c; + } + + .lg\:to-red-900{ + --tw-gradient-to: #742a2a; + } + + .lg\:to-orange-100{ + --tw-gradient-to: #fffaf0; + } + + .lg\:to-orange-200{ + --tw-gradient-to: #feebc8; + } + + .lg\:to-orange-300{ + --tw-gradient-to: #fbd38d; + } + + .lg\:to-orange-400{ + --tw-gradient-to: #f6ad55; + } + + .lg\:to-orange-500{ + --tw-gradient-to: #ed8936; + } + + .lg\:to-orange-600{ + --tw-gradient-to: #dd6b20; + } + + .lg\:to-orange-700{ + --tw-gradient-to: #c05621; + } + + .lg\:to-orange-800{ + --tw-gradient-to: #9c4221; + } + + .lg\:to-orange-900{ + --tw-gradient-to: #7b341e; + } + + .lg\:to-yellow-100{ + --tw-gradient-to: #fffff0; + } + + .lg\:to-yellow-200{ + --tw-gradient-to: #fefcbf; + } + + .lg\:to-yellow-300{ + --tw-gradient-to: #faf089; + } + + .lg\:to-yellow-400{ + --tw-gradient-to: #f6e05e; + } + + .lg\:to-yellow-500{ + --tw-gradient-to: #ecc94b; + } + + .lg\:to-yellow-600{ + --tw-gradient-to: #d69e2e; + } + + .lg\:to-yellow-700{ + --tw-gradient-to: #b7791f; + } + + .lg\:to-yellow-800{ + --tw-gradient-to: #975a16; + } + + .lg\:to-yellow-900{ + --tw-gradient-to: #744210; + } + + .lg\:to-green-100{ + --tw-gradient-to: #f0fff4; + } + + .lg\:to-green-200{ + --tw-gradient-to: #c6f6d5; + } + + .lg\:to-green-300{ + --tw-gradient-to: #9ae6b4; + } + + .lg\:to-green-400{ + --tw-gradient-to: #68d391; + } + + .lg\:to-green-500{ + --tw-gradient-to: #48bb78; + } + + .lg\:to-green-600{ + --tw-gradient-to: #38a169; + } + + .lg\:to-green-700{ + --tw-gradient-to: #2f855a; + } + + .lg\:to-green-800{ + --tw-gradient-to: #276749; + } + + .lg\:to-green-900{ + --tw-gradient-to: #22543d; + } + + .lg\:to-teal-100{ + --tw-gradient-to: #e6fffa; + } + + .lg\:to-teal-200{ + --tw-gradient-to: #b2f5ea; + } + + .lg\:to-teal-300{ + --tw-gradient-to: #81e6d9; + } + + .lg\:to-teal-400{ + --tw-gradient-to: #4fd1c5; + } + + .lg\:to-teal-500{ + --tw-gradient-to: #38b2ac; + } + + .lg\:to-teal-600{ + --tw-gradient-to: #319795; + } + + .lg\:to-teal-700{ + --tw-gradient-to: #2c7a7b; + } + + .lg\:to-teal-800{ + --tw-gradient-to: #285e61; + } + + .lg\:to-teal-900{ + --tw-gradient-to: #234e52; + } + + .lg\:to-blue-100{ + --tw-gradient-to: #ebf8ff; + } + + .lg\:to-blue-200{ + --tw-gradient-to: #bee3f8; + } + + .lg\:to-blue-300{ + --tw-gradient-to: #90cdf4; + } + + .lg\:to-blue-400{ + --tw-gradient-to: #63b3ed; + } + + .lg\:to-blue-500{ + --tw-gradient-to: #4299e1; + } + + .lg\:to-blue-600{ + --tw-gradient-to: #3182ce; + } + + .lg\:to-blue-700{ + --tw-gradient-to: #2b6cb0; + } + + .lg\:to-blue-800{ + --tw-gradient-to: #2c5282; + } + + .lg\:to-blue-900{ + --tw-gradient-to: #2a4365; + } + + .lg\:to-indigo-100{ + --tw-gradient-to: #ebf4ff; + } + + .lg\:to-indigo-200{ + --tw-gradient-to: #c3dafe; + } + + .lg\:to-indigo-300{ + --tw-gradient-to: #a3bffa; + } + + .lg\:to-indigo-400{ + --tw-gradient-to: #7f9cf5; + } + + .lg\:to-indigo-500{ + --tw-gradient-to: #667eea; + } + + .lg\:to-indigo-600{ + --tw-gradient-to: #5a67d8; + } + + .lg\:to-indigo-700{ + --tw-gradient-to: #4c51bf; + } + + .lg\:to-indigo-800{ + --tw-gradient-to: #434190; + } + + .lg\:to-indigo-900{ + --tw-gradient-to: #3c366b; + } + + .lg\:to-purple-100{ + --tw-gradient-to: #faf5ff; + } + + .lg\:to-purple-200{ + --tw-gradient-to: #e9d8fd; + } + + .lg\:to-purple-300{ + --tw-gradient-to: #d6bcfa; + } + + .lg\:to-purple-400{ + --tw-gradient-to: #b794f4; + } + + .lg\:to-purple-500{ + --tw-gradient-to: #9f7aea; + } + + .lg\:to-purple-600{ + --tw-gradient-to: #805ad5; + } + + .lg\:to-purple-700{ + --tw-gradient-to: #6b46c1; + } + + .lg\:to-purple-800{ + --tw-gradient-to: #553c9a; + } + + .lg\:to-purple-900{ + --tw-gradient-to: #44337a; + } + + .lg\:to-pink-100{ + --tw-gradient-to: #fff5f7; + } + + .lg\:to-pink-200{ + --tw-gradient-to: #fed7e2; + } + + .lg\:to-pink-300{ + --tw-gradient-to: #fbb6ce; + } + + .lg\:to-pink-400{ + --tw-gradient-to: #f687b3; + } + + .lg\:to-pink-500{ + --tw-gradient-to: #ed64a6; + } + + .lg\:to-pink-600{ + --tw-gradient-to: #d53f8c; + } + + .lg\:to-pink-700{ + --tw-gradient-to: #b83280; + } + + .lg\:to-pink-800{ + --tw-gradient-to: #97266d; + } + + .lg\:to-pink-900{ + --tw-gradient-to: #702459; + } + + .lg\:hover\:to-transparent:hover{ + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-current:hover{ + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-black:hover{ + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover{ + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; + } + + .lg\:hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; + } + + .lg\:hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; + } + + .lg\:hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; + } + + .lg\:hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; + } + + .lg\:hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; + } + + .lg\:hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; + } + + .lg\:hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; + } + + .lg\:hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; + } + + .lg\:hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; + } + + .lg\:hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; + } + + .lg\:hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; + } + + .lg\:hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; + } + + .lg\:hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; + } + + .lg\:hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; + } + + .lg\:hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; + } + + .lg\:hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; + } + + .lg\:hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; + } + + .lg\:hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; + } + + .lg\:hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; + } + + .lg\:hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; + } + + .lg\:hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; + } + + .lg\:hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; + } + + .lg\:hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; + } + + .lg\:hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; + } + + .lg\:hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; + } + + .lg\:hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; + } + + .lg\:hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; + } + + .lg\:hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; + } + + .lg\:hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; + } + + .lg\:hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; + } + + .lg\:hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; + } + + .lg\:hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; + } + + .lg\:hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; + } + + .lg\:hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; + } + + .lg\:hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; + } + + .lg\:hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; + } + + .lg\:hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; + } + + .lg\:hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; + } + + .lg\:hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; + } + + .lg\:hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; + } + + .lg\:hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; + } + + .lg\:hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; + } + + .lg\:hover\:to-green-800:hover{ + --tw-gradient-to: #276749; + } + + .lg\:hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; + } + + .lg\:hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; + } + + .lg\:hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; + } + + .lg\:hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; + } + + .lg\:hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; + } + + .lg\:hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; + } + + .lg\:hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; + } + + .lg\:hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; + } + + .lg\:hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; + } + + .lg\:hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; + } + + .lg\:hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; + } + + .lg\:hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; + } + + .lg\:hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; + } + + .lg\:hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; + } + + .lg\:hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; + } + + .lg\:hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; + } + + .lg\:hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; + } + + .lg\:hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; + } + + .lg\:hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; + } + + .lg\:hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; + } + + .lg\:hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; + } + + .lg\:hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; + } + + .lg\:hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; + } + + .lg\:hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; + } + + .lg\:hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; + } + + .lg\:hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; + } + + .lg\:hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; + } + + .lg\:hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; + } + + .lg\:hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; + } + + .lg\:hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; + } + + .lg\:hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; + } + + .lg\:hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; + } + + .lg\:hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; + } + + .lg\:hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; + } + + .lg\:hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; + } + + .lg\:hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; + } + + .lg\:hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; + } + + .lg\:hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; + } + + .lg\:hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; + } + + .lg\:hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; + } + + .lg\:hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; + } + + .lg\:hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; + } + + .lg\:hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; + } + + .lg\:hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; + } + + .lg\:hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; + } + + .lg\:hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; + } + + .lg\:focus\:to-transparent:focus{ + --tw-gradient-to: transparent; + } + + .lg\:focus\:to-current:focus{ + --tw-gradient-to: currentColor; + } + + .lg\:focus\:to-black:focus{ + --tw-gradient-to: #000; + } + + .lg\:focus\:to-white:focus{ + --tw-gradient-to: #fff; + } + + .lg\:focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; + } + + .lg\:focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; + } + + .lg\:focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; + } + + .lg\:focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; + } + + .lg\:focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; + } + + .lg\:focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; + } + + .lg\:focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; + } + + .lg\:focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; + } + + .lg\:focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; + } + + .lg\:focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; + } + + .lg\:focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; + } + + .lg\:focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; + } + + .lg\:focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; + } + + .lg\:focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; + } + + .lg\:focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; + } + + .lg\:focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; + } + + .lg\:focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; + } + + .lg\:focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; + } + + .lg\:focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; + } + + .lg\:focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; + } + + .lg\:focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; + } + + .lg\:focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; + } + + .lg\:focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; + } + + .lg\:focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; + } + + .lg\:focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; + } + + .lg\:focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; + } + + .lg\:focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; + } + + .lg\:focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; + } + + .lg\:focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; + } + + .lg\:focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; + } + + .lg\:focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; + } + + .lg\:focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; + } + + .lg\:focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; + } + + .lg\:focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; + } + + .lg\:focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; + } + + .lg\:focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; + } + + .lg\:focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; + } + + .lg\:focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; + } + + .lg\:focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; + } + + .lg\:focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; + } + + .lg\:focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; + } + + .lg\:focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; + } + + .lg\:focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; + } + + .lg\:focus\:to-green-800:focus{ + --tw-gradient-to: #276749; + } + + .lg\:focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; + } + + .lg\:focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; + } + + .lg\:focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; + } + + .lg\:focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; + } + + .lg\:focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; + } + + .lg\:focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; + } + + .lg\:focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; + } + + .lg\:focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; + } + + .lg\:focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; + } + + .lg\:focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; + } + + .lg\:focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; + } + + .lg\:focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; + } + + .lg\:focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; + } + + .lg\:focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; + } + + .lg\:focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; + } + + .lg\:focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; + } + + .lg\:focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; + } + + .lg\:focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; + } + + .lg\:focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; + } + + .lg\:focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; + } + + .lg\:focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; + } + + .lg\:focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; + } + + .lg\:focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; + } + + .lg\:focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; + } + + .lg\:focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; + } + + .lg\:focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; + } + + .lg\:focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; + } + + .lg\:focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; + } + + .lg\:focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; + } + + .lg\:focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; + } + + .lg\:focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; + } + + .lg\:focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; + } + + .lg\:focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; + } + + .lg\:focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; + } + + .lg\:focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; + } + + .lg\:focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; + } + + .lg\:focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; + } + + .lg\:focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; + } + + .lg\:focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; + } + + .lg\:focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; + } + + .lg\:focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; + } + + .lg\:focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; + } + + .lg\:focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; + } + + .lg\:focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; + } + + .lg\:focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; + } + + .lg\:focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; + } + + .lg\:decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; + } + + .lg\:decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + } + + .lg\:bg-auto{ + background-size: auto; + } + + .lg\:bg-cover{ + background-size: cover; + } + + .lg\:bg-contain{ + background-size: contain; + } + + .lg\:bg-fixed{ + background-attachment: fixed; + } + + .lg\:bg-local{ + background-attachment: local; + } + + .lg\:bg-scroll{ + background-attachment: scroll; + } + + .lg\:bg-clip-border{ + background-clip: border-box; + } + + .lg\:bg-clip-padding{ + background-clip: padding-box; + } + + .lg\:bg-clip-content{ + background-clip: content-box; + } + + .lg\:bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; + } + + .lg\:bg-bottom{ + background-position: bottom; + } + + .lg\:bg-center{ + background-position: center; + } + + .lg\:bg-left{ + background-position: left; + } + + .lg\:bg-left-bottom{ + background-position: left bottom; + } + + .lg\:bg-left-top{ + background-position: left top; + } + + .lg\:bg-right{ + background-position: right; + } + + .lg\:bg-right-bottom{ + background-position: right bottom; + } + + .lg\:bg-right-top{ + background-position: right top; + } + + .lg\:bg-top{ + background-position: top; + } + + .lg\:bg-repeat{ + background-repeat: repeat; + } + + .lg\:bg-no-repeat{ + background-repeat: no-repeat; + } + + .lg\:bg-repeat-x{ + background-repeat: repeat-x; + } + + .lg\:bg-repeat-y{ + background-repeat: repeat-y; + } + + .lg\:bg-repeat-round{ + background-repeat: round; + } + + .lg\:bg-repeat-space{ + background-repeat: space; + } + + .lg\:bg-origin-border{ + background-origin: border-box; + } + + .lg\:bg-origin-padding{ + background-origin: padding-box; + } + + .lg\:bg-origin-content{ + background-origin: content-box; + } + + .lg\:fill-current{ + fill: currentColor; + } + + .lg\:stroke-current{ + stroke: currentColor; + } + + .lg\:stroke-0{ + stroke-width: 0; + } + + .lg\:stroke-1{ + stroke-width: 1; + } + + .lg\:stroke-2{ + stroke-width: 2; + } + + .lg\:object-contain{ + -o-object-fit: contain; + object-fit: contain; + } + + .lg\:object-cover{ + -o-object-fit: cover; + object-fit: cover; + } + + .lg\:object-fill{ + -o-object-fit: fill; + object-fit: fill; + } + + .lg\:object-none{ + -o-object-fit: none; + object-fit: none; + } + + .lg\:object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .lg\:object-bottom{ + -o-object-position: bottom; + object-position: bottom; + } + + .lg\:object-center{ + -o-object-position: center; + object-position: center; + } + + .lg\:object-left{ + -o-object-position: left; + object-position: left; + } + + .lg\:object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; + } + + .lg\:object-left-top{ + -o-object-position: left top; + object-position: left top; + } + + .lg\:object-right{ + -o-object-position: right; + object-position: right; + } + + .lg\:object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; + } + + .lg\:object-right-top{ + -o-object-position: right top; + object-position: right top; + } + + .lg\:object-top{ + -o-object-position: top; + object-position: top; + } + + .lg\:p-0{ + padding: 0px; + } + + .lg\:p-1{ + padding: 0.25rem; + } + + .lg\:p-2{ + padding: 0.5rem; + } + + .lg\:p-3{ + padding: 0.75rem; + } + + .lg\:p-4{ + padding: 1rem; + } + + .lg\:p-5{ + padding: 1.25rem; + } + + .lg\:p-6{ + padding: 1.5rem; + } + + .lg\:p-7{ + padding: 1.75rem; + } + + .lg\:p-8{ + padding: 2rem; + } + + .lg\:p-9{ + padding: 2.25rem; + } + + .lg\:p-10{ + padding: 2.5rem; + } + + .lg\:p-11{ + padding: 2.75rem; + } + + .lg\:p-12{ + padding: 3rem; + } + + .lg\:p-14{ + padding: 3.5rem; + } + + .lg\:p-16{ + padding: 4rem; + } + + .lg\:p-20{ + padding: 5rem; + } + + .lg\:p-24{ + padding: 6rem; + } + + .lg\:p-28{ + padding: 7rem; + } + + .lg\:p-32{ + padding: 8rem; + } + + .lg\:p-36{ + padding: 9rem; + } + + .lg\:p-40{ + padding: 10rem; + } + + .lg\:p-44{ + padding: 11rem; + } + + .lg\:p-48{ + padding: 12rem; + } + + .lg\:p-52{ + padding: 13rem; + } + + .lg\:p-56{ + padding: 14rem; + } + + .lg\:p-60{ + padding: 15rem; + } + + .lg\:p-64{ + padding: 16rem; + } + + .lg\:p-72{ + padding: 18rem; + } + + .lg\:p-80{ + padding: 20rem; + } + + .lg\:p-96{ + padding: 24rem; + } + + .lg\:p-px{ + padding: 1px; + } + + .lg\:p-0\.5{ + padding: 0.125rem; + } + + .lg\:p-1\.5{ + padding: 0.375rem; + } + + .lg\:p-2\.5{ + padding: 0.625rem; + } + + .lg\:p-3\.5{ + padding: 0.875rem; + } + + .lg\:px-0{ + padding-left: 0px; + padding-right: 0px; + } + + .lg\:px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .lg\:px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .lg\:px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .lg\:px-4{ + padding-left: 1rem; + padding-right: 1rem; + } + + .lg\:px-5{ + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .lg\:px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .lg\:px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .lg\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } + + .lg\:px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .lg\:px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .lg\:px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .lg\:px-12{ + padding-left: 3rem; + padding-right: 3rem; + } + + .lg\:px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .lg\:px-16{ + padding-left: 4rem; + padding-right: 4rem; + } + + .lg\:px-20{ + padding-left: 5rem; + padding-right: 5rem; + } + + .lg\:px-24{ + padding-left: 6rem; + padding-right: 6rem; + } + + .lg\:px-28{ + padding-left: 7rem; + padding-right: 7rem; + } + + .lg\:px-32{ + padding-left: 8rem; + padding-right: 8rem; + } + + .lg\:px-36{ + padding-left: 9rem; + padding-right: 9rem; + } + + .lg\:px-40{ + padding-left: 10rem; + padding-right: 10rem; + } + + .lg\:px-44{ + padding-left: 11rem; + padding-right: 11rem; + } + + .lg\:px-48{ + padding-left: 12rem; + padding-right: 12rem; + } + + .lg\:px-52{ + padding-left: 13rem; + padding-right: 13rem; + } + + .lg\:px-56{ + padding-left: 14rem; + padding-right: 14rem; + } + + .lg\:px-60{ + padding-left: 15rem; + padding-right: 15rem; + } + + .lg\:px-64{ + padding-left: 16rem; + padding-right: 16rem; + } + + .lg\:px-72{ + padding-left: 18rem; + padding-right: 18rem; + } + + .lg\:px-80{ + padding-left: 20rem; + padding-right: 20rem; + } + + .lg\:px-96{ + padding-left: 24rem; + padding-right: 24rem; + } + + .lg\:px-px{ + padding-left: 1px; + padding-right: 1px; + } + + .lg\:px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .lg\:px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .lg\:px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .lg\:px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .lg\:py-0{ + padding-top: 0px; + padding-bottom: 0px; + } + + .lg\:py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .lg\:py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .lg\:py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .lg\:py-4{ + padding-top: 1rem; + padding-bottom: 1rem; + } + + .lg\:py-5{ + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .lg\:py-6{ + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .lg\:py-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .lg\:py-8{ + padding-top: 2rem; + padding-bottom: 2rem; + } + + .lg\:py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .lg\:py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .lg\:py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .lg\:py-12{ + padding-top: 3rem; + padding-bottom: 3rem; + } + + .lg\:py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .lg\:py-16{ + padding-top: 4rem; + padding-bottom: 4rem; + } + + .lg\:py-20{ + padding-top: 5rem; + padding-bottom: 5rem; + } + + .lg\:py-24{ + padding-top: 6rem; + padding-bottom: 6rem; + } + + .lg\:py-28{ + padding-top: 7rem; + padding-bottom: 7rem; + } + + .lg\:py-32{ + padding-top: 8rem; + padding-bottom: 8rem; + } + + .lg\:py-36{ + padding-top: 9rem; + padding-bottom: 9rem; + } + + .lg\:py-40{ + padding-top: 10rem; + padding-bottom: 10rem; + } + + .lg\:py-44{ + padding-top: 11rem; + padding-bottom: 11rem; + } + + .lg\:py-48{ + padding-top: 12rem; + padding-bottom: 12rem; + } + + .lg\:py-52{ + padding-top: 13rem; + padding-bottom: 13rem; + } + + .lg\:py-56{ + padding-top: 14rem; + padding-bottom: 14rem; + } + + .lg\:py-60{ + padding-top: 15rem; + padding-bottom: 15rem; + } + + .lg\:py-64{ + padding-top: 16rem; + padding-bottom: 16rem; + } + + .lg\:py-72{ + padding-top: 18rem; + padding-bottom: 18rem; + } + + .lg\:py-80{ + padding-top: 20rem; + padding-bottom: 20rem; + } + + .lg\:py-96{ + padding-top: 24rem; + padding-bottom: 24rem; + } + + .lg\:py-px{ + padding-top: 1px; + padding-bottom: 1px; + } + + .lg\:py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .lg\:py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .lg\:py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .lg\:py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .lg\:pt-0{ + padding-top: 0px; + } + + .lg\:pt-1{ + padding-top: 0.25rem; + } + + .lg\:pt-2{ + padding-top: 0.5rem; + } + + .lg\:pt-3{ + padding-top: 0.75rem; + } + + .lg\:pt-4{ + padding-top: 1rem; + } + + .lg\:pt-5{ + padding-top: 1.25rem; + } + + .lg\:pt-6{ + padding-top: 1.5rem; + } + + .lg\:pt-7{ + padding-top: 1.75rem; + } + + .lg\:pt-8{ + padding-top: 2rem; + } + + .lg\:pt-9{ + padding-top: 2.25rem; + } + + .lg\:pt-10{ + padding-top: 2.5rem; + } + + .lg\:pt-11{ + padding-top: 2.75rem; + } + + .lg\:pt-12{ + padding-top: 3rem; + } + + .lg\:pt-14{ + padding-top: 3.5rem; + } + + .lg\:pt-16{ + padding-top: 4rem; + } + + .lg\:pt-20{ + padding-top: 5rem; + } + + .lg\:pt-24{ + padding-top: 6rem; + } + + .lg\:pt-28{ + padding-top: 7rem; + } + + .lg\:pt-32{ + padding-top: 8rem; + } + + .lg\:pt-36{ + padding-top: 9rem; + } + + .lg\:pt-40{ + padding-top: 10rem; + } + + .lg\:pt-44{ + padding-top: 11rem; + } + + .lg\:pt-48{ + padding-top: 12rem; + } + + .lg\:pt-52{ + padding-top: 13rem; + } + + .lg\:pt-56{ + padding-top: 14rem; + } + + .lg\:pt-60{ + padding-top: 15rem; + } + + .lg\:pt-64{ + padding-top: 16rem; + } + + .lg\:pt-72{ + padding-top: 18rem; + } + + .lg\:pt-80{ + padding-top: 20rem; + } + + .lg\:pt-96{ + padding-top: 24rem; + } + + .lg\:pt-px{ + padding-top: 1px; + } + + .lg\:pt-0\.5{ + padding-top: 0.125rem; + } + + .lg\:pt-1\.5{ + padding-top: 0.375rem; + } + + .lg\:pt-2\.5{ + padding-top: 0.625rem; + } + + .lg\:pt-3\.5{ + padding-top: 0.875rem; + } + + .lg\:pr-0{ + padding-right: 0px; + } + + .lg\:pr-1{ + padding-right: 0.25rem; + } + + .lg\:pr-2{ + padding-right: 0.5rem; + } + + .lg\:pr-3{ + padding-right: 0.75rem; + } + + .lg\:pr-4{ + padding-right: 1rem; + } + + .lg\:pr-5{ + padding-right: 1.25rem; + } + + .lg\:pr-6{ + padding-right: 1.5rem; + } + + .lg\:pr-7{ + padding-right: 1.75rem; + } + + .lg\:pr-8{ + padding-right: 2rem; + } + + .lg\:pr-9{ + padding-right: 2.25rem; + } + + .lg\:pr-10{ + padding-right: 2.5rem; + } + + .lg\:pr-11{ + padding-right: 2.75rem; + } + + .lg\:pr-12{ + padding-right: 3rem; + } + + .lg\:pr-14{ + padding-right: 3.5rem; + } + + .lg\:pr-16{ + padding-right: 4rem; + } + + .lg\:pr-20{ + padding-right: 5rem; + } + + .lg\:pr-24{ + padding-right: 6rem; + } + + .lg\:pr-28{ + padding-right: 7rem; + } + + .lg\:pr-32{ + padding-right: 8rem; + } + + .lg\:pr-36{ + padding-right: 9rem; + } + + .lg\:pr-40{ + padding-right: 10rem; + } + + .lg\:pr-44{ + padding-right: 11rem; + } + + .lg\:pr-48{ + padding-right: 12rem; + } + + .lg\:pr-52{ + padding-right: 13rem; + } + + .lg\:pr-56{ + padding-right: 14rem; + } + + .lg\:pr-60{ + padding-right: 15rem; + } + + .lg\:pr-64{ + padding-right: 16rem; + } + + .lg\:pr-72{ + padding-right: 18rem; + } + + .lg\:pr-80{ + padding-right: 20rem; + } + + .lg\:pr-96{ + padding-right: 24rem; + } + + .lg\:pr-px{ + padding-right: 1px; + } + + .lg\:pr-0\.5{ + padding-right: 0.125rem; + } + + .lg\:pr-1\.5{ + padding-right: 0.375rem; + } + + .lg\:pr-2\.5{ + padding-right: 0.625rem; + } + + .lg\:pr-3\.5{ + padding-right: 0.875rem; + } + + .lg\:pb-0{ + padding-bottom: 0px; + } + + .lg\:pb-1{ + padding-bottom: 0.25rem; + } + + .lg\:pb-2{ + padding-bottom: 0.5rem; + } + + .lg\:pb-3{ + padding-bottom: 0.75rem; + } + + .lg\:pb-4{ + padding-bottom: 1rem; + } + + .lg\:pb-5{ + padding-bottom: 1.25rem; + } + + .lg\:pb-6{ + padding-bottom: 1.5rem; + } + + .lg\:pb-7{ + padding-bottom: 1.75rem; + } + + .lg\:pb-8{ + padding-bottom: 2rem; + } + + .lg\:pb-9{ + padding-bottom: 2.25rem; + } + + .lg\:pb-10{ + padding-bottom: 2.5rem; + } + + .lg\:pb-11{ + padding-bottom: 2.75rem; + } + + .lg\:pb-12{ + padding-bottom: 3rem; + } + + .lg\:pb-14{ + padding-bottom: 3.5rem; + } + + .lg\:pb-16{ + padding-bottom: 4rem; + } + + .lg\:pb-20{ + padding-bottom: 5rem; + } + + .lg\:pb-24{ + padding-bottom: 6rem; + } + + .lg\:pb-28{ + padding-bottom: 7rem; + } + + .lg\:pb-32{ + padding-bottom: 8rem; + } + + .lg\:pb-36{ + padding-bottom: 9rem; + } + + .lg\:pb-40{ + padding-bottom: 10rem; + } + + .lg\:pb-44{ + padding-bottom: 11rem; + } + + .lg\:pb-48{ + padding-bottom: 12rem; + } + + .lg\:pb-52{ + padding-bottom: 13rem; + } + + .lg\:pb-56{ + padding-bottom: 14rem; + } + + .lg\:pb-60{ + padding-bottom: 15rem; + } + + .lg\:pb-64{ + padding-bottom: 16rem; + } + + .lg\:pb-72{ + padding-bottom: 18rem; + } + + .lg\:pb-80{ + padding-bottom: 20rem; + } + + .lg\:pb-96{ + padding-bottom: 24rem; + } + + .lg\:pb-px{ + padding-bottom: 1px; + } + + .lg\:pb-0\.5{ + padding-bottom: 0.125rem; + } + + .lg\:pb-1\.5{ + padding-bottom: 0.375rem; + } + + .lg\:pb-2\.5{ + padding-bottom: 0.625rem; + } + + .lg\:pb-3\.5{ + padding-bottom: 0.875rem; + } + + .lg\:pl-0{ + padding-left: 0px; + } + + .lg\:pl-1{ + padding-left: 0.25rem; + } + + .lg\:pl-2{ + padding-left: 0.5rem; + } + + .lg\:pl-3{ + padding-left: 0.75rem; + } + + .lg\:pl-4{ + padding-left: 1rem; + } + + .lg\:pl-5{ + padding-left: 1.25rem; + } + + .lg\:pl-6{ + padding-left: 1.5rem; + } + + .lg\:pl-7{ + padding-left: 1.75rem; + } + + .lg\:pl-8{ + padding-left: 2rem; + } + + .lg\:pl-9{ + padding-left: 2.25rem; + } + + .lg\:pl-10{ + padding-left: 2.5rem; + } + + .lg\:pl-11{ + padding-left: 2.75rem; + } + + .lg\:pl-12{ + padding-left: 3rem; + } + + .lg\:pl-14{ + padding-left: 3.5rem; + } + + .lg\:pl-16{ + padding-left: 4rem; + } + + .lg\:pl-20{ + padding-left: 5rem; + } + + .lg\:pl-24{ + padding-left: 6rem; + } + + .lg\:pl-28{ + padding-left: 7rem; + } + + .lg\:pl-32{ + padding-left: 8rem; + } + + .lg\:pl-36{ + padding-left: 9rem; + } + + .lg\:pl-40{ + padding-left: 10rem; + } + + .lg\:pl-44{ + padding-left: 11rem; + } + + .lg\:pl-48{ + padding-left: 12rem; + } + + .lg\:pl-52{ + padding-left: 13rem; + } + + .lg\:pl-56{ + padding-left: 14rem; + } + + .lg\:pl-60{ + padding-left: 15rem; + } + + .lg\:pl-64{ + padding-left: 16rem; + } + + .lg\:pl-72{ + padding-left: 18rem; + } + + .lg\:pl-80{ + padding-left: 20rem; + } + + .lg\:pl-96{ + padding-left: 24rem; + } + + .lg\:pl-px{ + padding-left: 1px; + } + + .lg\:pl-0\.5{ + padding-left: 0.125rem; + } + + .lg\:pl-1\.5{ + padding-left: 0.375rem; + } + + .lg\:pl-2\.5{ + padding-left: 0.625rem; + } + + .lg\:pl-3\.5{ + padding-left: 0.875rem; + } + + .lg\:text-left{ + text-align: left; + } + + .lg\:text-center{ + text-align: center; + } + + .lg\:text-right{ + text-align: right; + } + + .lg\:text-justify{ + text-align: justify; + } + + .lg\:align-baseline{ + vertical-align: baseline; + } + + .lg\:align-top{ + vertical-align: top; + } + + .lg\:align-middle{ + vertical-align: middle; + } + + .lg\:align-bottom{ + vertical-align: bottom; + } + + .lg\:align-text-top{ + vertical-align: text-top; + } + + .lg\:align-text-bottom{ + vertical-align: text-bottom; + } + + .lg\:font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .lg\:font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .lg\:font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .lg\:text-xs{ + font-size: 0.75rem; + line-height: 1rem; + } + + .lg\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + + .lg\:text-base{ + font-size: 1rem; + line-height: 1.5rem; + } + + .lg\:text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; + } + + .lg\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } + + .lg\:text-2xl{ + font-size: 1.5rem; + line-height: 2rem; + } + + .lg\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + + .lg\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + + .lg\:text-5xl{ + font-size: 3rem; + line-height: 1; + } + + .lg\:text-6xl{ + font-size: 3.75rem; + line-height: 1; + } + + .lg\:text-7xl{ + font-size: 4.5rem; + line-height: 1; + } + + .lg\:text-8xl{ + font-size: 6rem; + line-height: 1; + } + + .lg\:text-9xl{ + font-size: 8rem; + line-height: 1; + } + + .lg\:font-thin{ + font-weight: 100; + } + + .lg\:font-extralight{ + font-weight: 200; + } + + .lg\:font-light{ + font-weight: 300; + } + + .lg\:font-normal{ + font-weight: 400; + } + + .lg\:font-medium{ + font-weight: 500; + } + + .lg\:font-semibold{ + font-weight: 600; + } + + .lg\:font-bold{ + font-weight: 700; + } + + .lg\:font-extrabold{ + font-weight: 800; + } + + .lg\:font-black{ + font-weight: 900; + } + + .lg\:uppercase{ + text-transform: uppercase; + } + + .lg\:lowercase{ + text-transform: lowercase; + } + + .lg\:capitalize{ + text-transform: capitalize; + } + + .lg\:normal-case{ + text-transform: none; + } + + .lg\:italic{ + font-style: italic; + } + + .lg\:not-italic{ + font-style: normal; + } + + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .lg\:normal-nums{ + font-variant-numeric: normal; + } + + .lg\:ordinal{ + --tw-ordinal: ordinal; + } + + .lg\:slashed-zero{ + --tw-slashed-zero: slashed-zero; + } + + .lg\:lining-nums{ + --tw-numeric-figure: lining-nums; + } + + .lg\:oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; + } + + .lg\:proportional-nums{ + --tw-numeric-spacing: proportional-nums; + } + + .lg\:tabular-nums{ + --tw-numeric-spacing: tabular-nums; + } + + .lg\:diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; + } + + .lg\:stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; + } + + .lg\:leading-3{ + line-height: .75rem; + } + + .lg\:leading-4{ + line-height: 1rem; + } + + .lg\:leading-5{ + line-height: 1.25rem; + } + + .lg\:leading-6{ + line-height: 1.5rem; + } + + .lg\:leading-7{ + line-height: 1.75rem; + } + + .lg\:leading-8{ + line-height: 2rem; + } + + .lg\:leading-9{ + line-height: 2.25rem; + } + + .lg\:leading-10{ + line-height: 2.5rem; + } + + .lg\:leading-none{ + line-height: 1; + } + + .lg\:leading-tight{ + line-height: 1.25; + } + + .lg\:leading-snug{ + line-height: 1.375; + } + + .lg\:leading-normal{ + line-height: 1.5; + } + + .lg\:leading-relaxed{ + line-height: 1.625; + } + + .lg\:leading-loose{ + line-height: 2; + } + + .lg\:tracking-tighter{ + letter-spacing: -0.05em; + } + + .lg\:tracking-tight{ + letter-spacing: -0.025em; + } + + .lg\:tracking-normal{ + letter-spacing: 0em; + } + + .lg\:tracking-wide{ + letter-spacing: 0.025em; + } + + .lg\:tracking-wider{ + letter-spacing: 0.05em; + } + + .lg\:tracking-widest{ + letter-spacing: 0.1em; + } + + .lg\:text-transparent{ + color: transparent; + } + + .lg\:text-current{ + color: currentColor; + } + + .lg\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .lg\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .lg\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .lg\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .lg\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .lg\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .lg\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .lg\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .lg\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .lg\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .lg\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .lg\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .lg\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .lg\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .lg\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .lg\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .lg\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .lg\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .lg\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .lg\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .lg\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .lg\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .lg\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .lg\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .lg\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .lg\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .lg\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .lg\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .lg\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .lg\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .lg\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .lg\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .lg\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .lg\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .lg\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .lg\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .lg\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .lg\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .lg\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .lg\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .lg\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .lg\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .lg\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .lg\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .lg\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .lg\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .lg\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .lg\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .lg\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .lg\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .lg\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .lg\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .lg\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .lg\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .lg\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .lg\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .lg\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .lg\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .lg\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .lg\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .lg\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .lg\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .lg\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .lg\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .lg\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .lg\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .lg\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .lg\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .lg\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .lg\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .lg\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .lg\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .lg\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .lg\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .lg\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .lg\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .lg\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .lg\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .lg\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .lg\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .lg\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .lg\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .lg\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .lg\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .lg\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .lg\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .lg\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .lg\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .lg\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-transparent{ + color: transparent; + } + + .group:hover .lg\:group-hover\:text-current{ + color: currentColor; + } + + .group:hover .lg\:group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-transparent:focus-within{ + color: transparent; + } + + .lg\:focus-within\:text-current:focus-within{ + color: currentColor; + } + + .lg\:focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .lg\:hover\:text-transparent:hover{ + color: transparent; + } + + .lg\:hover\:text-current:hover{ + color: currentColor; + } + + .lg\:hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .lg\:hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .lg\:hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .lg\:hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .lg\:hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .lg\:focus\:text-transparent:focus{ + color: transparent; + } + + .lg\:focus\:text-current:focus{ + color: currentColor; + } + + .lg\:focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .lg\:focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .lg\:focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .lg\:focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .lg\:focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .lg\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .lg\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .lg\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .lg\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .lg\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .lg\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .lg\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .lg\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .lg\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .lg\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .lg\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .lg\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .lg\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .lg\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .lg\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .group:hover .lg\:group-hover\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .group:hover .lg\:group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .lg\:focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; + } + + .lg\:focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; + } + + .lg\:focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; + } + + .lg\:focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; + } + + .lg\:focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; + } + + .lg\:focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; + } + + .lg\:focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; + } + + .lg\:focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; + } + + .lg\:focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; + } + + .lg\:focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; + } + + .lg\:focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; + } + + .lg\:focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; + } + + .lg\:focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; + } + + .lg\:focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; + } + + .lg\:focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; + } + + .lg\:hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; + } + + .lg\:hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; + } + + .lg\:hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; + } + + .lg\:hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; + } + + .lg\:hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; + } + + .lg\:hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; + } + + .lg\:hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; + } + + .lg\:hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; + } + + .lg\:hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; + } + + .lg\:hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; + } + + .lg\:hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; + } + + .lg\:hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; + } + + .lg\:hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; + } + + .lg\:hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; + } + + .lg\:hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; + } + + .lg\:focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; + } + + .lg\:focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; + } + + .lg\:focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; + } + + .lg\:focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; + } + + .lg\:focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; + } + + .lg\:focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; + } + + .lg\:focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; + } + + .lg\:focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; + } + + .lg\:focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; + } + + .lg\:focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; + } + + .lg\:focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; + } + + .lg\:focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; + } + + .lg\:focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; + } + + .lg\:focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; + } + + .lg\:focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; + } + + .lg\:underline{ + text-decoration: underline; + } + + .lg\:line-through{ + text-decoration: line-through; + } + + .lg\:no-underline{ + text-decoration: none; + } + + .group:hover .lg\:group-hover\:underline{ + text-decoration: underline; + } + + .group:hover .lg\:group-hover\:line-through{ + text-decoration: line-through; + } + + .group:hover .lg\:group-hover\:no-underline{ + text-decoration: none; + } + + .lg\:focus-within\:underline:focus-within{ + text-decoration: underline; + } + + .lg\:focus-within\:line-through:focus-within{ + text-decoration: line-through; + } + + .lg\:focus-within\:no-underline:focus-within{ + text-decoration: none; + } + + .lg\:hover\:underline:hover{ + text-decoration: underline; + } + + .lg\:hover\:line-through:hover{ + text-decoration: line-through; + } + + .lg\:hover\:no-underline:hover{ + text-decoration: none; + } + + .lg\:focus\:underline:focus{ + text-decoration: underline; + } + + .lg\:focus\:line-through:focus{ + text-decoration: line-through; + } + + .lg\:focus\:no-underline:focus{ + text-decoration: none; + } + + .lg\:antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .lg\:subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .lg\:placeholder-transparent::-moz-placeholder{ + color: transparent; + } + + .lg\:placeholder-transparent:-ms-input-placeholder{ + color: transparent; + } + + .lg\:placeholder-transparent::placeholder{ + color: transparent; + } + + .lg\:placeholder-current::-moz-placeholder{ + color: currentColor; + } + + .lg\:placeholder-current:-ms-input-placeholder{ + color: currentColor; + } + + .lg\:placeholder-current::placeholder{ + color: currentColor; + } + + .lg\:placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; + } + + .lg\:focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; + } + + .lg\:focus\:placeholder-transparent:focus::placeholder{ + color: transparent; + } + + .lg\:focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::placeholder{ + color: currentColor; + } + + .lg\:focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + } + + .lg\:opacity-0{ + opacity: 0; + } + + .lg\:opacity-5{ + opacity: 0.05; + } + + .lg\:opacity-10{ + opacity: 0.1; + } + + .lg\:opacity-20{ + opacity: 0.2; + } + + .lg\:opacity-25{ + opacity: 0.25; + } + + .lg\:opacity-30{ + opacity: 0.3; + } + + .lg\:opacity-40{ + opacity: 0.4; + } + + .lg\:opacity-50{ + opacity: 0.5; + } + + .lg\:opacity-60{ + opacity: 0.6; + } + + .lg\:opacity-70{ + opacity: 0.7; + } + + .lg\:opacity-75{ + opacity: 0.75; + } + + .lg\:opacity-80{ + opacity: 0.8; + } + + .lg\:opacity-90{ + opacity: 0.9; + } + + .lg\:opacity-95{ + opacity: 0.95; + } + + .lg\:opacity-100{ + opacity: 1; + } + + .group:hover .lg\:group-hover\:opacity-0{ + opacity: 0; + } + + .group:hover .lg\:group-hover\:opacity-5{ + opacity: 0.05; + } + + .group:hover .lg\:group-hover\:opacity-10{ + opacity: 0.1; + } + + .group:hover .lg\:group-hover\:opacity-20{ + opacity: 0.2; + } + + .group:hover .lg\:group-hover\:opacity-25{ + opacity: 0.25; + } + + .group:hover .lg\:group-hover\:opacity-30{ + opacity: 0.3; + } + + .group:hover .lg\:group-hover\:opacity-40{ + opacity: 0.4; + } + + .group:hover .lg\:group-hover\:opacity-50{ + opacity: 0.5; + } + + .group:hover .lg\:group-hover\:opacity-60{ + opacity: 0.6; + } + + .group:hover .lg\:group-hover\:opacity-70{ + opacity: 0.7; + } + + .group:hover .lg\:group-hover\:opacity-75{ + opacity: 0.75; + } + + .group:hover .lg\:group-hover\:opacity-80{ + opacity: 0.8; + } + + .group:hover .lg\:group-hover\:opacity-90{ + opacity: 0.9; + } + + .group:hover .lg\:group-hover\:opacity-95{ + opacity: 0.95; + } + + .group:hover .lg\:group-hover\:opacity-100{ + opacity: 1; + } + + .lg\:focus-within\:opacity-0:focus-within{ + opacity: 0; + } + + .lg\:focus-within\:opacity-5:focus-within{ + opacity: 0.05; + } + + .lg\:focus-within\:opacity-10:focus-within{ + opacity: 0.1; + } + + .lg\:focus-within\:opacity-20:focus-within{ + opacity: 0.2; + } + + .lg\:focus-within\:opacity-25:focus-within{ + opacity: 0.25; + } + + .lg\:focus-within\:opacity-30:focus-within{ + opacity: 0.3; + } + + .lg\:focus-within\:opacity-40:focus-within{ + opacity: 0.4; + } + + .lg\:focus-within\:opacity-50:focus-within{ + opacity: 0.5; + } + + .lg\:focus-within\:opacity-60:focus-within{ + opacity: 0.6; + } + + .lg\:focus-within\:opacity-70:focus-within{ + opacity: 0.7; + } + + .lg\:focus-within\:opacity-75:focus-within{ + opacity: 0.75; + } + + .lg\:focus-within\:opacity-80:focus-within{ + opacity: 0.8; + } + + .lg\:focus-within\:opacity-90:focus-within{ + opacity: 0.9; + } + + .lg\:focus-within\:opacity-95:focus-within{ + opacity: 0.95; + } + + .lg\:focus-within\:opacity-100:focus-within{ + opacity: 1; + } + + .lg\:hover\:opacity-0:hover{ + opacity: 0; + } + + .lg\:hover\:opacity-5:hover{ + opacity: 0.05; + } + + .lg\:hover\:opacity-10:hover{ + opacity: 0.1; + } + + .lg\:hover\:opacity-20:hover{ + opacity: 0.2; + } + + .lg\:hover\:opacity-25:hover{ + opacity: 0.25; + } + + .lg\:hover\:opacity-30:hover{ + opacity: 0.3; + } + + .lg\:hover\:opacity-40:hover{ + opacity: 0.4; + } + + .lg\:hover\:opacity-50:hover{ + opacity: 0.5; + } + + .lg\:hover\:opacity-60:hover{ + opacity: 0.6; + } + + .lg\:hover\:opacity-70:hover{ + opacity: 0.7; + } + + .lg\:hover\:opacity-75:hover{ + opacity: 0.75; + } + + .lg\:hover\:opacity-80:hover{ + opacity: 0.8; + } + + .lg\:hover\:opacity-90:hover{ + opacity: 0.9; + } + + .lg\:hover\:opacity-95:hover{ + opacity: 0.95; + } + + .lg\:hover\:opacity-100:hover{ + opacity: 1; + } + + .lg\:focus\:opacity-0:focus{ + opacity: 0; + } + + .lg\:focus\:opacity-5:focus{ + opacity: 0.05; + } + + .lg\:focus\:opacity-10:focus{ + opacity: 0.1; + } + + .lg\:focus\:opacity-20:focus{ + opacity: 0.2; + } + + .lg\:focus\:opacity-25:focus{ + opacity: 0.25; + } + + .lg\:focus\:opacity-30:focus{ + opacity: 0.3; + } + + .lg\:focus\:opacity-40:focus{ + opacity: 0.4; + } + + .lg\:focus\:opacity-50:focus{ + opacity: 0.5; + } + + .lg\:focus\:opacity-60:focus{ + opacity: 0.6; + } + + .lg\:focus\:opacity-70:focus{ + opacity: 0.7; + } + + .lg\:focus\:opacity-75:focus{ + opacity: 0.75; + } + + .lg\:focus\:opacity-80:focus{ + opacity: 0.8; + } + + .lg\:focus\:opacity-90:focus{ + opacity: 0.9; + } + + .lg\:focus\:opacity-95:focus{ + opacity: 0.95; + } + + .lg\:focus\:opacity-100:focus{ + opacity: 1; + } + + .lg\:bg-blend-normal{ + background-blend-mode: normal; + } + + .lg\:bg-blend-multiply{ + background-blend-mode: multiply; + } + + .lg\:bg-blend-screen{ + background-blend-mode: screen; + } + + .lg\:bg-blend-overlay{ + background-blend-mode: overlay; + } + + .lg\:bg-blend-darken{ + background-blend-mode: darken; + } + + .lg\:bg-blend-lighten{ + background-blend-mode: lighten; + } + + .lg\:bg-blend-color-dodge{ + background-blend-mode: color-dodge; + } + + .lg\:bg-blend-color-burn{ + background-blend-mode: color-burn; + } + + .lg\:bg-blend-hard-light{ + background-blend-mode: hard-light; + } + + .lg\:bg-blend-soft-light{ + background-blend-mode: soft-light; + } + + .lg\:bg-blend-difference{ + background-blend-mode: difference; + } + + .lg\:bg-blend-exclusion{ + background-blend-mode: exclusion; + } + + .lg\:bg-blend-hue{ + background-blend-mode: hue; + } + + .lg\:bg-blend-saturation{ + background-blend-mode: saturation; + } + + .lg\:bg-blend-color{ + background-blend-mode: color; + } + + .lg\:bg-blend-luminosity{ + background-blend-mode: luminosity; + } + + .lg\:mix-blend-normal{ + mix-blend-mode: normal; + } + + .lg\:mix-blend-multiply{ + mix-blend-mode: multiply; + } + + .lg\:mix-blend-screen{ + mix-blend-mode: screen; + } + + .lg\:mix-blend-overlay{ + mix-blend-mode: overlay; + } + + .lg\:mix-blend-darken{ + mix-blend-mode: darken; + } + + .lg\:mix-blend-lighten{ + mix-blend-mode: lighten; + } + + .lg\:mix-blend-color-dodge{ + mix-blend-mode: color-dodge; + } + + .lg\:mix-blend-color-burn{ + mix-blend-mode: color-burn; + } + + .lg\:mix-blend-hard-light{ + mix-blend-mode: hard-light; + } + + .lg\:mix-blend-soft-light{ + mix-blend-mode: soft-light; + } + + .lg\:mix-blend-difference{ + mix-blend-mode: difference; + } + + .lg\:mix-blend-exclusion{ + mix-blend-mode: exclusion; + } + + .lg\:mix-blend-hue{ + mix-blend-mode: hue; + } + + .lg\:mix-blend-saturation{ + mix-blend-mode: saturation; + } + + .lg\:mix-blend-color{ + mix-blend-mode: color; + } + + .lg\:mix-blend-luminosity{ + mix-blend-mode: luminosity; + } + + .lg\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:outline-none{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:outline-white{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:outline-black{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\: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); + } + + .lg\: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); + } + + .lg\: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); + } + + .lg\: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); + } + + .lg\:ring-8{ + --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(8px + 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); + } + + .lg\: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); + } + + .lg\:focus-within\:ring-0:focus-within{ + --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); + } + + .lg\:focus-within\:ring-1:focus-within{ + --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); + } + + .lg\:focus-within\:ring-2:focus-within{ + --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); + } + + .lg\:focus-within\:ring-4:focus-within{ + --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); + } + + .lg\:focus-within\:ring-8:focus-within{ + --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(8px + 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); + } + + .lg\:focus-within\:ring:focus-within{ + --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); + } + + .lg\: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); + } + + .lg\: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); + } + + .lg\: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); + } + + .lg\:focus\:ring-4: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(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); + } + + .lg\:focus\:ring-8: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(8px + 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); + } + + .lg\: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); + } + + .lg\:ring-inset{ + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; + } + + .lg\:focus\:ring-inset:focus{ + --tw-ring-inset: inset; + } + + .lg\:ring-transparent{ + --tw-ring-color: transparent; + } + + .lg\:ring-current{ + --tw-ring-color: currentColor; + } + + .lg\:ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .lg\:ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .lg\:ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .lg\:ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .lg\:ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .lg\:ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .lg\:ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .lg\:ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .lg\:ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .lg\:ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .lg\:ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .lg\:ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .lg\:ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .lg\:ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .lg\:ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .lg\:ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .lg\:ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .lg\:ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .lg\:ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .lg\:ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .lg\:ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .lg\:ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .lg\:ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; + } + + .lg\:focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; + } + + .lg\:focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-transparent:focus{ + --tw-ring-color: transparent; + } + + .lg\:focus\:ring-current:focus{ + --tw-ring-color: currentColor; + } + + .lg\:focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .lg\:ring-opacity-0{ + --tw-ring-opacity: 0; + } + + .lg\:ring-opacity-5{ + --tw-ring-opacity: 0.05; + } + + .lg\:ring-opacity-10{ + --tw-ring-opacity: 0.1; + } + + .lg\:ring-opacity-20{ + --tw-ring-opacity: 0.2; + } + + .lg\:ring-opacity-25{ + --tw-ring-opacity: 0.25; + } + + .lg\:ring-opacity-30{ + --tw-ring-opacity: 0.3; + } + + .lg\:ring-opacity-40{ + --tw-ring-opacity: 0.4; + } + + .lg\:ring-opacity-50{ + --tw-ring-opacity: 0.5; + } + + .lg\:ring-opacity-60{ + --tw-ring-opacity: 0.6; + } + + .lg\:ring-opacity-70{ + --tw-ring-opacity: 0.7; + } + + .lg\:ring-opacity-75{ + --tw-ring-opacity: 0.75; + } + + .lg\:ring-opacity-80{ + --tw-ring-opacity: 0.8; + } + + .lg\:ring-opacity-90{ + --tw-ring-opacity: 0.9; + } + + .lg\:ring-opacity-95{ + --tw-ring-opacity: 0.95; + } + + .lg\:ring-opacity-100{ + --tw-ring-opacity: 1; + } + + .lg\:focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; + } + + .lg\:focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; + } + + .lg\:focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; + } + + .lg\:focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; + } + + .lg\:focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; + } + + .lg\:focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; + } + + .lg\:focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; + } + + .lg\:focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; + } + + .lg\:focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; + } + + .lg\:focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; + } + + .lg\:focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; + } + + .lg\:focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; + } + + .lg\:focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; + } + + .lg\:focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; + } + + .lg\:focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; + } + + .lg\:focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; + } + + .lg\:focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; + } + + .lg\:focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; + } + + .lg\:focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; + } + + .lg\:focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; + } + + .lg\:focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; + } + + .lg\:focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; + } + + .lg\:focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; + } + + .lg\:focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; + } + + .lg\:focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; + } + + .lg\:focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; + } + + .lg\:focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; + } + + .lg\:focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; + } + + .lg\:focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; + } + + .lg\:focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; + } + + .lg\:ring-offset-0{ + --tw-ring-offset-width: 0px; + } + + .lg\:ring-offset-1{ + --tw-ring-offset-width: 1px; + } + + .lg\:ring-offset-2{ + --tw-ring-offset-width: 2px; + } + + .lg\:ring-offset-4{ + --tw-ring-offset-width: 4px; + } + + .lg\:ring-offset-8{ + --tw-ring-offset-width: 8px; + } + + .lg\:focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; + } + + .lg\:focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; + } + + .lg\:focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; + } + + .lg\:focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; + } + + .lg\:focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; + } + + .lg\:focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; + } + + .lg\:focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; + } + + .lg\:focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; + } + + .lg\:focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; + } + + .lg\:focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; + } + + .lg\:ring-offset-transparent{ + --tw-ring-offset-color: transparent; + } + + .lg\:ring-offset-current{ + --tw-ring-offset-color: currentColor; + } + + .lg\:ring-offset-black{ + --tw-ring-offset-color: #000; + } + + .lg\:ring-offset-white{ + --tw-ring-offset-color: #fff; + } + + .lg\:ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; + } + + .lg\:ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; + } + + .lg\:ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; + } + + .lg\:ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; + } + + .lg\:ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; + } + + .lg\:ring-offset-gray-600{ + --tw-ring-offset-color: #718096; + } + + .lg\:ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; + } + + .lg\:ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; + } + + .lg\:ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; + } + + .lg\:ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; + } + + .lg\:ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; + } + + .lg\:ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; + } + + .lg\:ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; + } + + .lg\:ring-offset-red-500{ + --tw-ring-offset-color: #f56565; + } + + .lg\:ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; + } + + .lg\:ring-offset-red-700{ + --tw-ring-offset-color: #c53030; + } + + .lg\:ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; + } + + .lg\:ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; + } + + .lg\:ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; + } + + .lg\:ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; + } + + .lg\:ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; + } + + .lg\:ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; + } + + .lg\:ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; + } + + .lg\:ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; + } + + .lg\:ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; + } + + .lg\:ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; + } + + .lg\:ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; + } + + .lg\:ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; + } + + .lg\:ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; + } + + .lg\:ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; + } + + .lg\:ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; + } + + .lg\:ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; + } + + .lg\:ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; + } + + .lg\:ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; + } + + .lg\:ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; + } + + .lg\:ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; + } + + .lg\:ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; + } + + .lg\:ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; + } + + .lg\:ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; + } + + .lg\:ring-offset-green-400{ + --tw-ring-offset-color: #68d391; + } + + .lg\:ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; + } + + .lg\:ring-offset-green-600{ + --tw-ring-offset-color: #38a169; + } + + .lg\:ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; + } + + .lg\:ring-offset-green-800{ + --tw-ring-offset-color: #276749; + } + + .lg\:ring-offset-green-900{ + --tw-ring-offset-color: #22543d; + } + + .lg\:ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; + } + + .lg\:ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; + } + + .lg\:ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; + } + + .lg\:ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; + } + + .lg\:ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; + } + + .lg\:ring-offset-teal-600{ + --tw-ring-offset-color: #319795; + } + + .lg\:ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; + } + + .lg\:ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; + } + + .lg\:ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; + } + + .lg\:ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; + } + + .lg\:ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; + } + + .lg\:ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; + } + + .lg\:ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; + } + + .lg\:ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; + } + + .lg\:ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; + } + + .lg\:ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; + } + + .lg\:ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; + } + + .lg\:ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; + } + + .lg\:ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; + } + + .lg\:ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; + } + + .lg\:ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; + } + + .lg\:ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; + } + + .lg\:ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; + } + + .lg\:ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; + } + + .lg\:ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; + } + + .lg\:ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; + } + + .lg\:ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; + } + + .lg\:ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; + } + + .lg\:ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; + } + + .lg\:ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; + } + + .lg\:ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; + } + + .lg\:ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; + } + + .lg\:ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; + } + + .lg\:ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; + } + + .lg\:ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; + } + + .lg\:ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; + } + + .lg\:ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; + } + + .lg\:ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; + } + + .lg\:ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; + } + + .lg\:ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; + } + + .lg\:ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; + } + + .lg\:ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; + } + + .lg\:ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; + } + + .lg\:ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; + } + + .lg\:ring-offset-pink-900{ + --tw-ring-offset-color: #702459; + } + + .lg\:focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; + } + + .lg\:focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; + } + + .lg\:focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; + } + + .lg\:focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; + } + + .lg\:focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; + } + + .lg\:focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; + } + + .lg\:focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; + } + + .lg\:focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; + } + + .lg\:focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; + } + + .lg\:focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; + } + + .lg\:focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; + } + + .lg\:focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; + } + + .lg\:focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; + } + + .lg\:focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; + } + + .lg\:focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; + } + + .lg\:focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; + } + + .lg\:focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; + } + + .lg\:focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; + } + + .lg\:focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; + } + + .lg\:focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; + } + + .lg\:focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; + } + + .lg\:focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; + } + + .lg\:focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; + } + + .lg\:focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; + } + + .lg\:focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; + } + + .lg\:focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; + } + + .lg\:focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; + } + + .lg\:focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; + } + + .lg\:focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; + } + + .lg\:focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; + } + + .lg\:focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; + } + + .lg\:focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; + } + + .lg\:focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; + } + + .lg\:focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; + } + + .lg\:focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; + } + + .lg\:focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; + } + + .lg\:focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; + } + + .lg\:focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; + } + + .lg\:focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; + } + + .lg\:focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; + } + + .lg\:focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; + } + + .lg\:focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; + } + + .lg\:focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; + } + + .lg\:focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; + } + + .lg\:focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; + } + + .lg\:focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; + } + + .lg\:focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; + } + + .lg\:focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; + } + + .lg\:focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; + } + + .lg\:focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; + } + + .lg\:focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; + } + + .lg\:focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; + } + + .lg\:focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; + } + + .lg\:focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; + } + + .lg\:focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; + } + + .lg\:focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; + } + + .lg\:focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; + } + + .lg\:focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; + } + + .lg\:focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; + } + + .lg\:focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; + } + + .lg\:focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; + } + + .lg\:focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; + } + + .lg\:focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; + } + + .lg\:focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; + } + + .lg\:focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; + } + + .lg\:focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; + } + + .lg\:focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; + } + + .lg\:focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; + } + + .lg\:focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; + } + + .lg\:focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; + } + + .lg\:focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; + } + + .lg\:focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; + } + + .lg\:focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; + } + + .lg\:focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; + } + + .lg\:focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; + } + + .lg\:focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; + } + + .lg\:focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; + } + + .lg\:focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; + } + + .lg\:focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; + } + + .lg\:focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; + } + + .lg\:focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; + } + + .lg\:focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; + } + + .lg\:focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; + } + + .lg\:focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; + } + + .lg\:focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; + } + + .lg\:focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; + } + + .lg\:focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; + } + + .lg\:focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; + } + + .lg\:focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; + } + + .lg\:focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; + } + + .lg\:focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; + } + + .lg\:focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; + } + + .lg\:focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; + } + + .lg\:focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; + } + + .lg\:focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; + } + + .lg\:focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; + } + + .lg\:focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; + } + + .lg\:focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; + } + + .lg\:focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; + } + + .lg\:focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; + } + + .lg\:focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; + } + + .lg\:focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; + } + + .lg\:focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; + } + + .lg\:focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; + } + + .lg\:focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; + } + + .lg\:focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; + } + + .lg\:focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; + } + + .lg\:focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; + } + + .lg\:focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; + } + + .lg\:focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; + } + + .lg\:focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; + } + + .lg\:focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; + } + + .lg\:focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; + } + + .lg\:focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; + } + + .lg\:focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; + } + + .lg\:focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; + } + + .lg\:focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; + } + + .lg\:focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; + } + + .lg\:focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; + } + + .lg\:focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; + } + + .lg\:focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; + } + + .lg\:focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; + } + + .lg\:focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; + } + + .lg\:focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; + } + + .lg\:focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; + } + + .lg\:focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; + } + + .lg\:focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; + } + + .lg\:focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; + } + + .lg\:focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; + } + + .lg\:focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; + } + + .lg\:focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; + } + + .lg\:focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; + } + + .lg\:focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; + } + + .lg\:focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; + } + + .lg\:focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; + } + + .lg\:focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; + } + + .lg\:focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; + } + + .lg\:focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; + } + + .lg\:focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; + } + + .lg\:focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; + } + + .lg\:focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; + } + + .lg\:focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; + } + + .lg\:focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; + } + + .lg\:focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; + } + + .lg\:focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; + } + + .lg\:focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; + } + + .lg\:focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; + } + + .lg\:focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; + } + + .lg\:focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; + } + + .lg\:focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; + } + + .lg\:focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; + } + + .lg\:focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; + } + + .lg\:focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; + } + + .lg\:focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; + } + + .lg\:focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; + } + + .lg\:focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; + } + + .lg\:focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; + } + + .lg\:focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; + } + + .lg\:focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; + } + + .lg\:focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; + } + + .lg\:focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; + } + + .lg\:focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; + } + + .lg\:focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; + } + + .lg\:focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; + } + + .lg\:focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; + } + + .lg\:focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; + } + + .lg\:focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; + } + + .lg\:focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; + } + + .lg\:focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; + } + + .lg\:focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; + } + + .lg\:focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; + } + + .lg\:focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; + } + + .lg\:focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; + } + + .lg\:focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; + } + + .lg\:focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; + } + + .lg\:focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; + } + + .lg\:focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; + } + + .lg\:focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; + } + + .lg\:focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; + } + + .lg\:focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; + } + + .lg\:focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; + } + + .lg\:focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; + } + + .lg\:focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; + } + + .lg\:focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; + } + + .lg\:focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; + } + + .lg\:focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; + } + + .lg\:focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; + } + + .lg\:focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; + } + + .lg\:filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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); + } + + .lg\:filter-none{ + filter: none; + } + + .lg\:blur-0{ + --tw-blur: blur(0); + } + + .lg\:blur-none{ + --tw-blur: blur(0); + } + + .lg\:blur-sm{ + --tw-blur: blur(4px); + } + + .lg\:blur{ + --tw-blur: blur(8px); + } + + .lg\:blur-md{ + --tw-blur: blur(12px); + } + + .lg\:blur-lg{ + --tw-blur: blur(16px); + } + + .lg\:blur-xl{ + --tw-blur: blur(24px); + } + + .lg\:blur-2xl{ + --tw-blur: blur(40px); + } + + .lg\:blur-3xl{ + --tw-blur: blur(64px); + } + + .lg\:brightness-0{ + --tw-brightness: brightness(0); + } + + .lg\:brightness-50{ + --tw-brightness: brightness(.5); + } + + .lg\:brightness-75{ + --tw-brightness: brightness(.75); + } + + .lg\:brightness-90{ + --tw-brightness: brightness(.9); + } + + .lg\:brightness-95{ + --tw-brightness: brightness(.95); + } + + .lg\:brightness-100{ + --tw-brightness: brightness(1); + } + + .lg\:brightness-105{ + --tw-brightness: brightness(1.05); + } + + .lg\:brightness-110{ + --tw-brightness: brightness(1.1); + } + + .lg\:brightness-125{ + --tw-brightness: brightness(1.25); + } + + .lg\:brightness-150{ + --tw-brightness: brightness(1.5); + } + + .lg\:brightness-200{ + --tw-brightness: brightness(2); + } + + .lg\:contrast-0{ + --tw-contrast: contrast(0); + } + + .lg\:contrast-50{ + --tw-contrast: contrast(.5); + } + + .lg\:contrast-75{ + --tw-contrast: contrast(.75); + } + + .lg\:contrast-100{ + --tw-contrast: contrast(1); + } + + .lg\:contrast-125{ + --tw-contrast: contrast(1.25); + } + + .lg\:contrast-150{ + --tw-contrast: contrast(1.5); + } + + .lg\:contrast-200{ + --tw-contrast: contrast(2); + } + + .lg\:drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + } + + .lg\:drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + } + + .lg\:drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + } + + .lg\:drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + } + + .lg\:drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + } + + .lg\:drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + } + + .lg\:drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); + } + + .lg\:grayscale-0{ + --tw-grayscale: grayscale(0); + } + + .lg\:grayscale{ + --tw-grayscale: grayscale(100%); + } + + .lg\:hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); + } + + .lg\:hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); + } + + .lg\:hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); + } + + .lg\:hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); + } + + .lg\:hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); + } + + .lg\:hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); + } + + .lg\:-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); + } + + .lg\:-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); + } + + .lg\:-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); + } + + .lg\:-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); + } + + .lg\:-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); + } + + .lg\:invert-0{ + --tw-invert: invert(0); + } + + .lg\:invert{ + --tw-invert: invert(100%); + } + + .lg\:saturate-0{ + --tw-saturate: saturate(0); + } + + .lg\:saturate-50{ + --tw-saturate: saturate(.5); + } + + .lg\:saturate-100{ + --tw-saturate: saturate(1); + } + + .lg\:saturate-150{ + --tw-saturate: saturate(1.5); + } + + .lg\:saturate-200{ + --tw-saturate: saturate(2); + } + + .lg\:sepia-0{ + --tw-sepia: sepia(0); + } + + .lg\:sepia{ + --tw-sepia: sepia(100%); + } + + .lg\:backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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); + } + + .lg\:backdrop-filter-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; + } + + .lg\:backdrop-blur-0{ + --tw-backdrop-blur: blur(0); + } + + .lg\:backdrop-blur-none{ + --tw-backdrop-blur: blur(0); + } + + .lg\:backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); + } + + .lg\:backdrop-blur{ + --tw-backdrop-blur: blur(8px); + } + + .lg\:backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); + } + + .lg\:backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); + } + + .lg\:backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); + } + + .lg\:backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); + } + + .lg\:backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); + } + + .lg\:backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); + } + + .lg\:backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); + } + + .lg\:backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); + } + + .lg\:backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); + } + + .lg\:backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); + } + + .lg\:backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); + } + + .lg\:backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); + } + + .lg\:backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); + } + + .lg\:backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); + } + + .lg\:backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); + } + + .lg\:backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); + } + + .lg\:backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); + } + + .lg\:backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); + } + + .lg\:backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); + } + + .lg\:backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); + } + + .lg\:backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); + } + + .lg\:backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); + } + + .lg\:backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); + } + + .lg\:backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); + } + + .lg\:backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); + } + + .lg\:backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); + } + + .lg\:backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); + } + + .lg\:backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); + } + + .lg\:backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); + } + + .lg\:backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); + } + + .lg\:backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); + } + + .lg\:-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); + } + + .lg\:-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); + } + + .lg\:-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); + } + + .lg\:-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); + } + + .lg\:-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); + } + + .lg\:backdrop-invert-0{ + --tw-backdrop-invert: invert(0); + } + + .lg\:backdrop-invert{ + --tw-backdrop-invert: invert(100%); + } + + .lg\:backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); + } + + .lg\:backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); + } + + .lg\:backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); + } + + .lg\:backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); + } + + .lg\:backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); + } + + .lg\:backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); + } + + .lg\:backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); + } + + .lg\:backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); + } + + .lg\:backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); + } + + .lg\:backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); + } + + .lg\:backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); + } + + .lg\:backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); + } + + .lg\:backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); + } + + .lg\:backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); + } + + .lg\:backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); + } + + .lg\:backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); + } + + .lg\:backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); + } + + .lg\:backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); + } + + .lg\:backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); + } + + .lg\:backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); + } + + .lg\:backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); + } + + .lg\:backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); + } + + .lg\:transition-none{ + transition-property: none; + } + + .lg\:transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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; + } + + .lg\:transition-colors{ + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-opacity{ + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-shadow{ + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-transform{ + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:delay-75{ + transition-delay: 75ms; + } + + .lg\:delay-100{ + transition-delay: 100ms; + } + + .lg\:delay-150{ + transition-delay: 150ms; + } + + .lg\:delay-200{ + transition-delay: 200ms; + } + + .lg\:delay-300{ + transition-delay: 300ms; + } + + .lg\:delay-500{ + transition-delay: 500ms; + } + + .lg\:delay-700{ + transition-delay: 700ms; + } + + .lg\:delay-1000{ + transition-delay: 1000ms; + } + + .lg\:duration-75{ + transition-duration: 75ms; + } + + .lg\:duration-100{ + transition-duration: 100ms; + } + + .lg\:duration-150{ + transition-duration: 150ms; + } + + .lg\:duration-200{ + transition-duration: 200ms; + } + + .lg\:duration-300{ + transition-duration: 300ms; + } + + .lg\:duration-500{ + transition-duration: 500ms; + } + + .lg\:duration-700{ + transition-duration: 700ms; + } + + .lg\:duration-1000{ + transition-duration: 1000ms; + } + + .lg\:ease-linear{ + transition-timing-function: linear; + } + + .lg\:ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .lg\:ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .lg\:ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} + +@media (min-width: 1280px){ + .xl\:container{ + width: 100%; + } + + @media (min-width: 640px){ + .xl\:container{ + max-width: 640px; + } + } + + @media (min-width: 768px){ + .xl\:container{ + max-width: 768px; + } + } + + @media (min-width: 1024px){ + .xl\:container{ + max-width: 1024px; + } + } + + @media (min-width: 1280px){ + .xl\:container{ + max-width: 1280px; + } + } + + @media (min-width: 1536px){ + .xl\:container{ + max-width: 1536px; + } + } + + .xl\: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; + } + + .xl\:not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:pointer-events-none{ + pointer-events: none; + } + + .xl\:pointer-events-auto{ + pointer-events: auto; + } + + .xl\:visible{ + visibility: visible; + } + + .xl\:invisible{ + visibility: hidden; + } + + .xl\:static{ + position: static; + } + + .xl\:fixed{ + position: fixed; + } + + .xl\:absolute{ + position: absolute; + } + + .xl\:relative{ + position: relative; + } + + .xl\:sticky{ + position: -webkit-sticky; + position: sticky; + } + + .xl\:inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .xl\:inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .xl\:inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .xl\:inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .xl\:inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .xl\:inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .xl\:inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .xl\:inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .xl\:inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .xl\:inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .xl\:inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .xl\:inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .xl\:inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .xl\:inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .xl\:inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .xl\:inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .xl\:inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .xl\:inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .xl\:inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .xl\:inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .xl\:inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .xl\:inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .xl\:inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .xl\:inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .xl\:inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .xl\:inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .xl\:inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .xl\:inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .xl\:inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .xl\:inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .xl\:inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .xl\:inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .xl\:inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .xl\:inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .xl\:inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .xl\:-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .xl\:-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .xl\:-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .xl\:-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .xl\:-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .xl\:-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .xl\:-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .xl\:-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .xl\:-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .xl\:-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .xl\:-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .xl\:-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .xl\:-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .xl\:-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .xl\:-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .xl\:-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .xl\:-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .xl\:-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .xl\:-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .xl\:-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .xl\:-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .xl\:-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .xl\:-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .xl\:-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .xl\:-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .xl\:-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .xl\:-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .xl\:-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .xl\:-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .xl\:-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .xl\:-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .xl\:-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .xl\:-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .xl\:inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .xl\:inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .xl\:inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .xl\:inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .xl\:inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .xl\:-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .xl\:-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .xl\:-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .xl\:-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .xl\:-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; + } + + .xl\:inset-x-0{ + left: 0px; + right: 0px; + } + + .xl\:inset-x-1{ + left: 0.25rem; + right: 0.25rem; + } + + .xl\:inset-x-2{ + left: 0.5rem; + right: 0.5rem; + } + + .xl\:inset-x-3{ + left: 0.75rem; + right: 0.75rem; + } + + .xl\:inset-x-4{ + left: 1rem; + right: 1rem; + } + + .xl\:inset-x-5{ + left: 1.25rem; + right: 1.25rem; + } + + .xl\:inset-x-6{ + left: 1.5rem; + right: 1.5rem; + } + + .xl\:inset-x-7{ + left: 1.75rem; + right: 1.75rem; + } + + .xl\:inset-x-8{ + left: 2rem; + right: 2rem; + } + + .xl\:inset-x-9{ + left: 2.25rem; + right: 2.25rem; + } + + .xl\:inset-x-10{ + left: 2.5rem; + right: 2.5rem; + } + + .xl\:inset-x-11{ + left: 2.75rem; + right: 2.75rem; + } + + .xl\:inset-x-12{ + left: 3rem; + right: 3rem; + } + + .xl\:inset-x-14{ + left: 3.5rem; + right: 3.5rem; + } + + .xl\:inset-x-16{ + left: 4rem; + right: 4rem; + } + + .xl\:inset-x-20{ + left: 5rem; + right: 5rem; + } + + .xl\:inset-x-24{ + left: 6rem; + right: 6rem; + } + + .xl\:inset-x-28{ + left: 7rem; + right: 7rem; + } + + .xl\:inset-x-32{ + left: 8rem; + right: 8rem; + } + + .xl\:inset-x-36{ + left: 9rem; + right: 9rem; + } + + .xl\:inset-x-40{ + left: 10rem; + right: 10rem; + } + + .xl\:inset-x-44{ + left: 11rem; + right: 11rem; + } + + .xl\:inset-x-48{ + left: 12rem; + right: 12rem; + } + + .xl\:inset-x-52{ + left: 13rem; + right: 13rem; + } + + .xl\:inset-x-56{ + left: 14rem; + right: 14rem; + } + + .xl\:inset-x-60{ + left: 15rem; + right: 15rem; + } + + .xl\:inset-x-64{ + left: 16rem; + right: 16rem; + } + + .xl\:inset-x-72{ + left: 18rem; + right: 18rem; + } + + .xl\:inset-x-80{ + left: 20rem; + right: 20rem; + } + + .xl\:inset-x-96{ + left: 24rem; + right: 24rem; + } + + .xl\:inset-x-auto{ + left: auto; + right: auto; + } + + .xl\:inset-x-px{ + left: 1px; + right: 1px; + } + + .xl\:inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; + } + + .xl\:inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; + } + + .xl\:inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; + } + + .xl\:inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; + } + + .xl\:-inset-x-0{ + left: 0px; + right: 0px; + } + + .xl\:-inset-x-1{ + left: -0.25rem; + right: -0.25rem; + } + + .xl\:-inset-x-2{ + left: -0.5rem; + right: -0.5rem; + } + + .xl\:-inset-x-3{ + left: -0.75rem; + right: -0.75rem; + } + + .xl\:-inset-x-4{ + left: -1rem; + right: -1rem; + } + + .xl\:-inset-x-5{ + left: -1.25rem; + right: -1.25rem; + } + + .xl\:-inset-x-6{ + left: -1.5rem; + right: -1.5rem; + } + + .xl\:-inset-x-7{ + left: -1.75rem; + right: -1.75rem; + } + + .xl\:-inset-x-8{ + left: -2rem; + right: -2rem; + } + + .xl\:-inset-x-9{ + left: -2.25rem; + right: -2.25rem; + } + + .xl\:-inset-x-10{ + left: -2.5rem; + right: -2.5rem; + } + + .xl\:-inset-x-11{ + left: -2.75rem; + right: -2.75rem; + } + + .xl\:-inset-x-12{ + left: -3rem; + right: -3rem; + } + + .xl\:-inset-x-14{ + left: -3.5rem; + right: -3.5rem; + } + + .xl\:-inset-x-16{ + left: -4rem; + right: -4rem; + } + + .xl\:-inset-x-20{ + left: -5rem; + right: -5rem; + } + + .xl\:-inset-x-24{ + left: -6rem; + right: -6rem; + } + + .xl\:-inset-x-28{ + left: -7rem; + right: -7rem; + } + + .xl\:-inset-x-32{ + left: -8rem; + right: -8rem; + } + + .xl\:-inset-x-36{ + left: -9rem; + right: -9rem; + } + + .xl\:-inset-x-40{ + left: -10rem; + right: -10rem; + } + + .xl\:-inset-x-44{ + left: -11rem; + right: -11rem; + } + + .xl\:-inset-x-48{ + left: -12rem; + right: -12rem; + } + + .xl\:-inset-x-52{ + left: -13rem; + right: -13rem; + } + + .xl\:-inset-x-56{ + left: -14rem; + right: -14rem; + } + + .xl\:-inset-x-60{ + left: -15rem; + right: -15rem; + } + + .xl\:-inset-x-64{ + left: -16rem; + right: -16rem; + } + + .xl\:-inset-x-72{ + left: -18rem; + right: -18rem; + } + + .xl\:-inset-x-80{ + left: -20rem; + right: -20rem; + } + + .xl\:-inset-x-96{ + left: -24rem; + right: -24rem; + } + + .xl\:-inset-x-px{ + left: -1px; + right: -1px; + } + + .xl\:-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; + } + + .xl\:-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; + } + + .xl\:-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; + } + + .xl\:-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; + } + + .xl\:inset-x-1\/2{ + left: 50%; + right: 50%; + } + + .xl\:inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; + } + + .xl\:inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; + } + + .xl\:inset-x-1\/4{ + left: 25%; + right: 25%; + } + + .xl\:inset-x-2\/4{ + left: 50%; + right: 50%; + } + + .xl\:inset-x-3\/4{ + left: 75%; + right: 75%; + } + + .xl\:inset-x-full{ + left: 100%; + right: 100%; + } + + .xl\:-inset-x-1\/2{ + left: -50%; + right: -50%; + } + + .xl\:-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; + } + + .xl\:-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; + } + + .xl\:-inset-x-1\/4{ + left: -25%; + right: -25%; + } + + .xl\:-inset-x-2\/4{ + left: -50%; + right: -50%; + } + + .xl\:-inset-x-3\/4{ + left: -75%; + right: -75%; + } + + .xl\:-inset-x-full{ + left: -100%; + right: -100%; + } + + .xl\:inset-x-5vw{ + left: 5vw; + right: 5vw; + } + + .xl\:inset-y-0{ + top: 0px; + bottom: 0px; + } + + .xl\:inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; + } + + .xl\:inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; + } + + .xl\:inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; + } + + .xl\:inset-y-4{ + top: 1rem; + bottom: 1rem; + } + + .xl\:inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; + } + + .xl\:inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; + } + + .xl\:inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; + } + + .xl\:inset-y-8{ + top: 2rem; + bottom: 2rem; + } + + .xl\:inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; + } + + .xl\:inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; + } + + .xl\:inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; + } + + .xl\:inset-y-12{ + top: 3rem; + bottom: 3rem; + } + + .xl\:inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; + } + + .xl\:inset-y-16{ + top: 4rem; + bottom: 4rem; + } + + .xl\:inset-y-20{ + top: 5rem; + bottom: 5rem; + } + + .xl\:inset-y-24{ + top: 6rem; + bottom: 6rem; + } + + .xl\:inset-y-28{ + top: 7rem; + bottom: 7rem; + } + + .xl\:inset-y-32{ + top: 8rem; + bottom: 8rem; + } + + .xl\:inset-y-36{ + top: 9rem; + bottom: 9rem; + } + + .xl\:inset-y-40{ + top: 10rem; + bottom: 10rem; + } + + .xl\:inset-y-44{ + top: 11rem; + bottom: 11rem; + } + + .xl\:inset-y-48{ + top: 12rem; + bottom: 12rem; + } + + .xl\:inset-y-52{ + top: 13rem; + bottom: 13rem; + } + + .xl\:inset-y-56{ + top: 14rem; + bottom: 14rem; + } + + .xl\:inset-y-60{ + top: 15rem; + bottom: 15rem; + } + + .xl\:inset-y-64{ + top: 16rem; + bottom: 16rem; + } + + .xl\:inset-y-72{ + top: 18rem; + bottom: 18rem; + } + + .xl\:inset-y-80{ + top: 20rem; + bottom: 20rem; + } + + .xl\:inset-y-96{ + top: 24rem; + bottom: 24rem; + } + + .xl\:inset-y-auto{ + top: auto; + bottom: auto; + } + + .xl\:inset-y-px{ + top: 1px; + bottom: 1px; + } + + .xl\:inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; + } + + .xl\:inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; + } + + .xl\:inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; + } + + .xl\:inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; + } + + .xl\:-inset-y-0{ + top: 0px; + bottom: 0px; + } + + .xl\:-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; + } + + .xl\:-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; + } + + .xl\:-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; + } + + .xl\:-inset-y-4{ + top: -1rem; + bottom: -1rem; + } + + .xl\:-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; + } + + .xl\:-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; + } + + .xl\:-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; + } + + .xl\:-inset-y-8{ + top: -2rem; + bottom: -2rem; + } + + .xl\:-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; + } + + .xl\:-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; + } + + .xl\:-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; + } + + .xl\:-inset-y-12{ + top: -3rem; + bottom: -3rem; + } + + .xl\:-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; + } + + .xl\:-inset-y-16{ + top: -4rem; + bottom: -4rem; + } + + .xl\:-inset-y-20{ + top: -5rem; + bottom: -5rem; + } + + .xl\:-inset-y-24{ + top: -6rem; + bottom: -6rem; + } + + .xl\:-inset-y-28{ + top: -7rem; + bottom: -7rem; + } + + .xl\:-inset-y-32{ + top: -8rem; + bottom: -8rem; + } + + .xl\:-inset-y-36{ + top: -9rem; + bottom: -9rem; + } + + .xl\:-inset-y-40{ + top: -10rem; + bottom: -10rem; + } + + .xl\:-inset-y-44{ + top: -11rem; + bottom: -11rem; + } + + .xl\:-inset-y-48{ + top: -12rem; + bottom: -12rem; + } + + .xl\:-inset-y-52{ + top: -13rem; + bottom: -13rem; + } + + .xl\:-inset-y-56{ + top: -14rem; + bottom: -14rem; + } + + .xl\:-inset-y-60{ + top: -15rem; + bottom: -15rem; + } + + .xl\:-inset-y-64{ + top: -16rem; + bottom: -16rem; + } + + .xl\:-inset-y-72{ + top: -18rem; + bottom: -18rem; + } + + .xl\:-inset-y-80{ + top: -20rem; + bottom: -20rem; + } + + .xl\:-inset-y-96{ + top: -24rem; + bottom: -24rem; + } + + .xl\:-inset-y-px{ + top: -1px; + bottom: -1px; + } + + .xl\:-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; + } + + .xl\:-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; + } + + .xl\:-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; + } + + .xl\:-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; + } + + .xl\:inset-y-1\/2{ + top: 50%; + bottom: 50%; + } + + .xl\:inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; + } + + .xl\:inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; + } + + .xl\:inset-y-1\/4{ + top: 25%; + bottom: 25%; + } + + .xl\:inset-y-2\/4{ + top: 50%; + bottom: 50%; + } + + .xl\:inset-y-3\/4{ + top: 75%; + bottom: 75%; + } + + .xl\:inset-y-full{ + top: 100%; + bottom: 100%; + } + + .xl\:-inset-y-1\/2{ + top: -50%; + bottom: -50%; + } + + .xl\:-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; + } + + .xl\:-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; + } + + .xl\:-inset-y-1\/4{ + top: -25%; + bottom: -25%; + } + + .xl\:-inset-y-2\/4{ + top: -50%; + bottom: -50%; + } + + .xl\:-inset-y-3\/4{ + top: -75%; + bottom: -75%; + } + + .xl\:-inset-y-full{ + top: -100%; + bottom: -100%; + } + + .xl\:inset-y-5vw{ + top: 5vw; + bottom: 5vw; + } + + .xl\:top-0{ + top: 0px; + } + + .xl\:top-1{ + top: 0.25rem; + } + + .xl\:top-2{ + top: 0.5rem; + } + + .xl\:top-3{ + top: 0.75rem; + } + + .xl\:top-4{ + top: 1rem; + } + + .xl\:top-5{ + top: 1.25rem; + } + + .xl\:top-6{ + top: 1.5rem; + } + + .xl\:top-7{ + top: 1.75rem; + } + + .xl\:top-8{ + top: 2rem; + } + + .xl\:top-9{ + top: 2.25rem; + } + + .xl\:top-10{ + top: 2.5rem; + } + + .xl\:top-11{ + top: 2.75rem; + } + + .xl\:top-12{ + top: 3rem; + } + + .xl\:top-14{ + top: 3.5rem; + } + + .xl\:top-16{ + top: 4rem; + } + + .xl\:top-20{ + top: 5rem; + } + + .xl\:top-24{ + top: 6rem; + } + + .xl\:top-28{ + top: 7rem; + } + + .xl\:top-32{ + top: 8rem; + } + + .xl\:top-36{ + top: 9rem; + } + + .xl\:top-40{ + top: 10rem; + } + + .xl\:top-44{ + top: 11rem; + } + + .xl\:top-48{ + top: 12rem; + } + + .xl\:top-52{ + top: 13rem; + } + + .xl\:top-56{ + top: 14rem; + } + + .xl\:top-60{ + top: 15rem; + } + + .xl\:top-64{ + top: 16rem; + } + + .xl\:top-72{ + top: 18rem; + } + + .xl\:top-80{ + top: 20rem; + } + + .xl\:top-96{ + top: 24rem; + } + + .xl\:top-auto{ + top: auto; + } + + .xl\:top-px{ + top: 1px; + } + + .xl\:top-0\.5{ + top: 0.125rem; + } + + .xl\:top-1\.5{ + top: 0.375rem; + } + + .xl\:top-2\.5{ + top: 0.625rem; + } + + .xl\:top-3\.5{ + top: 0.875rem; + } + + .xl\:-top-0{ + top: 0px; + } + + .xl\:-top-1{ + top: -0.25rem; + } + + .xl\:-top-2{ + top: -0.5rem; + } + + .xl\:-top-3{ + top: -0.75rem; + } + + .xl\:-top-4{ + top: -1rem; + } + + .xl\:-top-5{ + top: -1.25rem; + } + + .xl\:-top-6{ + top: -1.5rem; + } + + .xl\:-top-7{ + top: -1.75rem; + } + + .xl\:-top-8{ + top: -2rem; + } + + .xl\:-top-9{ + top: -2.25rem; + } + + .xl\:-top-10{ + top: -2.5rem; + } + + .xl\:-top-11{ + top: -2.75rem; + } + + .xl\:-top-12{ + top: -3rem; + } + + .xl\:-top-14{ + top: -3.5rem; + } + + .xl\:-top-16{ + top: -4rem; + } + + .xl\:-top-20{ + top: -5rem; + } + + .xl\:-top-24{ + top: -6rem; + } + + .xl\:-top-28{ + top: -7rem; + } + + .xl\:-top-32{ + top: -8rem; + } + + .xl\:-top-36{ + top: -9rem; + } + + .xl\:-top-40{ + top: -10rem; + } + + .xl\:-top-44{ + top: -11rem; + } + + .xl\:-top-48{ + top: -12rem; + } + + .xl\:-top-52{ + top: -13rem; + } + + .xl\:-top-56{ + top: -14rem; + } + + .xl\:-top-60{ + top: -15rem; + } + + .xl\:-top-64{ + top: -16rem; + } + + .xl\:-top-72{ + top: -18rem; + } + + .xl\:-top-80{ + top: -20rem; + } + + .xl\:-top-96{ + top: -24rem; + } + + .xl\:-top-px{ + top: -1px; + } + + .xl\:-top-0\.5{ + top: -0.125rem; + } + + .xl\:-top-1\.5{ + top: -0.375rem; + } + + .xl\:-top-2\.5{ + top: -0.625rem; + } + + .xl\:-top-3\.5{ + top: -0.875rem; + } + + .xl\:top-1\/2{ + top: 50%; + } + + .xl\:top-1\/3{ + top: 33.333333%; + } + + .xl\:top-2\/3{ + top: 66.666667%; + } + + .xl\:top-1\/4{ + top: 25%; + } + + .xl\:top-2\/4{ + top: 50%; + } + + .xl\:top-3\/4{ + top: 75%; + } + + .xl\:top-full{ + top: 100%; + } + + .xl\:-top-1\/2{ + top: -50%; + } + + .xl\:-top-1\/3{ + top: -33.333333%; + } + + .xl\:-top-2\/3{ + top: -66.666667%; + } + + .xl\:-top-1\/4{ + top: -25%; + } + + .xl\:-top-2\/4{ + top: -50%; + } + + .xl\:-top-3\/4{ + top: -75%; + } + + .xl\:-top-full{ + top: -100%; + } + + .xl\:top-5vw{ + top: 5vw; + } + + .xl\:right-0{ + right: 0px; + } + + .xl\:right-1{ + right: 0.25rem; + } + + .xl\:right-2{ + right: 0.5rem; + } + + .xl\:right-3{ + right: 0.75rem; + } + + .xl\:right-4{ + right: 1rem; + } + + .xl\:right-5{ + right: 1.25rem; + } + + .xl\:right-6{ + right: 1.5rem; + } + + .xl\:right-7{ + right: 1.75rem; + } + + .xl\:right-8{ + right: 2rem; + } + + .xl\:right-9{ + right: 2.25rem; + } + + .xl\:right-10{ + right: 2.5rem; + } + + .xl\:right-11{ + right: 2.75rem; + } + + .xl\:right-12{ + right: 3rem; + } + + .xl\:right-14{ + right: 3.5rem; + } + + .xl\:right-16{ + right: 4rem; + } + + .xl\:right-20{ + right: 5rem; + } + + .xl\:right-24{ + right: 6rem; + } + + .xl\:right-28{ + right: 7rem; + } + + .xl\:right-32{ + right: 8rem; + } + + .xl\:right-36{ + right: 9rem; + } + + .xl\:right-40{ + right: 10rem; + } + + .xl\:right-44{ + right: 11rem; + } + + .xl\:right-48{ + right: 12rem; + } + + .xl\:right-52{ + right: 13rem; + } + + .xl\:right-56{ + right: 14rem; + } + + .xl\:right-60{ + right: 15rem; + } + + .xl\:right-64{ + right: 16rem; + } + + .xl\:right-72{ + right: 18rem; + } + + .xl\:right-80{ + right: 20rem; + } + + .xl\:right-96{ + right: 24rem; + } + + .xl\:right-auto{ + right: auto; + } + + .xl\:right-px{ + right: 1px; + } + + .xl\:right-0\.5{ + right: 0.125rem; + } + + .xl\:right-1\.5{ + right: 0.375rem; + } + + .xl\:right-2\.5{ + right: 0.625rem; + } + + .xl\:right-3\.5{ + right: 0.875rem; + } + + .xl\:-right-0{ + right: 0px; + } + + .xl\:-right-1{ + right: -0.25rem; + } + + .xl\:-right-2{ + right: -0.5rem; + } + + .xl\:-right-3{ + right: -0.75rem; + } + + .xl\:-right-4{ + right: -1rem; + } + + .xl\:-right-5{ + right: -1.25rem; + } + + .xl\:-right-6{ + right: -1.5rem; + } + + .xl\:-right-7{ + right: -1.75rem; + } + + .xl\:-right-8{ + right: -2rem; + } + + .xl\:-right-9{ + right: -2.25rem; + } + + .xl\:-right-10{ + right: -2.5rem; + } + + .xl\:-right-11{ + right: -2.75rem; + } + + .xl\:-right-12{ + right: -3rem; + } + + .xl\:-right-14{ + right: -3.5rem; + } + + .xl\:-right-16{ + right: -4rem; + } + + .xl\:-right-20{ + right: -5rem; + } + + .xl\:-right-24{ + right: -6rem; + } + + .xl\:-right-28{ + right: -7rem; + } + + .xl\:-right-32{ + right: -8rem; + } + + .xl\:-right-36{ + right: -9rem; + } + + .xl\:-right-40{ + right: -10rem; + } + + .xl\:-right-44{ + right: -11rem; + } + + .xl\:-right-48{ + right: -12rem; + } + + .xl\:-right-52{ + right: -13rem; + } + + .xl\:-right-56{ + right: -14rem; + } + + .xl\:-right-60{ + right: -15rem; + } + + .xl\:-right-64{ + right: -16rem; + } + + .xl\:-right-72{ + right: -18rem; + } + + .xl\:-right-80{ + right: -20rem; + } + + .xl\:-right-96{ + right: -24rem; + } + + .xl\:-right-px{ + right: -1px; + } + + .xl\:-right-0\.5{ + right: -0.125rem; + } + + .xl\:-right-1\.5{ + right: -0.375rem; + } + + .xl\:-right-2\.5{ + right: -0.625rem; + } + + .xl\:-right-3\.5{ + right: -0.875rem; + } + + .xl\:right-1\/2{ + right: 50%; + } + + .xl\:right-1\/3{ + right: 33.333333%; + } + + .xl\:right-2\/3{ + right: 66.666667%; + } + + .xl\:right-1\/4{ + right: 25%; + } + + .xl\:right-2\/4{ + right: 50%; + } + + .xl\:right-3\/4{ + right: 75%; + } + + .xl\:right-full{ + right: 100%; + } + + .xl\:-right-1\/2{ + right: -50%; + } + + .xl\:-right-1\/3{ + right: -33.333333%; + } + + .xl\:-right-2\/3{ + right: -66.666667%; + } + + .xl\:-right-1\/4{ + right: -25%; + } + + .xl\:-right-2\/4{ + right: -50%; + } + + .xl\:-right-3\/4{ + right: -75%; + } + + .xl\:-right-full{ + right: -100%; + } + + .xl\:right-5vw{ + right: 5vw; + } + + .xl\:bottom-0{ + bottom: 0px; + } + + .xl\:bottom-1{ + bottom: 0.25rem; + } + + .xl\:bottom-2{ + bottom: 0.5rem; + } + + .xl\:bottom-3{ + bottom: 0.75rem; + } + + .xl\:bottom-4{ + bottom: 1rem; + } + + .xl\:bottom-5{ + bottom: 1.25rem; + } + + .xl\:bottom-6{ + bottom: 1.5rem; + } + + .xl\:bottom-7{ + bottom: 1.75rem; + } + + .xl\:bottom-8{ + bottom: 2rem; + } + + .xl\:bottom-9{ + bottom: 2.25rem; + } + + .xl\:bottom-10{ + bottom: 2.5rem; + } + + .xl\:bottom-11{ + bottom: 2.75rem; + } + + .xl\:bottom-12{ + bottom: 3rem; + } + + .xl\:bottom-14{ + bottom: 3.5rem; + } + + .xl\:bottom-16{ + bottom: 4rem; + } + + .xl\:bottom-20{ + bottom: 5rem; + } + + .xl\:bottom-24{ + bottom: 6rem; + } + + .xl\:bottom-28{ + bottom: 7rem; + } + + .xl\:bottom-32{ + bottom: 8rem; + } + + .xl\:bottom-36{ + bottom: 9rem; + } + + .xl\:bottom-40{ + bottom: 10rem; + } + + .xl\:bottom-44{ + bottom: 11rem; + } + + .xl\:bottom-48{ + bottom: 12rem; + } + + .xl\:bottom-52{ + bottom: 13rem; + } + + .xl\:bottom-56{ + bottom: 14rem; + } + + .xl\:bottom-60{ + bottom: 15rem; + } + + .xl\:bottom-64{ + bottom: 16rem; + } + + .xl\:bottom-72{ + bottom: 18rem; + } + + .xl\:bottom-80{ + bottom: 20rem; + } + + .xl\:bottom-96{ + bottom: 24rem; + } + + .xl\:bottom-auto{ + bottom: auto; + } + + .xl\:bottom-px{ + bottom: 1px; + } + + .xl\:bottom-0\.5{ + bottom: 0.125rem; + } + + .xl\:bottom-1\.5{ + bottom: 0.375rem; + } + + .xl\:bottom-2\.5{ + bottom: 0.625rem; + } + + .xl\:bottom-3\.5{ + bottom: 0.875rem; + } + + .xl\:-bottom-0{ + bottom: 0px; + } + + .xl\:-bottom-1{ + bottom: -0.25rem; + } + + .xl\:-bottom-2{ + bottom: -0.5rem; + } + + .xl\:-bottom-3{ + bottom: -0.75rem; + } + + .xl\:-bottom-4{ + bottom: -1rem; + } + + .xl\:-bottom-5{ + bottom: -1.25rem; + } + + .xl\:-bottom-6{ + bottom: -1.5rem; + } + + .xl\:-bottom-7{ + bottom: -1.75rem; + } + + .xl\:-bottom-8{ + bottom: -2rem; + } + + .xl\:-bottom-9{ + bottom: -2.25rem; + } + + .xl\:-bottom-10{ + bottom: -2.5rem; + } + + .xl\:-bottom-11{ + bottom: -2.75rem; + } + + .xl\:-bottom-12{ + bottom: -3rem; + } + + .xl\:-bottom-14{ + bottom: -3.5rem; + } + + .xl\:-bottom-16{ + bottom: -4rem; + } + + .xl\:-bottom-20{ + bottom: -5rem; + } + + .xl\:-bottom-24{ + bottom: -6rem; + } + + .xl\:-bottom-28{ + bottom: -7rem; + } + + .xl\:-bottom-32{ + bottom: -8rem; + } + + .xl\:-bottom-36{ + bottom: -9rem; + } + + .xl\:-bottom-40{ + bottom: -10rem; + } + + .xl\:-bottom-44{ + bottom: -11rem; + } + + .xl\:-bottom-48{ + bottom: -12rem; + } + + .xl\:-bottom-52{ + bottom: -13rem; + } + + .xl\:-bottom-56{ + bottom: -14rem; + } + + .xl\:-bottom-60{ + bottom: -15rem; + } + + .xl\:-bottom-64{ + bottom: -16rem; + } + + .xl\:-bottom-72{ + bottom: -18rem; + } + + .xl\:-bottom-80{ + bottom: -20rem; + } + + .xl\:-bottom-96{ + bottom: -24rem; + } + + .xl\:-bottom-px{ + bottom: -1px; + } + + .xl\:-bottom-0\.5{ + bottom: -0.125rem; + } + + .xl\:-bottom-1\.5{ + bottom: -0.375rem; + } + + .xl\:-bottom-2\.5{ + bottom: -0.625rem; + } + + .xl\:-bottom-3\.5{ + bottom: -0.875rem; + } + + .xl\:bottom-1\/2{ + bottom: 50%; + } + + .xl\:bottom-1\/3{ + bottom: 33.333333%; + } + + .xl\:bottom-2\/3{ + bottom: 66.666667%; + } + + .xl\:bottom-1\/4{ + bottom: 25%; + } + + .xl\:bottom-2\/4{ + bottom: 50%; + } + + .xl\:bottom-3\/4{ + bottom: 75%; + } + + .xl\:bottom-full{ + bottom: 100%; + } + + .xl\:-bottom-1\/2{ + bottom: -50%; + } + + .xl\:-bottom-1\/3{ + bottom: -33.333333%; + } + + .xl\:-bottom-2\/3{ + bottom: -66.666667%; + } + + .xl\:-bottom-1\/4{ + bottom: -25%; + } + + .xl\:-bottom-2\/4{ + bottom: -50%; + } + + .xl\:-bottom-3\/4{ + bottom: -75%; + } + + .xl\:-bottom-full{ + bottom: -100%; + } + + .xl\:bottom-5vw{ + bottom: 5vw; + } + + .xl\:left-0{ + left: 0px; + } + + .xl\:left-1{ + left: 0.25rem; + } + + .xl\:left-2{ + left: 0.5rem; + } + + .xl\:left-3{ + left: 0.75rem; + } + + .xl\:left-4{ + left: 1rem; + } + + .xl\:left-5{ + left: 1.25rem; + } + + .xl\:left-6{ + left: 1.5rem; + } + + .xl\:left-7{ + left: 1.75rem; + } + + .xl\:left-8{ + left: 2rem; + } + + .xl\:left-9{ + left: 2.25rem; + } + + .xl\:left-10{ + left: 2.5rem; + } + + .xl\:left-11{ + left: 2.75rem; + } + + .xl\:left-12{ + left: 3rem; + } + + .xl\:left-14{ + left: 3.5rem; + } + + .xl\:left-16{ + left: 4rem; + } + + .xl\:left-20{ + left: 5rem; + } + + .xl\:left-24{ + left: 6rem; + } + + .xl\:left-28{ + left: 7rem; + } + + .xl\:left-32{ + left: 8rem; + } + + .xl\:left-36{ + left: 9rem; + } + + .xl\:left-40{ + left: 10rem; + } + + .xl\:left-44{ + left: 11rem; + } + + .xl\:left-48{ + left: 12rem; + } + + .xl\:left-52{ + left: 13rem; + } + + .xl\:left-56{ + left: 14rem; + } + + .xl\:left-60{ + left: 15rem; + } + + .xl\:left-64{ + left: 16rem; + } + + .xl\:left-72{ + left: 18rem; + } + + .xl\:left-80{ + left: 20rem; + } + + .xl\:left-96{ + left: 24rem; + } + + .xl\:left-auto{ + left: auto; + } + + .xl\:left-px{ + left: 1px; + } + + .xl\:left-0\.5{ + left: 0.125rem; + } + + .xl\:left-1\.5{ + left: 0.375rem; + } + + .xl\:left-2\.5{ + left: 0.625rem; + } + + .xl\:left-3\.5{ + left: 0.875rem; + } + + .xl\:-left-0{ + left: 0px; + } + + .xl\:-left-1{ + left: -0.25rem; + } + + .xl\:-left-2{ + left: -0.5rem; + } + + .xl\:-left-3{ + left: -0.75rem; + } + + .xl\:-left-4{ + left: -1rem; + } + + .xl\:-left-5{ + left: -1.25rem; + } + + .xl\:-left-6{ + left: -1.5rem; + } + + .xl\:-left-7{ + left: -1.75rem; + } + + .xl\:-left-8{ + left: -2rem; + } + + .xl\:-left-9{ + left: -2.25rem; + } + + .xl\:-left-10{ + left: -2.5rem; + } + + .xl\:-left-11{ + left: -2.75rem; + } + + .xl\:-left-12{ + left: -3rem; + } + + .xl\:-left-14{ + left: -3.5rem; + } + + .xl\:-left-16{ + left: -4rem; + } + + .xl\:-left-20{ + left: -5rem; + } + + .xl\:-left-24{ + left: -6rem; + } + + .xl\:-left-28{ + left: -7rem; + } + + .xl\:-left-32{ + left: -8rem; + } + + .xl\:-left-36{ + left: -9rem; + } + + .xl\:-left-40{ + left: -10rem; + } + + .xl\:-left-44{ + left: -11rem; + } + + .xl\:-left-48{ + left: -12rem; + } + + .xl\:-left-52{ + left: -13rem; + } + + .xl\:-left-56{ + left: -14rem; + } + + .xl\:-left-60{ + left: -15rem; + } + + .xl\:-left-64{ + left: -16rem; + } + + .xl\:-left-72{ + left: -18rem; + } + + .xl\:-left-80{ + left: -20rem; + } + + .xl\:-left-96{ + left: -24rem; + } + + .xl\:-left-px{ + left: -1px; + } + + .xl\:-left-0\.5{ + left: -0.125rem; + } + + .xl\:-left-1\.5{ + left: -0.375rem; + } + + .xl\:-left-2\.5{ + left: -0.625rem; + } + + .xl\:-left-3\.5{ + left: -0.875rem; + } + + .xl\:left-1\/2{ + left: 50%; + } + + .xl\:left-1\/3{ + left: 33.333333%; + } + + .xl\:left-2\/3{ + left: 66.666667%; + } + + .xl\:left-1\/4{ + left: 25%; + } + + .xl\:left-2\/4{ + left: 50%; + } + + .xl\:left-3\/4{ + left: 75%; + } + + .xl\:left-full{ + left: 100%; + } + + .xl\:-left-1\/2{ + left: -50%; + } + + .xl\:-left-1\/3{ + left: -33.333333%; + } + + .xl\:-left-2\/3{ + left: -66.666667%; + } + + .xl\:-left-1\/4{ + left: -25%; + } + + .xl\:-left-2\/4{ + left: -50%; + } + + .xl\:-left-3\/4{ + left: -75%; + } + + .xl\:-left-full{ + left: -100%; + } + + .xl\:left-5vw{ + left: 5vw; + } + + .xl\:isolate{ + isolation: isolate; + } + + .xl\:isolation-auto{ + isolation: auto; + } + + .xl\:z-0{ + z-index: 0; + } + + .xl\:z-10{ + z-index: 10; + } + + .xl\:z-20{ + z-index: 20; + } + + .xl\:z-30{ + z-index: 30; + } + + .xl\:z-40{ + z-index: 40; + } + + .xl\:z-50{ + z-index: 50; + } + + .xl\:z-auto{ + z-index: auto; + } + + .xl\:focus-within\:z-0:focus-within{ + z-index: 0; + } + + .xl\:focus-within\:z-10:focus-within{ + z-index: 10; + } + + .xl\:focus-within\:z-20:focus-within{ + z-index: 20; + } + + .xl\:focus-within\:z-30:focus-within{ + z-index: 30; + } + + .xl\:focus-within\:z-40:focus-within{ + z-index: 40; + } + + .xl\:focus-within\:z-50:focus-within{ + z-index: 50; + } + + .xl\:focus-within\:z-auto:focus-within{ + z-index: auto; + } + + .xl\:focus\:z-0:focus{ + z-index: 0; + } + + .xl\:focus\:z-10:focus{ + z-index: 10; + } + + .xl\:focus\:z-20:focus{ + z-index: 20; + } + + .xl\:focus\:z-30:focus{ + z-index: 30; + } + + .xl\:focus\:z-40:focus{ + z-index: 40; + } + + .xl\:focus\:z-50:focus{ + z-index: 50; + } + + .xl\:focus\:z-auto:focus{ + z-index: auto; + } + + .xl\:order-1{ + order: 1; + } + + .xl\:order-2{ + order: 2; + } + + .xl\:order-3{ + order: 3; + } + + .xl\:order-4{ + order: 4; + } + + .xl\:order-5{ + order: 5; + } + + .xl\:order-6{ + order: 6; + } + + .xl\:order-7{ + order: 7; + } + + .xl\:order-8{ + order: 8; + } + + .xl\:order-9{ + order: 9; + } + + .xl\:order-10{ + order: 10; + } + + .xl\:order-11{ + order: 11; + } + + .xl\:order-12{ + order: 12; + } + + .xl\:order-first{ + order: -9999; + } + + .xl\:order-last{ + order: 9999; + } + + .xl\:order-none{ + order: 0; + } + + .xl\:col-auto{ + grid-column: auto; + } + + .xl\:col-span-1{ + grid-column: span 1 / span 1; + } + + .xl\:col-span-2{ + grid-column: span 2 / span 2; + } + + .xl\:col-span-3{ + grid-column: span 3 / span 3; + } + + .xl\:col-span-4{ + grid-column: span 4 / span 4; + } + + .xl\:col-span-5{ + grid-column: span 5 / span 5; + } + + .xl\:col-span-6{ + grid-column: span 6 / span 6; + } + + .xl\:col-span-7{ + grid-column: span 7 / span 7; + } + + .xl\:col-span-8{ + grid-column: span 8 / span 8; + } + + .xl\:col-span-9{ + grid-column: span 9 / span 9; + } + + .xl\:col-span-10{ + grid-column: span 10 / span 10; + } + + .xl\:col-span-11{ + grid-column: span 11 / span 11; + } + + .xl\:col-span-12{ + grid-column: span 12 / span 12; + } + + .xl\:col-span-full{ + grid-column: 1 / -1; + } + + .xl\:col-start-1{ + grid-column-start: 1; + } + + .xl\:col-start-2{ + grid-column-start: 2; + } + + .xl\:col-start-3{ + grid-column-start: 3; + } + + .xl\:col-start-4{ + grid-column-start: 4; + } + + .xl\:col-start-5{ + grid-column-start: 5; + } + + .xl\:col-start-6{ + grid-column-start: 6; + } + + .xl\:col-start-7{ + grid-column-start: 7; + } + + .xl\:col-start-8{ + grid-column-start: 8; + } + + .xl\:col-start-9{ + grid-column-start: 9; + } + + .xl\:col-start-10{ + grid-column-start: 10; + } + + .xl\:col-start-11{ + grid-column-start: 11; + } + + .xl\:col-start-12{ + grid-column-start: 12; + } + + .xl\:col-start-13{ + grid-column-start: 13; + } + + .xl\:col-start-auto{ + grid-column-start: auto; + } + + .xl\:col-end-1{ + grid-column-end: 1; + } + + .xl\:col-end-2{ + grid-column-end: 2; + } + + .xl\:col-end-3{ + grid-column-end: 3; + } + + .xl\:col-end-4{ + grid-column-end: 4; + } + + .xl\:col-end-5{ + grid-column-end: 5; + } + + .xl\:col-end-6{ + grid-column-end: 6; + } + + .xl\:col-end-7{ + grid-column-end: 7; + } + + .xl\:col-end-8{ + grid-column-end: 8; + } + + .xl\:col-end-9{ + grid-column-end: 9; + } + + .xl\:col-end-10{ + grid-column-end: 10; + } + + .xl\:col-end-11{ + grid-column-end: 11; + } + + .xl\:col-end-12{ + grid-column-end: 12; + } + + .xl\:col-end-13{ + grid-column-end: 13; + } + + .xl\:col-end-auto{ + grid-column-end: auto; + } + + .xl\:row-auto{ + grid-row: auto; + } + + .xl\:row-span-1{ + grid-row: span 1 / span 1; + } + + .xl\:row-span-2{ + grid-row: span 2 / span 2; + } + + .xl\:row-span-3{ + grid-row: span 3 / span 3; + } + + .xl\:row-span-4{ + grid-row: span 4 / span 4; + } + + .xl\:row-span-5{ + grid-row: span 5 / span 5; + } + + .xl\:row-span-6{ + grid-row: span 6 / span 6; + } + + .xl\:row-span-full{ + grid-row: 1 / -1; + } + + .xl\:row-start-1{ + grid-row-start: 1; + } + + .xl\:row-start-2{ + grid-row-start: 2; + } + + .xl\:row-start-3{ + grid-row-start: 3; + } + + .xl\:row-start-4{ + grid-row-start: 4; + } + + .xl\:row-start-5{ + grid-row-start: 5; + } + + .xl\:row-start-6{ + grid-row-start: 6; + } + + .xl\:row-start-7{ + grid-row-start: 7; + } + + .xl\:row-start-auto{ + grid-row-start: auto; + } + + .xl\:row-end-1{ + grid-row-end: 1; + } + + .xl\:row-end-2{ + grid-row-end: 2; + } + + .xl\:row-end-3{ + grid-row-end: 3; + } + + .xl\:row-end-4{ + grid-row-end: 4; + } + + .xl\:row-end-5{ + grid-row-end: 5; + } + + .xl\:row-end-6{ + grid-row-end: 6; + } + + .xl\:row-end-7{ + grid-row-end: 7; + } + + .xl\:row-end-auto{ + grid-row-end: auto; + } + + .xl\:float-right{ + float: right; + } + + .xl\:float-left{ + float: left; + } + + .xl\:float-none{ + float: none; + } + + .xl\:clear-left{ + clear: left; + } + + .xl\:clear-right{ + clear: right; + } + + .xl\:clear-both{ + clear: both; + } + + .xl\:clear-none{ + clear: none; + } + + .xl\:m-0{ + margin: 0px; + } + + .xl\:m-1{ + margin: 0.25rem; + } + + .xl\:m-2{ + margin: 0.5rem; + } + + .xl\:m-3{ + margin: 0.75rem; + } + + .xl\:m-4{ + margin: 1rem; + } + + .xl\:m-5{ + margin: 1.25rem; + } + + .xl\:m-6{ + margin: 1.5rem; + } + + .xl\:m-7{ + margin: 1.75rem; + } + + .xl\:m-8{ + margin: 2rem; + } + + .xl\:m-9{ + margin: 2.25rem; + } + + .xl\:m-10{ + margin: 2.5rem; + } + + .xl\:m-11{ + margin: 2.75rem; + } + + .xl\:m-12{ + margin: 3rem; + } + + .xl\:m-14{ + margin: 3.5rem; + } + + .xl\:m-16{ + margin: 4rem; + } + + .xl\:m-20{ + margin: 5rem; + } + + .xl\:m-24{ + margin: 6rem; + } + + .xl\:m-28{ + margin: 7rem; + } + + .xl\:m-32{ + margin: 8rem; + } + + .xl\:m-36{ + margin: 9rem; + } + + .xl\:m-40{ + margin: 10rem; + } + + .xl\:m-44{ + margin: 11rem; + } + + .xl\:m-48{ + margin: 12rem; + } + + .xl\:m-52{ + margin: 13rem; + } + + .xl\:m-56{ + margin: 14rem; + } + + .xl\:m-60{ + margin: 15rem; + } + + .xl\:m-64{ + margin: 16rem; + } + + .xl\:m-72{ + margin: 18rem; + } + + .xl\:m-80{ + margin: 20rem; + } + + .xl\:m-96{ + margin: 24rem; + } + + .xl\:m-auto{ + margin: auto; + } + + .xl\:m-px{ + margin: 1px; + } + + .xl\:m-0\.5{ + margin: 0.125rem; + } + + .xl\:m-1\.5{ + margin: 0.375rem; + } + + .xl\:m-2\.5{ + margin: 0.625rem; + } + + .xl\:m-3\.5{ + margin: 0.875rem; + } + + .xl\:-m-0{ + margin: 0px; + } + + .xl\:-m-1{ + margin: -0.25rem; + } + + .xl\:-m-2{ + margin: -0.5rem; + } + + .xl\:-m-3{ + margin: -0.75rem; + } + + .xl\:-m-4{ + margin: -1rem; + } + + .xl\:-m-5{ + margin: -1.25rem; + } + + .xl\:-m-6{ + margin: -1.5rem; + } + + .xl\:-m-7{ + margin: -1.75rem; + } + + .xl\:-m-8{ + margin: -2rem; + } + + .xl\:-m-9{ + margin: -2.25rem; + } + + .xl\:-m-10{ + margin: -2.5rem; + } + + .xl\:-m-11{ + margin: -2.75rem; + } + + .xl\:-m-12{ + margin: -3rem; + } + + .xl\:-m-14{ + margin: -3.5rem; + } + + .xl\:-m-16{ + margin: -4rem; + } + + .xl\:-m-20{ + margin: -5rem; + } + + .xl\:-m-24{ + margin: -6rem; + } + + .xl\:-m-28{ + margin: -7rem; + } + + .xl\:-m-32{ + margin: -8rem; + } + + .xl\:-m-36{ + margin: -9rem; + } + + .xl\:-m-40{ + margin: -10rem; + } + + .xl\:-m-44{ + margin: -11rem; + } + + .xl\:-m-48{ + margin: -12rem; + } + + .xl\:-m-52{ + margin: -13rem; + } + + .xl\:-m-56{ + margin: -14rem; + } + + .xl\:-m-60{ + margin: -15rem; + } + + .xl\:-m-64{ + margin: -16rem; + } + + .xl\:-m-72{ + margin: -18rem; + } + + .xl\:-m-80{ + margin: -20rem; + } + + .xl\:-m-96{ + margin: -24rem; + } + + .xl\:-m-px{ + margin: -1px; + } + + .xl\:-m-0\.5{ + margin: -0.125rem; + } + + .xl\:-m-1\.5{ + margin: -0.375rem; + } + + .xl\:-m-2\.5{ + margin: -0.625rem; + } + + .xl\:-m-3\.5{ + margin: -0.875rem; + } + + .xl\:mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .xl\:mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .xl\:mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .xl\:mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .xl\:mx-4{ + margin-left: 1rem; + margin-right: 1rem; + } + + .xl\:mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .xl\:mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .xl\:mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .xl\:mx-8{ + margin-left: 2rem; + margin-right: 2rem; + } + + .xl\:mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .xl\:mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .xl\:mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .xl\:mx-12{ + margin-left: 3rem; + margin-right: 3rem; + } + + .xl\:mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .xl\:mx-16{ + margin-left: 4rem; + margin-right: 4rem; + } + + .xl\:mx-20{ + margin-left: 5rem; + margin-right: 5rem; + } + + .xl\:mx-24{ + margin-left: 6rem; + margin-right: 6rem; + } + + .xl\:mx-28{ + margin-left: 7rem; + margin-right: 7rem; + } + + .xl\:mx-32{ + margin-left: 8rem; + margin-right: 8rem; + } + + .xl\:mx-36{ + margin-left: 9rem; + margin-right: 9rem; + } + + .xl\:mx-40{ + margin-left: 10rem; + margin-right: 10rem; + } + + .xl\:mx-44{ + margin-left: 11rem; + margin-right: 11rem; + } + + .xl\:mx-48{ + margin-left: 12rem; + margin-right: 12rem; + } + + .xl\:mx-52{ + margin-left: 13rem; + margin-right: 13rem; + } + + .xl\:mx-56{ + margin-left: 14rem; + margin-right: 14rem; + } + + .xl\:mx-60{ + margin-left: 15rem; + margin-right: 15rem; + } + + .xl\:mx-64{ + margin-left: 16rem; + margin-right: 16rem; + } + + .xl\:mx-72{ + margin-left: 18rem; + margin-right: 18rem; + } + + .xl\:mx-80{ + margin-left: 20rem; + margin-right: 20rem; + } + + .xl\:mx-96{ + margin-left: 24rem; + margin-right: 24rem; + } + + .xl\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + + .xl\:mx-px{ + margin-left: 1px; + margin-right: 1px; + } + + .xl\:mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .xl\:mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .xl\:mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .xl\:mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .xl\:-mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .xl\:-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .xl\:-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .xl\:-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .xl\:-mx-4{ + margin-left: -1rem; + margin-right: -1rem; + } + + .xl\:-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .xl\:-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .xl\:-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .xl\:-mx-8{ + margin-left: -2rem; + margin-right: -2rem; + } + + .xl\:-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .xl\:-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .xl\:-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .xl\:-mx-12{ + margin-left: -3rem; + margin-right: -3rem; + } + + .xl\:-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .xl\:-mx-16{ + margin-left: -4rem; + margin-right: -4rem; + } + + .xl\:-mx-20{ + margin-left: -5rem; + margin-right: -5rem; + } + + .xl\:-mx-24{ + margin-left: -6rem; + margin-right: -6rem; + } + + .xl\:-mx-28{ + margin-left: -7rem; + margin-right: -7rem; + } + + .xl\:-mx-32{ + margin-left: -8rem; + margin-right: -8rem; + } + + .xl\:-mx-36{ + margin-left: -9rem; + margin-right: -9rem; + } + + .xl\:-mx-40{ + margin-left: -10rem; + margin-right: -10rem; + } + + .xl\:-mx-44{ + margin-left: -11rem; + margin-right: -11rem; + } + + .xl\:-mx-48{ + margin-left: -12rem; + margin-right: -12rem; + } + + .xl\:-mx-52{ + margin-left: -13rem; + margin-right: -13rem; + } + + .xl\:-mx-56{ + margin-left: -14rem; + margin-right: -14rem; + } + + .xl\:-mx-60{ + margin-left: -15rem; + margin-right: -15rem; + } + + .xl\:-mx-64{ + margin-left: -16rem; + margin-right: -16rem; + } + + .xl\:-mx-72{ + margin-left: -18rem; + margin-right: -18rem; + } + + .xl\:-mx-80{ + margin-left: -20rem; + margin-right: -20rem; + } + + .xl\:-mx-96{ + margin-left: -24rem; + margin-right: -24rem; + } + + .xl\:-mx-px{ + margin-left: -1px; + margin-right: -1px; + } + + .xl\:-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .xl\:-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .xl\:-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .xl\:-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .xl\:my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .xl\:my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .xl\:my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .xl\:my-4{ + margin-top: 1rem; + margin-bottom: 1rem; + } + + .xl\:my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .xl\:my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .xl\:my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .xl\:my-8{ + margin-top: 2rem; + margin-bottom: 2rem; + } + + .xl\:my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .xl\:my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .xl\:my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .xl\:my-12{ + margin-top: 3rem; + margin-bottom: 3rem; + } + + .xl\:my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .xl\:my-16{ + margin-top: 4rem; + margin-bottom: 4rem; + } + + .xl\:my-20{ + margin-top: 5rem; + margin-bottom: 5rem; + } + + .xl\:my-24{ + margin-top: 6rem; + margin-bottom: 6rem; + } + + .xl\:my-28{ + margin-top: 7rem; + margin-bottom: 7rem; + } + + .xl\:my-32{ + margin-top: 8rem; + margin-bottom: 8rem; + } + + .xl\:my-36{ + margin-top: 9rem; + margin-bottom: 9rem; + } + + .xl\:my-40{ + margin-top: 10rem; + margin-bottom: 10rem; + } + + .xl\:my-44{ + margin-top: 11rem; + margin-bottom: 11rem; + } + + .xl\:my-48{ + margin-top: 12rem; + margin-bottom: 12rem; + } + + .xl\:my-52{ + margin-top: 13rem; + margin-bottom: 13rem; + } + + .xl\:my-56{ + margin-top: 14rem; + margin-bottom: 14rem; + } + + .xl\:my-60{ + margin-top: 15rem; + margin-bottom: 15rem; + } + + .xl\:my-64{ + margin-top: 16rem; + margin-bottom: 16rem; + } + + .xl\:my-72{ + margin-top: 18rem; + margin-bottom: 18rem; + } + + .xl\:my-80{ + margin-top: 20rem; + margin-bottom: 20rem; + } + + .xl\:my-96{ + margin-top: 24rem; + margin-bottom: 24rem; + } + + .xl\:my-auto{ + margin-top: auto; + margin-bottom: auto; + } + + .xl\:my-px{ + margin-top: 1px; + margin-bottom: 1px; + } + + .xl\:my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .xl\:my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .xl\:my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .xl\:my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .xl\:-my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .xl\:-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .xl\:-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .xl\:-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; + } + + .xl\:-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .xl\:-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .xl\:-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .xl\:-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; + } + + .xl\:-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .xl\:-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .xl\:-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .xl\:-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; + } + + .xl\:-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .xl\:-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; + } + + .xl\:-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; + } + + .xl\:-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; + } + + .xl\:-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; + } + + .xl\:-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; + } + + .xl\:-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; + } + + .xl\:-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; + } + + .xl\:-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; + } + + .xl\:-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; + } + + .xl\:-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; + } + + .xl\:-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; + } + + .xl\:-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; + } + + .xl\:-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; + } + + .xl\:-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; + } + + .xl\:-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; + } + + .xl\:-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; + } + + .xl\:-my-px{ + margin-top: -1px; + margin-bottom: -1px; + } + + .xl\:-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .xl\:-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .xl\:-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .xl\:-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .xl\:mt-0{ + margin-top: 0px; + } + + .xl\:mt-1{ + margin-top: 0.25rem; + } + + .xl\:mt-2{ + margin-top: 0.5rem; + } + + .xl\:mt-3{ + margin-top: 0.75rem; + } + + .xl\:mt-4{ + margin-top: 1rem; + } + + .xl\:mt-5{ + margin-top: 1.25rem; + } + + .xl\:mt-6{ + margin-top: 1.5rem; + } + + .xl\:mt-7{ + margin-top: 1.75rem; + } + + .xl\:mt-8{ + margin-top: 2rem; + } + + .xl\:mt-9{ + margin-top: 2.25rem; + } + + .xl\:mt-10{ + margin-top: 2.5rem; + } + + .xl\:mt-11{ + margin-top: 2.75rem; + } + + .xl\:mt-12{ + margin-top: 3rem; + } + + .xl\:mt-14{ + margin-top: 3.5rem; + } + + .xl\:mt-16{ + margin-top: 4rem; + } + + .xl\:mt-20{ + margin-top: 5rem; + } + + .xl\:mt-24{ + margin-top: 6rem; + } + + .xl\:mt-28{ + margin-top: 7rem; + } + + .xl\:mt-32{ + margin-top: 8rem; + } + + .xl\:mt-36{ + margin-top: 9rem; + } + + .xl\:mt-40{ + margin-top: 10rem; + } + + .xl\:mt-44{ + margin-top: 11rem; + } + + .xl\:mt-48{ + margin-top: 12rem; + } + + .xl\:mt-52{ + margin-top: 13rem; + } + + .xl\:mt-56{ + margin-top: 14rem; + } + + .xl\:mt-60{ + margin-top: 15rem; + } + + .xl\:mt-64{ + margin-top: 16rem; + } + + .xl\:mt-72{ + margin-top: 18rem; + } + + .xl\:mt-80{ + margin-top: 20rem; + } + + .xl\:mt-96{ + margin-top: 24rem; + } + + .xl\:mt-auto{ + margin-top: auto; + } + + .xl\:mt-px{ + margin-top: 1px; + } + + .xl\:mt-0\.5{ + margin-top: 0.125rem; + } + + .xl\:mt-1\.5{ + margin-top: 0.375rem; + } + + .xl\:mt-2\.5{ + margin-top: 0.625rem; + } + + .xl\:mt-3\.5{ + margin-top: 0.875rem; + } + + .xl\:-mt-0{ + margin-top: 0px; + } + + .xl\:-mt-1{ + margin-top: -0.25rem; + } + + .xl\:-mt-2{ + margin-top: -0.5rem; + } + + .xl\:-mt-3{ + margin-top: -0.75rem; + } + + .xl\:-mt-4{ + margin-top: -1rem; + } + + .xl\:-mt-5{ + margin-top: -1.25rem; + } + + .xl\:-mt-6{ + margin-top: -1.5rem; + } + + .xl\:-mt-7{ + margin-top: -1.75rem; + } + + .xl\:-mt-8{ + margin-top: -2rem; + } + + .xl\:-mt-9{ + margin-top: -2.25rem; + } + + .xl\:-mt-10{ + margin-top: -2.5rem; + } + + .xl\:-mt-11{ + margin-top: -2.75rem; + } + + .xl\:-mt-12{ + margin-top: -3rem; + } + + .xl\:-mt-14{ + margin-top: -3.5rem; + } + + .xl\:-mt-16{ + margin-top: -4rem; + } + + .xl\:-mt-20{ + margin-top: -5rem; + } + + .xl\:-mt-24{ + margin-top: -6rem; + } + + .xl\:-mt-28{ + margin-top: -7rem; + } + + .xl\:-mt-32{ + margin-top: -8rem; + } + + .xl\:-mt-36{ + margin-top: -9rem; + } + + .xl\:-mt-40{ + margin-top: -10rem; + } + + .xl\:-mt-44{ + margin-top: -11rem; + } + + .xl\:-mt-48{ + margin-top: -12rem; + } + + .xl\:-mt-52{ + margin-top: -13rem; + } + + .xl\:-mt-56{ + margin-top: -14rem; + } + + .xl\:-mt-60{ + margin-top: -15rem; + } + + .xl\:-mt-64{ + margin-top: -16rem; + } + + .xl\:-mt-72{ + margin-top: -18rem; + } + + .xl\:-mt-80{ + margin-top: -20rem; + } + + .xl\:-mt-96{ + margin-top: -24rem; + } + + .xl\:-mt-px{ + margin-top: -1px; + } + + .xl\:-mt-0\.5{ + margin-top: -0.125rem; + } + + .xl\:-mt-1\.5{ + margin-top: -0.375rem; + } + + .xl\:-mt-2\.5{ + margin-top: -0.625rem; + } + + .xl\:-mt-3\.5{ + margin-top: -0.875rem; + } + + .xl\:mr-0{ + margin-right: 0px; + } + + .xl\:mr-1{ + margin-right: 0.25rem; + } + + .xl\:mr-2{ + margin-right: 0.5rem; + } + + .xl\:mr-3{ + margin-right: 0.75rem; + } + + .xl\:mr-4{ + margin-right: 1rem; + } + + .xl\:mr-5{ + margin-right: 1.25rem; + } + + .xl\:mr-6{ + margin-right: 1.5rem; + } + + .xl\:mr-7{ + margin-right: 1.75rem; + } + + .xl\:mr-8{ + margin-right: 2rem; + } + + .xl\:mr-9{ + margin-right: 2.25rem; + } + + .xl\:mr-10{ + margin-right: 2.5rem; + } + + .xl\:mr-11{ + margin-right: 2.75rem; + } + + .xl\:mr-12{ + margin-right: 3rem; + } + + .xl\:mr-14{ + margin-right: 3.5rem; + } + + .xl\:mr-16{ + margin-right: 4rem; + } + + .xl\:mr-20{ + margin-right: 5rem; + } + + .xl\:mr-24{ + margin-right: 6rem; + } + + .xl\:mr-28{ + margin-right: 7rem; + } + + .xl\:mr-32{ + margin-right: 8rem; + } + + .xl\:mr-36{ + margin-right: 9rem; + } + + .xl\:mr-40{ + margin-right: 10rem; + } + + .xl\:mr-44{ + margin-right: 11rem; + } + + .xl\:mr-48{ + margin-right: 12rem; + } + + .xl\:mr-52{ + margin-right: 13rem; + } + + .xl\:mr-56{ + margin-right: 14rem; + } + + .xl\:mr-60{ + margin-right: 15rem; + } + + .xl\:mr-64{ + margin-right: 16rem; + } + + .xl\:mr-72{ + margin-right: 18rem; + } + + .xl\:mr-80{ + margin-right: 20rem; + } + + .xl\:mr-96{ + margin-right: 24rem; + } + + .xl\:mr-auto{ + margin-right: auto; + } + + .xl\:mr-px{ + margin-right: 1px; + } + + .xl\:mr-0\.5{ + margin-right: 0.125rem; + } + + .xl\:mr-1\.5{ + margin-right: 0.375rem; + } + + .xl\:mr-2\.5{ + margin-right: 0.625rem; + } + + .xl\:mr-3\.5{ + margin-right: 0.875rem; + } + + .xl\:-mr-0{ + margin-right: 0px; + } + + .xl\:-mr-1{ + margin-right: -0.25rem; + } + + .xl\:-mr-2{ + margin-right: -0.5rem; + } + + .xl\:-mr-3{ + margin-right: -0.75rem; + } + + .xl\:-mr-4{ + margin-right: -1rem; + } + + .xl\:-mr-5{ + margin-right: -1.25rem; + } + + .xl\:-mr-6{ + margin-right: -1.5rem; + } + + .xl\:-mr-7{ + margin-right: -1.75rem; + } + + .xl\:-mr-8{ + margin-right: -2rem; + } + + .xl\:-mr-9{ + margin-right: -2.25rem; + } + + .xl\:-mr-10{ + margin-right: -2.5rem; + } + + .xl\:-mr-11{ + margin-right: -2.75rem; + } + + .xl\:-mr-12{ + margin-right: -3rem; + } + + .xl\:-mr-14{ + margin-right: -3.5rem; + } + + .xl\:-mr-16{ + margin-right: -4rem; + } + + .xl\:-mr-20{ + margin-right: -5rem; + } + + .xl\:-mr-24{ + margin-right: -6rem; + } + + .xl\:-mr-28{ + margin-right: -7rem; + } + + .xl\:-mr-32{ + margin-right: -8rem; + } + + .xl\:-mr-36{ + margin-right: -9rem; + } + + .xl\:-mr-40{ + margin-right: -10rem; + } + + .xl\:-mr-44{ + margin-right: -11rem; + } + + .xl\:-mr-48{ + margin-right: -12rem; + } + + .xl\:-mr-52{ + margin-right: -13rem; + } + + .xl\:-mr-56{ + margin-right: -14rem; + } + + .xl\:-mr-60{ + margin-right: -15rem; + } + + .xl\:-mr-64{ + margin-right: -16rem; + } + + .xl\:-mr-72{ + margin-right: -18rem; + } + + .xl\:-mr-80{ + margin-right: -20rem; + } + + .xl\:-mr-96{ + margin-right: -24rem; + } + + .xl\:-mr-px{ + margin-right: -1px; + } + + .xl\:-mr-0\.5{ + margin-right: -0.125rem; + } + + .xl\:-mr-1\.5{ + margin-right: -0.375rem; + } + + .xl\:-mr-2\.5{ + margin-right: -0.625rem; + } + + .xl\:-mr-3\.5{ + margin-right: -0.875rem; + } + + .xl\:mb-0{ + margin-bottom: 0px; + } + + .xl\:mb-1{ + margin-bottom: 0.25rem; + } + + .xl\:mb-2{ + margin-bottom: 0.5rem; + } + + .xl\:mb-3{ + margin-bottom: 0.75rem; + } + + .xl\:mb-4{ + margin-bottom: 1rem; + } + + .xl\:mb-5{ + margin-bottom: 1.25rem; + } + + .xl\:mb-6{ + margin-bottom: 1.5rem; + } + + .xl\:mb-7{ + margin-bottom: 1.75rem; + } + + .xl\:mb-8{ + margin-bottom: 2rem; + } + + .xl\:mb-9{ + margin-bottom: 2.25rem; + } + + .xl\:mb-10{ + margin-bottom: 2.5rem; + } + + .xl\:mb-11{ + margin-bottom: 2.75rem; + } + + .xl\:mb-12{ + margin-bottom: 3rem; + } + + .xl\:mb-14{ + margin-bottom: 3.5rem; + } + + .xl\:mb-16{ + margin-bottom: 4rem; + } + + .xl\:mb-20{ + margin-bottom: 5rem; + } + + .xl\:mb-24{ + margin-bottom: 6rem; + } + + .xl\:mb-28{ + margin-bottom: 7rem; + } + + .xl\:mb-32{ + margin-bottom: 8rem; + } + + .xl\:mb-36{ + margin-bottom: 9rem; + } + + .xl\:mb-40{ + margin-bottom: 10rem; + } + + .xl\:mb-44{ + margin-bottom: 11rem; + } + + .xl\:mb-48{ + margin-bottom: 12rem; + } + + .xl\:mb-52{ + margin-bottom: 13rem; + } + + .xl\:mb-56{ + margin-bottom: 14rem; + } + + .xl\:mb-60{ + margin-bottom: 15rem; + } + + .xl\:mb-64{ + margin-bottom: 16rem; + } + + .xl\:mb-72{ + margin-bottom: 18rem; + } + + .xl\:mb-80{ + margin-bottom: 20rem; + } + + .xl\:mb-96{ + margin-bottom: 24rem; + } + + .xl\:mb-auto{ + margin-bottom: auto; + } + + .xl\:mb-px{ + margin-bottom: 1px; + } + + .xl\:mb-0\.5{ + margin-bottom: 0.125rem; + } + + .xl\:mb-1\.5{ + margin-bottom: 0.375rem; + } + + .xl\:mb-2\.5{ + margin-bottom: 0.625rem; + } + + .xl\:mb-3\.5{ + margin-bottom: 0.875rem; + } + + .xl\:-mb-0{ + margin-bottom: 0px; + } + + .xl\:-mb-1{ + margin-bottom: -0.25rem; + } + + .xl\:-mb-2{ + margin-bottom: -0.5rem; + } + + .xl\:-mb-3{ + margin-bottom: -0.75rem; + } + + .xl\:-mb-4{ + margin-bottom: -1rem; + } + + .xl\:-mb-5{ + margin-bottom: -1.25rem; + } + + .xl\:-mb-6{ + margin-bottom: -1.5rem; + } + + .xl\:-mb-7{ + margin-bottom: -1.75rem; + } + + .xl\:-mb-8{ + margin-bottom: -2rem; + } + + .xl\:-mb-9{ + margin-bottom: -2.25rem; + } + + .xl\:-mb-10{ + margin-bottom: -2.5rem; + } + + .xl\:-mb-11{ + margin-bottom: -2.75rem; + } + + .xl\:-mb-12{ + margin-bottom: -3rem; + } + + .xl\:-mb-14{ + margin-bottom: -3.5rem; + } + + .xl\:-mb-16{ + margin-bottom: -4rem; + } + + .xl\:-mb-20{ + margin-bottom: -5rem; + } + + .xl\:-mb-24{ + margin-bottom: -6rem; + } + + .xl\:-mb-28{ + margin-bottom: -7rem; + } + + .xl\:-mb-32{ + margin-bottom: -8rem; + } + + .xl\:-mb-36{ + margin-bottom: -9rem; + } + + .xl\:-mb-40{ + margin-bottom: -10rem; + } + + .xl\:-mb-44{ + margin-bottom: -11rem; + } + + .xl\:-mb-48{ + margin-bottom: -12rem; + } + + .xl\:-mb-52{ + margin-bottom: -13rem; + } + + .xl\:-mb-56{ + margin-bottom: -14rem; + } + + .xl\:-mb-60{ + margin-bottom: -15rem; + } + + .xl\:-mb-64{ + margin-bottom: -16rem; + } + + .xl\:-mb-72{ + margin-bottom: -18rem; + } + + .xl\:-mb-80{ + margin-bottom: -20rem; + } + + .xl\:-mb-96{ + margin-bottom: -24rem; + } + + .xl\:-mb-px{ + margin-bottom: -1px; + } + + .xl\:-mb-0\.5{ + margin-bottom: -0.125rem; + } + + .xl\:-mb-1\.5{ + margin-bottom: -0.375rem; + } + + .xl\:-mb-2\.5{ + margin-bottom: -0.625rem; + } + + .xl\:-mb-3\.5{ + margin-bottom: -0.875rem; + } + + .xl\:ml-0{ + margin-left: 0px; + } + + .xl\:ml-1{ + margin-left: 0.25rem; + } + + .xl\:ml-2{ + margin-left: 0.5rem; + } + + .xl\:ml-3{ + margin-left: 0.75rem; + } + + .xl\:ml-4{ + margin-left: 1rem; + } + + .xl\:ml-5{ + margin-left: 1.25rem; + } + + .xl\:ml-6{ + margin-left: 1.5rem; + } + + .xl\:ml-7{ + margin-left: 1.75rem; + } + + .xl\:ml-8{ + margin-left: 2rem; + } + + .xl\:ml-9{ + margin-left: 2.25rem; + } + + .xl\:ml-10{ + margin-left: 2.5rem; + } + + .xl\:ml-11{ + margin-left: 2.75rem; + } + + .xl\:ml-12{ + margin-left: 3rem; + } + + .xl\:ml-14{ + margin-left: 3.5rem; + } + + .xl\:ml-16{ + margin-left: 4rem; + } + + .xl\:ml-20{ + margin-left: 5rem; + } + + .xl\:ml-24{ + margin-left: 6rem; + } + + .xl\:ml-28{ + margin-left: 7rem; + } + + .xl\:ml-32{ + margin-left: 8rem; + } + + .xl\:ml-36{ + margin-left: 9rem; + } + + .xl\:ml-40{ + margin-left: 10rem; + } + + .xl\:ml-44{ + margin-left: 11rem; + } + + .xl\:ml-48{ + margin-left: 12rem; + } + + .xl\:ml-52{ + margin-left: 13rem; + } + + .xl\:ml-56{ + margin-left: 14rem; + } + + .xl\:ml-60{ + margin-left: 15rem; + } + + .xl\:ml-64{ + margin-left: 16rem; + } + + .xl\:ml-72{ + margin-left: 18rem; + } + + .xl\:ml-80{ + margin-left: 20rem; + } + + .xl\:ml-96{ + margin-left: 24rem; + } + + .xl\:ml-auto{ + margin-left: auto; + } + + .xl\:ml-px{ + margin-left: 1px; + } + + .xl\:ml-0\.5{ + margin-left: 0.125rem; + } + + .xl\:ml-1\.5{ + margin-left: 0.375rem; + } + + .xl\:ml-2\.5{ + margin-left: 0.625rem; + } + + .xl\:ml-3\.5{ + margin-left: 0.875rem; + } + + .xl\:-ml-0{ + margin-left: 0px; + } + + .xl\:-ml-1{ + margin-left: -0.25rem; + } + + .xl\:-ml-2{ + margin-left: -0.5rem; + } + + .xl\:-ml-3{ + margin-left: -0.75rem; + } + + .xl\:-ml-4{ + margin-left: -1rem; + } + + .xl\:-ml-5{ + margin-left: -1.25rem; + } + + .xl\:-ml-6{ + margin-left: -1.5rem; + } + + .xl\:-ml-7{ + margin-left: -1.75rem; + } + + .xl\:-ml-8{ + margin-left: -2rem; + } + + .xl\:-ml-9{ + margin-left: -2.25rem; + } + + .xl\:-ml-10{ + margin-left: -2.5rem; + } + + .xl\:-ml-11{ + margin-left: -2.75rem; + } + + .xl\:-ml-12{ + margin-left: -3rem; + } + + .xl\:-ml-14{ + margin-left: -3.5rem; + } + + .xl\:-ml-16{ + margin-left: -4rem; + } + + .xl\:-ml-20{ + margin-left: -5rem; + } + + .xl\:-ml-24{ + margin-left: -6rem; + } + + .xl\:-ml-28{ + margin-left: -7rem; + } + + .xl\:-ml-32{ + margin-left: -8rem; + } + + .xl\:-ml-36{ + margin-left: -9rem; + } + + .xl\:-ml-40{ + margin-left: -10rem; + } + + .xl\:-ml-44{ + margin-left: -11rem; + } + + .xl\:-ml-48{ + margin-left: -12rem; + } + + .xl\:-ml-52{ + margin-left: -13rem; + } + + .xl\:-ml-56{ + margin-left: -14rem; + } + + .xl\:-ml-60{ + margin-left: -15rem; + } + + .xl\:-ml-64{ + margin-left: -16rem; + } + + .xl\:-ml-72{ + margin-left: -18rem; + } + + .xl\:-ml-80{ + margin-left: -20rem; + } + + .xl\:-ml-96{ + margin-left: -24rem; + } + + .xl\:-ml-px{ + margin-left: -1px; + } + + .xl\:-ml-0\.5{ + margin-left: -0.125rem; + } + + .xl\:-ml-1\.5{ + margin-left: -0.375rem; + } + + .xl\:-ml-2\.5{ + margin-left: -0.625rem; + } + + .xl\:-ml-3\.5{ + margin-left: -0.875rem; + } + + .xl\:box-border{ + box-sizing: border-box; + } + + .xl\:box-content{ + box-sizing: content-box; + } + + .xl\:block{ + display: block; + } + + .xl\:inline-block{ + display: inline-block; + } + + .xl\:inline{ + display: inline; + } + + .xl\:flex{ + display: flex; + } + + .xl\:inline-flex{ + display: inline-flex; + } + + .xl\:table{ + display: table; + } + + .xl\:inline-table{ + display: inline-table; + } + + .xl\:table-caption{ + display: table-caption; + } + + .xl\:table-cell{ + display: table-cell; + } + + .xl\:table-column{ + display: table-column; + } + + .xl\:table-column-group{ + display: table-column-group; + } + + .xl\:table-footer-group{ + display: table-footer-group; + } + + .xl\:table-header-group{ + display: table-header-group; + } + + .xl\:table-row-group{ + display: table-row-group; + } + + .xl\:table-row{ + display: table-row; + } + + .xl\:flow-root{ + display: flow-root; + } + + .xl\:grid{ + display: grid; + } + + .xl\:inline-grid{ + display: inline-grid; + } + + .xl\:contents{ + display: contents; + } + + .xl\:list-item{ + display: list-item; + } + + .xl\:hidden{ + display: none; + } + + .xl\:h-0{ + height: 0px; + } + + .xl\:h-1{ + height: 0.25rem; + } + + .xl\:h-2{ + height: 0.5rem; + } + + .xl\:h-3{ + height: 0.75rem; + } + + .xl\:h-4{ + height: 1rem; + } + + .xl\:h-5{ + height: 1.25rem; + } + + .xl\:h-6{ + height: 1.5rem; + } + + .xl\:h-7{ + height: 1.75rem; + } + + .xl\:h-8{ + height: 2rem; + } + + .xl\:h-9{ + height: 2.25rem; + } + + .xl\:h-10{ + height: 2.5rem; + } + + .xl\:h-11{ + height: 2.75rem; + } + + .xl\:h-12{ + height: 3rem; + } + + .xl\:h-14{ + height: 3.5rem; + } + + .xl\:h-16{ + height: 4rem; + } + + .xl\:h-20{ + height: 5rem; + } + + .xl\:h-24{ + height: 6rem; + } + + .xl\:h-28{ + height: 7rem; + } + + .xl\:h-32{ + height: 8rem; + } + + .xl\:h-36{ + height: 9rem; + } + + .xl\:h-40{ + height: 10rem; + } + + .xl\:h-44{ + height: 11rem; + } + + .xl\:h-48{ + height: 12rem; + } + + .xl\:h-52{ + height: 13rem; + } + + .xl\:h-56{ + height: 14rem; + } + + .xl\:h-60{ + height: 15rem; + } + + .xl\:h-64{ + height: 16rem; + } + + .xl\:h-72{ + height: 18rem; + } + + .xl\:h-80{ + height: 20rem; + } + + .xl\:h-96{ + height: 24rem; + } + + .xl\:h-auto{ + height: auto; + } + + .xl\:h-px{ + height: 1px; + } + + .xl\:h-0\.5{ + height: 0.125rem; + } + + .xl\:h-1\.5{ + height: 0.375rem; + } + + .xl\:h-2\.5{ + height: 0.625rem; + } + + .xl\:h-3\.5{ + height: 0.875rem; + } + + .xl\:h-1\/2{ + height: 50%; + } + + .xl\:h-1\/3{ + height: 33.333333%; + } + + .xl\:h-2\/3{ + height: 66.666667%; + } + + .xl\:h-1\/4{ + height: 25%; + } + + .xl\:h-2\/4{ + height: 50%; + } + + .xl\:h-3\/4{ + height: 75%; + } + + .xl\:h-1\/5{ + height: 20%; + } + + .xl\:h-2\/5{ + height: 40%; + } + + .xl\:h-3\/5{ + height: 60%; + } + + .xl\:h-4\/5{ + height: 80%; + } + + .xl\:h-1\/6{ + height: 16.666667%; + } + + .xl\:h-2\/6{ + height: 33.333333%; + } + + .xl\:h-3\/6{ + height: 50%; + } + + .xl\:h-4\/6{ + height: 66.666667%; + } + + .xl\:h-5\/6{ + height: 83.333333%; + } + + .xl\:h-full{ + height: 100%; + } + + .xl\:h-screen{ + height: 100vh; + } + + .xl\:max-h-0{ + max-height: 0px; + } + + .xl\:max-h-1{ + max-height: 0.25rem; + } + + .xl\:max-h-2{ + max-height: 0.5rem; + } + + .xl\:max-h-3{ + max-height: 0.75rem; + } + + .xl\:max-h-4{ + max-height: 1rem; + } + + .xl\:max-h-5{ + max-height: 1.25rem; + } + + .xl\:max-h-6{ + max-height: 1.5rem; + } + + .xl\:max-h-7{ + max-height: 1.75rem; + } + + .xl\:max-h-8{ + max-height: 2rem; + } + + .xl\:max-h-9{ + max-height: 2.25rem; + } + + .xl\:max-h-10{ + max-height: 2.5rem; + } + + .xl\:max-h-11{ + max-height: 2.75rem; + } + + .xl\:max-h-12{ + max-height: 3rem; + } + + .xl\:max-h-14{ + max-height: 3.5rem; + } + + .xl\:max-h-16{ + max-height: 4rem; + } + + .xl\:max-h-20{ + max-height: 5rem; + } + + .xl\:max-h-24{ + max-height: 6rem; + } + + .xl\:max-h-28{ + max-height: 7rem; + } + + .xl\:max-h-32{ + max-height: 8rem; + } + + .xl\:max-h-36{ + max-height: 9rem; + } + + .xl\:max-h-40{ + max-height: 10rem; + } + + .xl\:max-h-44{ + max-height: 11rem; + } + + .xl\:max-h-48{ + max-height: 12rem; + } + + .xl\:max-h-52{ + max-height: 13rem; + } + + .xl\:max-h-56{ + max-height: 14rem; + } + + .xl\:max-h-60{ + max-height: 15rem; + } + + .xl\:max-h-64{ + max-height: 16rem; + } + + .xl\:max-h-72{ + max-height: 18rem; + } + + .xl\:max-h-80{ + max-height: 20rem; + } + + .xl\:max-h-96{ + max-height: 24rem; + } + + .xl\:max-h-px{ + max-height: 1px; + } + + .xl\:max-h-0\.5{ + max-height: 0.125rem; + } + + .xl\:max-h-1\.5{ + max-height: 0.375rem; + } + + .xl\:max-h-2\.5{ + max-height: 0.625rem; + } + + .xl\:max-h-3\.5{ + max-height: 0.875rem; + } + + .xl\:max-h-full{ + max-height: 100%; + } + + .xl\:max-h-screen{ + max-height: 100vh; + } + + .xl\:min-h-0{ + min-height: 0px; + } + + .xl\:min-h-full{ + min-height: 100%; + } + + .xl\:min-h-screen{ + min-height: 100vh; + } + + .xl\:w-0{ + width: 0px; + } + + .xl\:w-1{ + width: 0.25rem; + } + + .xl\:w-2{ + width: 0.5rem; + } + + .xl\:w-3{ + width: 0.75rem; + } + + .xl\:w-4{ + width: 1rem; + } + + .xl\:w-5{ + width: 1.25rem; + } + + .xl\:w-6{ + width: 1.5rem; + } + + .xl\:w-7{ + width: 1.75rem; + } + + .xl\:w-8{ + width: 2rem; + } + + .xl\:w-9{ + width: 2.25rem; + } + + .xl\:w-10{ + width: 2.5rem; + } + + .xl\:w-11{ + width: 2.75rem; + } + + .xl\:w-12{ + width: 3rem; + } + + .xl\:w-14{ + width: 3.5rem; + } + + .xl\:w-16{ + width: 4rem; + } + + .xl\:w-20{ + width: 5rem; + } + + .xl\:w-24{ + width: 6rem; + } + + .xl\:w-28{ + width: 7rem; + } + + .xl\:w-32{ + width: 8rem; + } + + .xl\:w-36{ + width: 9rem; + } + + .xl\:w-40{ + width: 10rem; + } + + .xl\:w-44{ + width: 11rem; + } + + .xl\:w-48{ + width: 12rem; + } + + .xl\:w-52{ + width: 13rem; + } + + .xl\:w-56{ + width: 14rem; + } + + .xl\:w-60{ + width: 15rem; + } + + .xl\:w-64{ + width: 16rem; + } + + .xl\:w-72{ + width: 18rem; + } + + .xl\:w-80{ + width: 20rem; + } + + .xl\:w-96{ + width: 24rem; + } + + .xl\:w-auto{ + width: auto; + } + + .xl\:w-px{ + width: 1px; + } + + .xl\:w-0\.5{ + width: 0.125rem; + } + + .xl\:w-1\.5{ + width: 0.375rem; + } + + .xl\:w-2\.5{ + width: 0.625rem; + } + + .xl\:w-3\.5{ + width: 0.875rem; + } + + .xl\:w-1\/2{ + width: 50%; + } + + .xl\:w-1\/3{ + width: 33.333333%; + } + + .xl\:w-2\/3{ + width: 66.666667%; + } + + .xl\:w-1\/4{ + width: 25%; + } + + .xl\:w-2\/4{ + width: 50%; + } + + .xl\:w-3\/4{ + width: 75%; + } + + .xl\:w-1\/5{ + width: 20%; + } + + .xl\:w-2\/5{ + width: 40%; + } + + .xl\:w-3\/5{ + width: 60%; + } + + .xl\:w-4\/5{ + width: 80%; + } + + .xl\:w-1\/6{ + width: 16.666667%; + } + + .xl\:w-2\/6{ + width: 33.333333%; + } + + .xl\:w-3\/6{ + width: 50%; + } + + .xl\:w-4\/6{ + width: 66.666667%; + } + + .xl\:w-5\/6{ + width: 83.333333%; + } + + .xl\:w-1\/12{ + width: 8.333333%; + } + + .xl\:w-2\/12{ + width: 16.666667%; + } + + .xl\:w-3\/12{ + width: 25%; + } + + .xl\:w-4\/12{ + width: 33.333333%; + } + + .xl\:w-5\/12{ + width: 41.666667%; + } + + .xl\:w-6\/12{ + width: 50%; + } + + .xl\:w-7\/12{ + width: 58.333333%; + } + + .xl\:w-8\/12{ + width: 66.666667%; + } + + .xl\:w-9\/12{ + width: 75%; + } + + .xl\:w-10\/12{ + width: 83.333333%; + } + + .xl\:w-11\/12{ + width: 91.666667%; + } + + .xl\:w-full{ + width: 100%; + } + + .xl\:w-screen{ + width: 100vw; + } + + .xl\:w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; + } + + .xl\:w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + } + + .xl\:min-w-0{ + min-width: 0px; + } + + .xl\:min-w-full{ + min-width: 100%; + } + + .xl\:min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; + } + + .xl\:min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; + } + + .xl\:max-w-0{ + max-width: 0rem; + } + + .xl\:max-w-none{ + max-width: none; + } + + .xl\:max-w-xs{ + max-width: 20rem; + } + + .xl\:max-w-sm{ + max-width: 24rem; + } + + .xl\:max-w-md{ + max-width: 28rem; + } + + .xl\:max-w-lg{ + max-width: 32rem; + } + + .xl\:max-w-xl{ + max-width: 36rem; + } + + .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-full{ + max-width: 100%; + } + + .xl\:max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .xl\:max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .xl\:max-w-prose{ + max-width: 65ch; + } + + .xl\:max-w-screen-sm{ + max-width: 640px; + } + + .xl\:max-w-screen-md{ + max-width: 768px; + } + + .xl\:max-w-screen-lg{ + max-width: 1024px; + } + + .xl\:max-w-screen-xl{ + max-width: 1280px; + } + + .xl\:max-w-screen-2xl{ + max-width: 1536px; + } + + .xl\:flex-1{ + flex: 1 1 0%; + } + + .xl\:flex-auto{ + flex: 1 1 auto; + } + + .xl\:flex-initial{ + flex: 0 1 auto; + } + + .xl\:flex-none{ + flex: none; + } + + .xl\:flex-shrink-0{ + flex-shrink: 0; + } + + .xl\:flex-shrink{ + flex-shrink: 1; + } + + .xl\:flex-grow-0{ + flex-grow: 0; + } + + .xl\:flex-grow{ + flex-grow: 1; + } + + .xl\:table-auto{ + table-layout: auto; + } + + .xl\:table-fixed{ + table-layout: fixed; + } + + .xl\:border-collapse{ + border-collapse: collapse; + } + + .xl\:border-separate{ + border-collapse: separate; + } + + .xl\:origin-center{ + transform-origin: center; + } + + .xl\:origin-top{ + transform-origin: top; + } + + .xl\:origin-top-right{ + transform-origin: top right; + } + + .xl\:origin-right{ + transform-origin: right; + } + + .xl\:origin-bottom-right{ + transform-origin: bottom right; + } + + .xl\:origin-bottom{ + transform-origin: bottom; + } + + .xl\:origin-bottom-left{ + transform-origin: bottom left; + } + + .xl\:origin-left{ + transform-origin: left; + } + + .xl\:origin-top-left{ + transform-origin: top left; + } + + .xl\:transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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)); + } + + .xl\:transform-gpu{ + --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; + 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)); + } + + .xl\:transform-none{ + transform: none; + } + + .xl\:translate-x-0{ + --tw-translate-x: 0px; + } + + .xl\:translate-x-1{ + --tw-translate-x: 0.25rem; + } + + .xl\:translate-x-2{ + --tw-translate-x: 0.5rem; + } + + .xl\:translate-x-3{ + --tw-translate-x: 0.75rem; + } + + .xl\:translate-x-4{ + --tw-translate-x: 1rem; + } + + .xl\:translate-x-5{ + --tw-translate-x: 1.25rem; + } + + .xl\:translate-x-6{ + --tw-translate-x: 1.5rem; + } + + .xl\:translate-x-7{ + --tw-translate-x: 1.75rem; + } + + .xl\:translate-x-8{ + --tw-translate-x: 2rem; + } + + .xl\:translate-x-9{ + --tw-translate-x: 2.25rem; + } + + .xl\:translate-x-10{ + --tw-translate-x: 2.5rem; + } + + .xl\:translate-x-11{ + --tw-translate-x: 2.75rem; + } + + .xl\:translate-x-12{ + --tw-translate-x: 3rem; + } + + .xl\:translate-x-14{ + --tw-translate-x: 3.5rem; + } + + .xl\:translate-x-16{ + --tw-translate-x: 4rem; + } + + .xl\:translate-x-20{ + --tw-translate-x: 5rem; + } + + .xl\:translate-x-24{ + --tw-translate-x: 6rem; + } + + .xl\:translate-x-28{ + --tw-translate-x: 7rem; + } + + .xl\:translate-x-32{ + --tw-translate-x: 8rem; + } + + .xl\:translate-x-36{ + --tw-translate-x: 9rem; + } + + .xl\:translate-x-40{ + --tw-translate-x: 10rem; + } + + .xl\:translate-x-44{ + --tw-translate-x: 11rem; + } + + .xl\:translate-x-48{ + --tw-translate-x: 12rem; + } + + .xl\:translate-x-52{ + --tw-translate-x: 13rem; + } + + .xl\:translate-x-56{ + --tw-translate-x: 14rem; + } + + .xl\:translate-x-60{ + --tw-translate-x: 15rem; + } + + .xl\:translate-x-64{ + --tw-translate-x: 16rem; + } + + .xl\:translate-x-72{ + --tw-translate-x: 18rem; + } + + .xl\:translate-x-80{ + --tw-translate-x: 20rem; + } + + .xl\:translate-x-96{ + --tw-translate-x: 24rem; + } + + .xl\:translate-x-px{ + --tw-translate-x: 1px; + } + + .xl\:translate-x-0\.5{ + --tw-translate-x: 0.125rem; + } + + .xl\:translate-x-1\.5{ + --tw-translate-x: 0.375rem; + } + + .xl\:translate-x-2\.5{ + --tw-translate-x: 0.625rem; + } + + .xl\:translate-x-3\.5{ + --tw-translate-x: 0.875rem; + } + + .xl\:-translate-x-0{ + --tw-translate-x: 0px; + } + + .xl\:-translate-x-1{ + --tw-translate-x: -0.25rem; + } + + .xl\:-translate-x-2{ + --tw-translate-x: -0.5rem; + } + + .xl\:-translate-x-3{ + --tw-translate-x: -0.75rem; + } + + .xl\:-translate-x-4{ + --tw-translate-x: -1rem; + } + + .xl\:-translate-x-5{ + --tw-translate-x: -1.25rem; + } + + .xl\:-translate-x-6{ + --tw-translate-x: -1.5rem; + } + + .xl\:-translate-x-7{ + --tw-translate-x: -1.75rem; + } + + .xl\:-translate-x-8{ + --tw-translate-x: -2rem; + } + + .xl\:-translate-x-9{ + --tw-translate-x: -2.25rem; + } + + .xl\:-translate-x-10{ + --tw-translate-x: -2.5rem; + } + + .xl\:-translate-x-11{ + --tw-translate-x: -2.75rem; + } + + .xl\:-translate-x-12{ + --tw-translate-x: -3rem; + } + + .xl\:-translate-x-14{ + --tw-translate-x: -3.5rem; + } + + .xl\:-translate-x-16{ + --tw-translate-x: -4rem; + } + + .xl\:-translate-x-20{ + --tw-translate-x: -5rem; + } + + .xl\:-translate-x-24{ + --tw-translate-x: -6rem; + } + + .xl\:-translate-x-28{ + --tw-translate-x: -7rem; + } + + .xl\:-translate-x-32{ + --tw-translate-x: -8rem; + } + + .xl\:-translate-x-36{ + --tw-translate-x: -9rem; + } + + .xl\:-translate-x-40{ + --tw-translate-x: -10rem; + } + + .xl\:-translate-x-44{ + --tw-translate-x: -11rem; + } + + .xl\:-translate-x-48{ + --tw-translate-x: -12rem; + } + + .xl\:-translate-x-52{ + --tw-translate-x: -13rem; + } + + .xl\:-translate-x-56{ + --tw-translate-x: -14rem; + } + + .xl\:-translate-x-60{ + --tw-translate-x: -15rem; + } + + .xl\:-translate-x-64{ + --tw-translate-x: -16rem; + } + + .xl\:-translate-x-72{ + --tw-translate-x: -18rem; + } + + .xl\:-translate-x-80{ + --tw-translate-x: -20rem; + } + + .xl\:-translate-x-96{ + --tw-translate-x: -24rem; + } + + .xl\:-translate-x-px{ + --tw-translate-x: -1px; + } + + .xl\:-translate-x-0\.5{ + --tw-translate-x: -0.125rem; + } + + .xl\:-translate-x-1\.5{ + --tw-translate-x: -0.375rem; + } + + .xl\:-translate-x-2\.5{ + --tw-translate-x: -0.625rem; + } + + .xl\:-translate-x-3\.5{ + --tw-translate-x: -0.875rem; + } + + .xl\:translate-x-1\/2{ + --tw-translate-x: 50%; + } + + .xl\:translate-x-1\/3{ + --tw-translate-x: 33.333333%; + } + + .xl\:translate-x-2\/3{ + --tw-translate-x: 66.666667%; + } + + .xl\:translate-x-1\/4{ + --tw-translate-x: 25%; + } + + .xl\:translate-x-2\/4{ + --tw-translate-x: 50%; + } + + .xl\:translate-x-3\/4{ + --tw-translate-x: 75%; + } + + .xl\:translate-x-full{ + --tw-translate-x: 100%; + } + + .xl\:-translate-x-1\/2{ + --tw-translate-x: -50%; + } + + .xl\:-translate-x-1\/3{ + --tw-translate-x: -33.333333%; + } + + .xl\:-translate-x-2\/3{ + --tw-translate-x: -66.666667%; + } + + .xl\:-translate-x-1\/4{ + --tw-translate-x: -25%; + } + + .xl\:-translate-x-2\/4{ + --tw-translate-x: -50%; + } + + .xl\:-translate-x-3\/4{ + --tw-translate-x: -75%; + } + + .xl\:-translate-x-full{ + --tw-translate-x: -100%; + } + + .xl\:translate-y-0{ + --tw-translate-y: 0px; + } + + .xl\:translate-y-1{ + --tw-translate-y: 0.25rem; + } + + .xl\:translate-y-2{ + --tw-translate-y: 0.5rem; + } + + .xl\:translate-y-3{ + --tw-translate-y: 0.75rem; + } + + .xl\:translate-y-4{ + --tw-translate-y: 1rem; + } + + .xl\:translate-y-5{ + --tw-translate-y: 1.25rem; + } + + .xl\:translate-y-6{ + --tw-translate-y: 1.5rem; + } + + .xl\:translate-y-7{ + --tw-translate-y: 1.75rem; + } + + .xl\:translate-y-8{ + --tw-translate-y: 2rem; + } + + .xl\:translate-y-9{ + --tw-translate-y: 2.25rem; + } + + .xl\:translate-y-10{ + --tw-translate-y: 2.5rem; + } + + .xl\:translate-y-11{ + --tw-translate-y: 2.75rem; + } + + .xl\:translate-y-12{ + --tw-translate-y: 3rem; + } + + .xl\:translate-y-14{ + --tw-translate-y: 3.5rem; + } + + .xl\:translate-y-16{ + --tw-translate-y: 4rem; + } + + .xl\:translate-y-20{ + --tw-translate-y: 5rem; + } + + .xl\:translate-y-24{ + --tw-translate-y: 6rem; + } + + .xl\:translate-y-28{ + --tw-translate-y: 7rem; + } + + .xl\:translate-y-32{ + --tw-translate-y: 8rem; + } + + .xl\:translate-y-36{ + --tw-translate-y: 9rem; + } + + .xl\:translate-y-40{ + --tw-translate-y: 10rem; + } + + .xl\:translate-y-44{ + --tw-translate-y: 11rem; + } + + .xl\:translate-y-48{ + --tw-translate-y: 12rem; + } + + .xl\:translate-y-52{ + --tw-translate-y: 13rem; + } + + .xl\:translate-y-56{ + --tw-translate-y: 14rem; + } + + .xl\:translate-y-60{ + --tw-translate-y: 15rem; + } + + .xl\:translate-y-64{ + --tw-translate-y: 16rem; + } + + .xl\:translate-y-72{ + --tw-translate-y: 18rem; + } + + .xl\:translate-y-80{ + --tw-translate-y: 20rem; + } + + .xl\:translate-y-96{ + --tw-translate-y: 24rem; + } + + .xl\:translate-y-px{ + --tw-translate-y: 1px; + } + + .xl\:translate-y-0\.5{ + --tw-translate-y: 0.125rem; + } + + .xl\:translate-y-1\.5{ + --tw-translate-y: 0.375rem; + } + + .xl\:translate-y-2\.5{ + --tw-translate-y: 0.625rem; + } + + .xl\:translate-y-3\.5{ + --tw-translate-y: 0.875rem; + } + + .xl\:-translate-y-0{ + --tw-translate-y: 0px; + } + + .xl\:-translate-y-1{ + --tw-translate-y: -0.25rem; + } + + .xl\:-translate-y-2{ + --tw-translate-y: -0.5rem; + } + + .xl\:-translate-y-3{ + --tw-translate-y: -0.75rem; + } + + .xl\:-translate-y-4{ + --tw-translate-y: -1rem; + } + + .xl\:-translate-y-5{ + --tw-translate-y: -1.25rem; + } + + .xl\:-translate-y-6{ + --tw-translate-y: -1.5rem; + } + + .xl\:-translate-y-7{ + --tw-translate-y: -1.75rem; + } + + .xl\:-translate-y-8{ + --tw-translate-y: -2rem; + } + + .xl\:-translate-y-9{ + --tw-translate-y: -2.25rem; + } + + .xl\:-translate-y-10{ + --tw-translate-y: -2.5rem; + } + + .xl\:-translate-y-11{ + --tw-translate-y: -2.75rem; + } + + .xl\:-translate-y-12{ + --tw-translate-y: -3rem; + } + + .xl\:-translate-y-14{ + --tw-translate-y: -3.5rem; + } + + .xl\:-translate-y-16{ + --tw-translate-y: -4rem; + } + + .xl\:-translate-y-20{ + --tw-translate-y: -5rem; + } + + .xl\:-translate-y-24{ + --tw-translate-y: -6rem; + } + + .xl\:-translate-y-28{ + --tw-translate-y: -7rem; + } + + .xl\:-translate-y-32{ + --tw-translate-y: -8rem; + } + + .xl\:-translate-y-36{ + --tw-translate-y: -9rem; + } + + .xl\:-translate-y-40{ + --tw-translate-y: -10rem; + } + + .xl\:-translate-y-44{ + --tw-translate-y: -11rem; + } + + .xl\:-translate-y-48{ + --tw-translate-y: -12rem; + } + + .xl\:-translate-y-52{ + --tw-translate-y: -13rem; + } + + .xl\:-translate-y-56{ + --tw-translate-y: -14rem; + } + + .xl\:-translate-y-60{ + --tw-translate-y: -15rem; + } + + .xl\:-translate-y-64{ + --tw-translate-y: -16rem; + } + + .xl\:-translate-y-72{ + --tw-translate-y: -18rem; + } + + .xl\:-translate-y-80{ + --tw-translate-y: -20rem; + } + + .xl\:-translate-y-96{ + --tw-translate-y: -24rem; + } + + .xl\:-translate-y-px{ + --tw-translate-y: -1px; + } + + .xl\:-translate-y-0\.5{ + --tw-translate-y: -0.125rem; + } + + .xl\:-translate-y-1\.5{ + --tw-translate-y: -0.375rem; + } + + .xl\:-translate-y-2\.5{ + --tw-translate-y: -0.625rem; + } + + .xl\:-translate-y-3\.5{ + --tw-translate-y: -0.875rem; + } + + .xl\:translate-y-1\/2{ + --tw-translate-y: 50%; + } + + .xl\:translate-y-1\/3{ + --tw-translate-y: 33.333333%; + } + + .xl\:translate-y-2\/3{ + --tw-translate-y: 66.666667%; + } + + .xl\:translate-y-1\/4{ + --tw-translate-y: 25%; + } + + .xl\:translate-y-2\/4{ + --tw-translate-y: 50%; + } + + .xl\:translate-y-3\/4{ + --tw-translate-y: 75%; + } + + .xl\:translate-y-full{ + --tw-translate-y: 100%; + } + + .xl\:-translate-y-1\/2{ + --tw-translate-y: -50%; + } + + .xl\:-translate-y-1\/3{ + --tw-translate-y: -33.333333%; + } + + .xl\:-translate-y-2\/3{ + --tw-translate-y: -66.666667%; + } + + .xl\:-translate-y-1\/4{ + --tw-translate-y: -25%; + } + + .xl\:-translate-y-2\/4{ + --tw-translate-y: -50%; + } + + .xl\:-translate-y-3\/4{ + --tw-translate-y: -75%; + } + + .xl\:-translate-y-full{ + --tw-translate-y: -100%; + } + + .xl\:hover\:translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .xl\:hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; + } + + .xl\:hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; + } + + .xl\:hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; + } + + .xl\:hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; + } + + .xl\:hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; + } + + .xl\:hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; + } + + .xl\:hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; + } + + .xl\:hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; + } + + .xl\:hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; + } + + .xl\:hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; + } + + .xl\:hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; + } + + .xl\:hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; + } + + .xl\:hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; + } + + .xl\:hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; + } + + .xl\:hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; + } + + .xl\:hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; + } + + .xl\:hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; + } + + .xl\:hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; + } + + .xl\:hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; + } + + .xl\:hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; + } + + .xl\:hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; + } + + .xl\:hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; + } + + .xl\:hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; + } + + .xl\:hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; + } + + .xl\:hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; + } + + .xl\:hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; + } + + .xl\:hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; + } + + .xl\:hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; + } + + .xl\:hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; + } + + .xl\:hover\:translate-x-px:hover{ + --tw-translate-x: 1px; + } + + .xl\:hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; + } + + .xl\:hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; + } + + .xl\:hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; + } + + .xl\:hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; + } + + .xl\:hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .xl\:hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; + } + + .xl\:hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; + } + + .xl\:hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; + } + + .xl\:hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; + } + + .xl\:hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; + } + + .xl\:hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; + } + + .xl\:hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; + } + + .xl\:hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; + } + + .xl\:hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; + } + + .xl\:hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; + } + + .xl\:hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; + } + + .xl\:hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; + } + + .xl\:hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; + } + + .xl\:hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; + } + + .xl\:hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; + } + + .xl\:hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; + } + + .xl\:hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; + } + + .xl\:hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; + } + + .xl\:hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; + } + + .xl\:hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; + } + + .xl\:hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; + } + + .xl\:hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; + } + + .xl\:hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; + } + + .xl\:hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; + } + + .xl\:hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; + } + + .xl\:hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; + } + + .xl\:hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; + } + + .xl\:hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; + } + + .xl\:hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; + } + + .xl\:hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; + } + + .xl\:hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; + } + + .xl\:hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; + } + + .xl\:hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; + } + + .xl\:hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; + } + + .xl\:hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; + } + + .xl\:hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; + } + + .xl\:hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; + } + + .xl\:hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; + } + + .xl\:hover\:translate-x-full:hover{ + --tw-translate-x: 100%; + } + + .xl\:hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; + } + + .xl\:hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; + } + + .xl\:hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; + } + + .xl\:hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; + } + + .xl\:hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; + } + + .xl\:hover\:translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .xl\:hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; + } + + .xl\:hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; + } + + .xl\:hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; + } + + .xl\:hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; + } + + .xl\:hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; + } + + .xl\:hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; + } + + .xl\:hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; + } + + .xl\:hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; + } + + .xl\:hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; + } + + .xl\:hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; + } + + .xl\:hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; + } + + .xl\:hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; + } + + .xl\:hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; + } + + .xl\:hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; + } + + .xl\:hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; + } + + .xl\:hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; + } + + .xl\:hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; + } + + .xl\:hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; + } + + .xl\:hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; + } + + .xl\:hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; + } + + .xl\:hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; + } + + .xl\:hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; + } + + .xl\:hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; + } + + .xl\:hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; + } + + .xl\:hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; + } + + .xl\:hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; + } + + .xl\:hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; + } + + .xl\:hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; + } + + .xl\:hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; + } + + .xl\:hover\:translate-y-px:hover{ + --tw-translate-y: 1px; + } + + .xl\:hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; + } + + .xl\:hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; + } + + .xl\:hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; + } + + .xl\:hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; + } + + .xl\:hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .xl\:hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; + } + + .xl\:hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; + } + + .xl\:hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; + } + + .xl\:hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; + } + + .xl\:hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; + } + + .xl\:hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; + } + + .xl\:hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; + } + + .xl\:hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; + } + + .xl\:hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; + } + + .xl\:hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; + } + + .xl\:hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; + } + + .xl\:hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; + } + + .xl\:hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; + } + + .xl\:hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; + } + + .xl\:hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; + } + + .xl\:hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; + } + + .xl\:hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; + } + + .xl\:hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; + } + + .xl\:hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; + } + + .xl\:hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; + } + + .xl\:hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; + } + + .xl\:hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; + } + + .xl\:hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; + } + + .xl\:hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; + } + + .xl\:hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; + } + + .xl\:hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; + } + + .xl\:hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; + } + + .xl\:hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; + } + + .xl\:hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; + } + + .xl\:hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; + } + + .xl\:hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; + } + + .xl\:hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; + } + + .xl\:hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; + } + + .xl\:hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; + } + + .xl\:hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; + } + + .xl\:hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; + } + + .xl\:hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; + } + + .xl\:hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; + } + + .xl\:hover\:translate-y-full:hover{ + --tw-translate-y: 100%; + } + + .xl\:hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; + } + + .xl\:hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; + } + + .xl\:hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; + } + + .xl\:hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; + } + + .xl\:hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; + } + + .xl\:focus\:translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .xl\:focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; + } + + .xl\:focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; + } + + .xl\:focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; + } + + .xl\:focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; + } + + .xl\:focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; + } + + .xl\:focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; + } + + .xl\:focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; + } + + .xl\:focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; + } + + .xl\:focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; + } + + .xl\:focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; + } + + .xl\:focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; + } + + .xl\:focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; + } + + .xl\:focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; + } + + .xl\:focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; + } + + .xl\:focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; + } + + .xl\:focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; + } + + .xl\:focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; + } + + .xl\:focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; + } + + .xl\:focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; + } + + .xl\:focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; + } + + .xl\:focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; + } + + .xl\:focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; + } + + .xl\:focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; + } + + .xl\:focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; + } + + .xl\:focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; + } + + .xl\:focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; + } + + .xl\:focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; + } + + .xl\:focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; + } + + .xl\:focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; + } + + .xl\:focus\:translate-x-px:focus{ + --tw-translate-x: 1px; + } + + .xl\:focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; + } + + .xl\:focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; + } + + .xl\:focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; + } + + .xl\:focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; + } + + .xl\:focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .xl\:focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; + } + + .xl\:focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; + } + + .xl\:focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; + } + + .xl\:focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; + } + + .xl\:focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; + } + + .xl\:focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; + } + + .xl\:focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; + } + + .xl\:focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; + } + + .xl\:focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; + } + + .xl\:focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; + } + + .xl\:focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; + } + + .xl\:focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; + } + + .xl\:focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; + } + + .xl\:focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; + } + + .xl\:focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; + } + + .xl\:focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; + } + + .xl\:focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; + } + + .xl\:focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; + } + + .xl\:focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; + } + + .xl\:focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; + } + + .xl\:focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; + } + + .xl\:focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; + } + + .xl\:focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; + } + + .xl\:focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; + } + + .xl\:focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; + } + + .xl\:focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; + } + + .xl\:focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; + } + + .xl\:focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; + } + + .xl\:focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; + } + + .xl\:focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; + } + + .xl\:focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; + } + + .xl\:focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; + } + + .xl\:focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; + } + + .xl\:focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; + } + + .xl\:focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; + } + + .xl\:focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; + } + + .xl\:focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; + } + + .xl\:focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; + } + + .xl\:focus\:translate-x-full:focus{ + --tw-translate-x: 100%; + } + + .xl\:focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; + } + + .xl\:focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; + } + + .xl\:focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; + } + + .xl\:focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; + } + + .xl\:focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; + } + + .xl\:focus\:translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .xl\:focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; + } + + .xl\:focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; + } + + .xl\:focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; + } + + .xl\:focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; + } + + .xl\:focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; + } + + .xl\:focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; + } + + .xl\:focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; + } + + .xl\:focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; + } + + .xl\:focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; + } + + .xl\:focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; + } + + .xl\:focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; + } + + .xl\:focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; + } + + .xl\:focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; + } + + .xl\:focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; + } + + .xl\:focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; + } + + .xl\:focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; + } + + .xl\:focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; + } + + .xl\:focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; + } + + .xl\:focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; + } + + .xl\:focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; + } + + .xl\:focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; + } + + .xl\:focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; + } + + .xl\:focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; + } + + .xl\:focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; + } + + .xl\:focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; + } + + .xl\:focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; + } + + .xl\:focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; + } + + .xl\:focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; + } + + .xl\:focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; + } + + .xl\:focus\:translate-y-px:focus{ + --tw-translate-y: 1px; + } + + .xl\:focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; + } + + .xl\:focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; + } + + .xl\:focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; + } + + .xl\:focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; + } + + .xl\:focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .xl\:focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; + } + + .xl\:focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; + } + + .xl\:focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; + } + + .xl\:focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; + } + + .xl\:focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; + } + + .xl\:focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; + } + + .xl\:focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; + } + + .xl\:focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; + } + + .xl\:focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; + } + + .xl\:focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; + } + + .xl\:focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; + } + + .xl\:focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; + } + + .xl\:focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; + } + + .xl\:focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; + } + + .xl\:focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; + } + + .xl\:focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; + } + + .xl\:focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; + } + + .xl\:focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; + } + + .xl\:focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; + } + + .xl\:focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; + } + + .xl\:focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; + } + + .xl\:focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; + } + + .xl\:focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; + } + + .xl\:focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; + } + + .xl\:focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; + } + + .xl\:focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; + } + + .xl\:focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; + } + + .xl\:focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; + } + + .xl\:focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; + } + + .xl\:focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; + } + + .xl\:focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; + } + + .xl\:focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; + } + + .xl\:focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; + } + + .xl\:focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; + } + + .xl\:focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; + } + + .xl\:focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; + } + + .xl\:focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; + } + + .xl\:focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; + } + + .xl\:focus\:translate-y-full:focus{ + --tw-translate-y: 100%; + } + + .xl\:focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; + } + + .xl\:focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; + } + + .xl\:focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; + } + + .xl\:focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; + } + + .xl\:focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; + } + + .xl\:rotate-0{ + --tw-rotate: 0deg; + } + + .xl\:rotate-1{ + --tw-rotate: 1deg; + } + + .xl\:rotate-2{ + --tw-rotate: 2deg; + } + + .xl\:rotate-3{ + --tw-rotate: 3deg; + } + + .xl\:rotate-6{ + --tw-rotate: 6deg; + } + + .xl\:rotate-12{ + --tw-rotate: 12deg; + } + + .xl\:rotate-45{ + --tw-rotate: 45deg; + } + + .xl\:rotate-90{ + --tw-rotate: 90deg; + } + + .xl\:rotate-180{ + --tw-rotate: 180deg; + } + + .xl\:-rotate-180{ + --tw-rotate: -180deg; + } + + .xl\:-rotate-90{ + --tw-rotate: -90deg; + } + + .xl\:-rotate-45{ + --tw-rotate: -45deg; + } + + .xl\:-rotate-12{ + --tw-rotate: -12deg; + } + + .xl\:-rotate-6{ + --tw-rotate: -6deg; + } + + .xl\:-rotate-3{ + --tw-rotate: -3deg; + } + + .xl\:-rotate-2{ + --tw-rotate: -2deg; + } + + .xl\:-rotate-1{ + --tw-rotate: -1deg; + } + + .xl\:hover\:rotate-0:hover{ + --tw-rotate: 0deg; + } + + .xl\:hover\:rotate-1:hover{ + --tw-rotate: 1deg; + } + + .xl\:hover\:rotate-2:hover{ + --tw-rotate: 2deg; + } + + .xl\:hover\:rotate-3:hover{ + --tw-rotate: 3deg; + } + + .xl\:hover\:rotate-6:hover{ + --tw-rotate: 6deg; + } + + .xl\:hover\:rotate-12:hover{ + --tw-rotate: 12deg; + } + + .xl\:hover\:rotate-45:hover{ + --tw-rotate: 45deg; + } + + .xl\:hover\:rotate-90:hover{ + --tw-rotate: 90deg; + } + + .xl\:hover\:rotate-180:hover{ + --tw-rotate: 180deg; + } + + .xl\:hover\:-rotate-180:hover{ + --tw-rotate: -180deg; + } + + .xl\:hover\:-rotate-90:hover{ + --tw-rotate: -90deg; + } + + .xl\:hover\:-rotate-45:hover{ + --tw-rotate: -45deg; + } + + .xl\:hover\:-rotate-12:hover{ + --tw-rotate: -12deg; + } + + .xl\:hover\:-rotate-6:hover{ + --tw-rotate: -6deg; + } + + .xl\:hover\:-rotate-3:hover{ + --tw-rotate: -3deg; + } + + .xl\:hover\:-rotate-2:hover{ + --tw-rotate: -2deg; + } + + .xl\:hover\:-rotate-1:hover{ + --tw-rotate: -1deg; + } + + .xl\:focus\:rotate-0:focus{ + --tw-rotate: 0deg; + } + + .xl\:focus\:rotate-1:focus{ + --tw-rotate: 1deg; + } + + .xl\:focus\:rotate-2:focus{ + --tw-rotate: 2deg; + } + + .xl\:focus\:rotate-3:focus{ + --tw-rotate: 3deg; + } + + .xl\:focus\:rotate-6:focus{ + --tw-rotate: 6deg; + } + + .xl\:focus\:rotate-12:focus{ + --tw-rotate: 12deg; + } + + .xl\:focus\:rotate-45:focus{ + --tw-rotate: 45deg; + } + + .xl\:focus\:rotate-90:focus{ + --tw-rotate: 90deg; + } + + .xl\:focus\:rotate-180:focus{ + --tw-rotate: 180deg; + } + + .xl\:focus\:-rotate-180:focus{ + --tw-rotate: -180deg; + } + + .xl\:focus\:-rotate-90:focus{ + --tw-rotate: -90deg; + } + + .xl\:focus\:-rotate-45:focus{ + --tw-rotate: -45deg; + } + + .xl\:focus\:-rotate-12:focus{ + --tw-rotate: -12deg; + } + + .xl\:focus\:-rotate-6:focus{ + --tw-rotate: -6deg; + } + + .xl\:focus\:-rotate-3:focus{ + --tw-rotate: -3deg; + } + + .xl\:focus\:-rotate-2:focus{ + --tw-rotate: -2deg; + } + + .xl\:focus\:-rotate-1:focus{ + --tw-rotate: -1deg; + } + + .xl\:skew-x-0{ + --tw-skew-x: 0deg; + } + + .xl\:skew-x-1{ + --tw-skew-x: 1deg; + } + + .xl\:skew-x-2{ + --tw-skew-x: 2deg; + } + + .xl\:skew-x-3{ + --tw-skew-x: 3deg; + } + + .xl\:skew-x-6{ + --tw-skew-x: 6deg; + } + + .xl\:skew-x-12{ + --tw-skew-x: 12deg; + } + + .xl\:-skew-x-12{ + --tw-skew-x: -12deg; + } + + .xl\:-skew-x-6{ + --tw-skew-x: -6deg; + } + + .xl\:-skew-x-3{ + --tw-skew-x: -3deg; + } + + .xl\:-skew-x-2{ + --tw-skew-x: -2deg; + } + + .xl\:-skew-x-1{ + --tw-skew-x: -1deg; + } + + .xl\:skew-y-0{ + --tw-skew-y: 0deg; + } + + .xl\:skew-y-1{ + --tw-skew-y: 1deg; + } + + .xl\:skew-y-2{ + --tw-skew-y: 2deg; + } + + .xl\:skew-y-3{ + --tw-skew-y: 3deg; + } + + .xl\:skew-y-6{ + --tw-skew-y: 6deg; + } + + .xl\:skew-y-12{ + --tw-skew-y: 12deg; + } + + .xl\:-skew-y-12{ + --tw-skew-y: -12deg; + } + + .xl\:-skew-y-6{ + --tw-skew-y: -6deg; + } + + .xl\:-skew-y-3{ + --tw-skew-y: -3deg; + } + + .xl\:-skew-y-2{ + --tw-skew-y: -2deg; + } + + .xl\:-skew-y-1{ + --tw-skew-y: -1deg; + } + + .xl\:hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; + } + + .xl\:hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; + } + + .xl\:hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; + } + + .xl\:hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; + } + + .xl\:hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; + } + + .xl\:hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; + } + + .xl\:hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; + } + + .xl\:hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; + } + + .xl\:hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; + } + + .xl\:hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; + } + + .xl\:hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; + } + + .xl\:hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; + } + + .xl\:hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; + } + + .xl\:hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; + } + + .xl\:hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; + } + + .xl\:hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; + } + + .xl\:hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; + } + + .xl\:hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; + } + + .xl\:hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; + } + + .xl\:hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; + } + + .xl\:hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; + } + + .xl\:hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; + } + + .xl\:focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; + } + + .xl\:focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; + } + + .xl\:focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; + } + + .xl\:focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; + } + + .xl\:focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; + } + + .xl\:focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; + } + + .xl\:focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; + } + + .xl\:focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; + } + + .xl\:focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; + } + + .xl\:focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; + } + + .xl\:focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; + } + + .xl\:focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; + } + + .xl\:focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; + } + + .xl\:focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; + } + + .xl\:focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; + } + + .xl\:focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; + } + + .xl\:focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; + } + + .xl\:focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; + } + + .xl\:focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; + } + + .xl\:focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; + } + + .xl\:focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; + } + + .xl\:focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; + } + + .xl\:scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:scale-x-0{ + --tw-scale-x: 0; + } + + .xl\:scale-x-50{ + --tw-scale-x: .5; + } + + .xl\:scale-x-75{ + --tw-scale-x: .75; + } + + .xl\:scale-x-90{ + --tw-scale-x: .9; + } + + .xl\:scale-x-95{ + --tw-scale-x: .95; + } + + .xl\:scale-x-100{ + --tw-scale-x: 1; + } + + .xl\:scale-x-105{ + --tw-scale-x: 1.05; + } + + .xl\:scale-x-110{ + --tw-scale-x: 1.1; + } + + .xl\:scale-x-125{ + --tw-scale-x: 1.25; + } + + .xl\:scale-x-150{ + --tw-scale-x: 1.5; + } + + .xl\:scale-y-0{ + --tw-scale-y: 0; + } + + .xl\:scale-y-50{ + --tw-scale-y: .5; + } + + .xl\:scale-y-75{ + --tw-scale-y: .75; + } + + .xl\:scale-y-90{ + --tw-scale-y: .9; + } + + .xl\:scale-y-95{ + --tw-scale-y: .95; + } + + .xl\:scale-y-100{ + --tw-scale-y: 1; + } + + .xl\:scale-y-105{ + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110{ + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125{ + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150{ + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-x-0:hover{ + --tw-scale-x: 0; + } + + .xl\:hover\:scale-x-50:hover{ + --tw-scale-x: .5; + } + + .xl\:hover\:scale-x-75:hover{ + --tw-scale-x: .75; + } + + .xl\:hover\:scale-x-90:hover{ + --tw-scale-x: .9; + } + + .xl\:hover\:scale-x-95:hover{ + --tw-scale-x: .95; + } + + .xl\:hover\:scale-x-100:hover{ + --tw-scale-x: 1; + } + + .xl\:hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; + } + + .xl\:hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; + } + + .xl\:hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; + } + + .xl\:hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; + } + + .xl\:hover\:scale-y-0:hover{ + --tw-scale-y: 0; + } + + .xl\:hover\:scale-y-50:hover{ + --tw-scale-y: .5; + } + + .xl\:hover\:scale-y-75:hover{ + --tw-scale-y: .75; + } + + .xl\:hover\:scale-y-90:hover{ + --tw-scale-y: .9; + } + + .xl\:hover\:scale-y-95:hover{ + --tw-scale-y: .95; + } + + .xl\:hover\:scale-y-100:hover{ + --tw-scale-y: 1; + } + + .xl\:hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-x-0:focus{ + --tw-scale-x: 0; + } + + .xl\:focus\:scale-x-50:focus{ + --tw-scale-x: .5; + } + + .xl\:focus\:scale-x-75:focus{ + --tw-scale-x: .75; + } + + .xl\:focus\:scale-x-90:focus{ + --tw-scale-x: .9; + } + + .xl\:focus\:scale-x-95:focus{ + --tw-scale-x: .95; + } + + .xl\:focus\:scale-x-100:focus{ + --tw-scale-x: 1; + } + + .xl\:focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; + } + + .xl\:focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; + } + + .xl\:focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; + } + + .xl\:focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; + } + + .xl\:focus\:scale-y-0:focus{ + --tw-scale-y: 0; + } + + .xl\:focus\:scale-y-50:focus{ + --tw-scale-y: .5; + } + + .xl\:focus\:scale-y-75:focus{ + --tw-scale-y: .75; + } + + .xl\:focus\:scale-y-90:focus{ + --tw-scale-y: .9; + } + + .xl\:focus\:scale-y-95:focus{ + --tw-scale-y: .95; + } + + .xl\:focus\:scale-y-100:focus{ + --tw-scale-y: 1; + } + + .xl\:focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; + } + + .xl\:animate-none{ + -webkit-animation: none; + animation: none; + } + + .xl\:animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .xl\:animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .xl\:animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .xl\:animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } + + .xl\:cursor-auto{ + cursor: auto; + } + + .xl\:cursor-default{ + cursor: default; + } + + .xl\:cursor-pointer{ + cursor: pointer; + } + + .xl\:cursor-wait{ + cursor: wait; + } + + .xl\:cursor-text{ + cursor: text; + } + + .xl\:cursor-move{ + cursor: move; + } + + .xl\:cursor-help{ + cursor: help; + } + + .xl\:cursor-not-allowed{ + cursor: not-allowed; + } + + .xl\:select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .xl\:select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .xl\:select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; + } + + .xl\:select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .xl\:resize-none{ + resize: none; + } + + .xl\:resize-y{ + resize: vertical; + } + + .xl\:resize-x{ + resize: horizontal; + } + + .xl\:resize{ + resize: both; + } + + .xl\:list-inside{ + list-style-position: inside; + } + + .xl\:list-outside{ + list-style-position: outside; + } + + .xl\:list-none{ + list-style-type: none; + } + + .xl\:list-disc{ + list-style-type: disc; + } + + .xl\:list-decimal{ + list-style-type: decimal; + } + + .xl\:appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .xl\:auto-cols-auto{ + grid-auto-columns: auto; + } + + .xl\:auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .xl\:auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .xl\:auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); + } + + .xl\:grid-flow-row{ + grid-auto-flow: row; + } + + .xl\:grid-flow-col{ + grid-auto-flow: column; + } + + .xl\:grid-flow-row-dense{ + grid-auto-flow: row dense; + } + + .xl\:grid-flow-col-dense{ + grid-auto-flow: column dense; + } + + .xl\:auto-rows-auto{ + grid-auto-rows: auto; + } + + .xl\:auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .xl\:auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .xl\:auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); + } + + .xl\:grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-cols-3{ + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-cols-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-cols-5{ + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-cols-6{ + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-cols-7{ + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .xl\:grid-cols-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .xl\:grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .xl\:grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .xl\:grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .xl\:grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .xl\:grid-cols-none{ + grid-template-columns: none; + } + + .xl\:grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-rows-none{ + grid-template-rows: none; + } + + .xl\:flex-row{ + flex-direction: row; + } + + .xl\:flex-row-reverse{ + flex-direction: row-reverse; + } + + .xl\:flex-col{ + flex-direction: column; + } + + .xl\:flex-col-reverse{ + flex-direction: column-reverse; + } + + .xl\:flex-wrap{ + flex-wrap: wrap; + } + + .xl\:flex-wrap-reverse{ + flex-wrap: wrap-reverse; + } + + .xl\:flex-nowrap{ + flex-wrap: nowrap; + } + + .xl\:place-content-center{ + place-content: center; + } + + .xl\:place-content-start{ + place-content: start; + } + + .xl\:place-content-end{ + place-content: end; + } + + .xl\:place-content-between{ + place-content: space-between; + } + + .xl\:place-content-around{ + place-content: space-around; + } + + .xl\:place-content-evenly{ + place-content: space-evenly; + } + + .xl\:place-content-stretch{ + place-content: stretch; + } + + .xl\:place-items-start{ + place-items: start; + } + + .xl\:place-items-end{ + place-items: end; + } + + .xl\:place-items-center{ + place-items: center; + } + + .xl\:place-items-stretch{ + place-items: stretch; + } + + .xl\:content-center{ + align-content: center; + } + + .xl\:content-start{ + align-content: flex-start; + } + + .xl\:content-end{ + align-content: flex-end; + } + + .xl\:content-between{ + align-content: space-between; + } + + .xl\:content-around{ + align-content: space-around; + } + + .xl\:content-evenly{ + align-content: space-evenly; + } + + .xl\:items-start{ + align-items: flex-start; + } + + .xl\:items-end{ + align-items: flex-end; + } + + .xl\:items-center{ + align-items: center; + } + + .xl\:items-baseline{ + align-items: baseline; + } + + .xl\:items-stretch{ + align-items: stretch; + } + + .xl\:justify-start{ + justify-content: flex-start; + } + + .xl\:justify-end{ + justify-content: flex-end; + } + + .xl\:justify-center{ + justify-content: center; + } + + .xl\:justify-between{ + justify-content: space-between; + } + + .xl\:justify-around{ + justify-content: space-around; + } + + .xl\:justify-evenly{ + justify-content: space-evenly; + } + + .xl\:justify-items-start{ + justify-items: start; + } + + .xl\:justify-items-end{ + justify-items: end; + } + + .xl\:justify-items-center{ + justify-items: center; + } + + .xl\:justify-items-stretch{ + justify-items: stretch; + } + + .xl\:gap-0{ + gap: 0px; + } + + .xl\:gap-1{ + gap: 0.25rem; + } + + .xl\:gap-2{ + gap: 0.5rem; + } + + .xl\:gap-3{ + gap: 0.75rem; + } + + .xl\:gap-4{ + gap: 1rem; + } + + .xl\:gap-5{ + gap: 1.25rem; + } + + .xl\:gap-6{ + gap: 1.5rem; + } + + .xl\:gap-7{ + gap: 1.75rem; + } + + .xl\:gap-8{ + gap: 2rem; + } + + .xl\:gap-9{ + gap: 2.25rem; + } + + .xl\:gap-10{ + gap: 2.5rem; + } + + .xl\:gap-11{ + gap: 2.75rem; + } + + .xl\:gap-12{ + gap: 3rem; + } + + .xl\:gap-14{ + gap: 3.5rem; + } + + .xl\:gap-16{ + gap: 4rem; + } + + .xl\:gap-20{ + gap: 5rem; + } + + .xl\:gap-24{ + gap: 6rem; + } + + .xl\:gap-28{ + gap: 7rem; + } + + .xl\:gap-32{ + gap: 8rem; + } + + .xl\:gap-36{ + gap: 9rem; + } + + .xl\:gap-40{ + gap: 10rem; + } + + .xl\:gap-44{ + gap: 11rem; + } + + .xl\:gap-48{ + gap: 12rem; + } + + .xl\:gap-52{ + gap: 13rem; + } + + .xl\:gap-56{ + gap: 14rem; + } + + .xl\:gap-60{ + gap: 15rem; + } + + .xl\:gap-64{ + gap: 16rem; + } + + .xl\:gap-72{ + gap: 18rem; + } + + .xl\:gap-80{ + gap: 20rem; + } + + .xl\:gap-96{ + gap: 24rem; + } + + .xl\:gap-px{ + gap: 1px; + } + + .xl\:gap-0\.5{ + gap: 0.125rem; + } + + .xl\:gap-1\.5{ + gap: 0.375rem; + } + + .xl\:gap-2\.5{ + gap: 0.625rem; + } + + .xl\:gap-3\.5{ + gap: 0.875rem; + } + + .xl\:gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; + } + + .xl\:gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .xl\:gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .xl\:gap-x-3{ + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .xl\:gap-x-4{ + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .xl\:gap-x-5{ + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .xl\:gap-x-6{ + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .xl\:gap-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .xl\:gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .xl\:gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .xl\:gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .xl\:gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .xl\:gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .xl\:gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .xl\:gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .xl\:gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .xl\:gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .xl\:gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .xl\:gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .xl\:gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .xl\:gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .xl\:gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .xl\:gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .xl\:gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .xl\:gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .xl\:gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .xl\:gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .xl\:gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .xl\:gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .xl\:gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .xl\:gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; + } + + .xl\:gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .xl\:gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .xl\:gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .xl\:gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .xl\:gap-y-0{ + row-gap: 0px; + } + + .xl\:gap-y-1{ + row-gap: 0.25rem; + } + + .xl\:gap-y-2{ + row-gap: 0.5rem; + } + + .xl\:gap-y-3{ + row-gap: 0.75rem; + } + + .xl\:gap-y-4{ + row-gap: 1rem; + } + + .xl\:gap-y-5{ + row-gap: 1.25rem; + } + + .xl\:gap-y-6{ + row-gap: 1.5rem; + } + + .xl\:gap-y-7{ + row-gap: 1.75rem; + } + + .xl\:gap-y-8{ + row-gap: 2rem; + } + + .xl\:gap-y-9{ + row-gap: 2.25rem; + } + + .xl\:gap-y-10{ + row-gap: 2.5rem; + } + + .xl\:gap-y-11{ + row-gap: 2.75rem; + } + + .xl\:gap-y-12{ + row-gap: 3rem; + } + + .xl\:gap-y-14{ + row-gap: 3.5rem; + } + + .xl\:gap-y-16{ + row-gap: 4rem; + } + + .xl\:gap-y-20{ + row-gap: 5rem; + } + + .xl\:gap-y-24{ + row-gap: 6rem; + } + + .xl\:gap-y-28{ + row-gap: 7rem; + } + + .xl\:gap-y-32{ + row-gap: 8rem; + } + + .xl\:gap-y-36{ + row-gap: 9rem; + } + + .xl\:gap-y-40{ + row-gap: 10rem; + } + + .xl\:gap-y-44{ + row-gap: 11rem; + } + + .xl\:gap-y-48{ + row-gap: 12rem; + } + + .xl\:gap-y-52{ + row-gap: 13rem; + } + + .xl\:gap-y-56{ + row-gap: 14rem; + } + + .xl\:gap-y-60{ + row-gap: 15rem; + } + + .xl\:gap-y-64{ + row-gap: 16rem; + } + + .xl\:gap-y-72{ + row-gap: 18rem; + } + + .xl\:gap-y-80{ + row-gap: 20rem; + } + + .xl\:gap-y-96{ + row-gap: 24rem; + } + + .xl\:gap-y-px{ + row-gap: 1px; + } + + .xl\:gap-y-0\.5{ + row-gap: 0.125rem; + } + + .xl\:gap-y-1\.5{ + row-gap: 0.375rem; + } + + .xl\:gap-y-2\.5{ + row-gap: 0.625rem; + } + + .xl\:gap-y-3\.5{ + row-gap: 0.875rem; + } + + .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\: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))); + } + + .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-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))); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\: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)); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\: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)); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\: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)); + } + + .xl\: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)); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-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)); + } + + .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-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)); + } + + .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-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)); + } + + .xl\:-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)); + } + + .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; + } + + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; + } + + .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\: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))); + } + + .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\: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))); + } + + .xl\: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)); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\: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)); + } + + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; + } + + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; + } + + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; + } + + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; + } + + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; + } + + .xl\:divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; + } + + .xl\:divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; + } + + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; + } + + .xl\:divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; + } + + .xl\:divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .xl\:divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); + } + + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); + } + + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); + } + + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); + } + + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); + } + + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); + } + + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); + } + + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); + } + + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); + } + + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); + } + + .xl\:divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); + } + + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); + } + + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); + } + + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); + } + + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); + } + + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); + } + + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); + } + + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); + } + + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); + } + + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); + } + + .xl\:divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); + } + + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); + } + + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); + } + + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; + } + + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; + } + + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; + } + + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; + } + + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; + } + + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; + } + + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; + } + + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; + } + + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; + } + + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; + } + + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; + } + + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; + } + + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; + } + + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; + } + + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + } + + .xl\:place-self-auto{ + place-self: auto; + } + + .xl\:place-self-start{ + place-self: start; + } + + .xl\:place-self-end{ + place-self: end; + } + + .xl\:place-self-center{ + place-self: center; + } + + .xl\:place-self-stretch{ + place-self: stretch; + } + + .xl\:self-auto{ + align-self: auto; + } + + .xl\:self-start{ + align-self: flex-start; + } + + .xl\:self-end{ + align-self: flex-end; + } + + .xl\:self-center{ + align-self: center; + } + + .xl\:self-stretch{ + align-self: stretch; + } + + .xl\:self-baseline{ + align-self: baseline; + } + + .xl\:justify-self-auto{ + justify-self: auto; + } + + .xl\:justify-self-start{ + justify-self: start; + } + + .xl\:justify-self-end{ + justify-self: end; + } + + .xl\:justify-self-center{ + justify-self: center; + } + + .xl\:justify-self-stretch{ + justify-self: stretch; + } + + .xl\:overflow-auto{ + overflow: auto; + } + + .xl\:overflow-hidden{ + overflow: hidden; + } + + .xl\:overflow-visible{ + overflow: visible; + } + + .xl\:overflow-scroll{ + overflow: scroll; + } + + .xl\:overflow-x-auto{ + overflow-x: auto; + } + + .xl\:overflow-y-auto{ + overflow-y: auto; + } + + .xl\:overflow-x-hidden{ + overflow-x: hidden; + } + + .xl\:overflow-y-hidden{ + overflow-y: hidden; + } + + .xl\:overflow-x-visible{ + overflow-x: visible; + } + + .xl\:overflow-y-visible{ + overflow-y: visible; + } + + .xl\:overflow-x-scroll{ + overflow-x: scroll; + } + + .xl\:overflow-y-scroll{ + overflow-y: scroll; + } + + .xl\:overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .xl\:overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .xl\:overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .xl\:overscroll-y-auto{ + overscroll-behavior-y: auto; + } + + .xl\:overscroll-y-contain{ + overscroll-behavior-y: contain; + } + + .xl\:overscroll-y-none{ + overscroll-behavior-y: none; + } + + .xl\:overscroll-x-auto{ + overscroll-behavior-x: auto; + } + + .xl\:overscroll-x-contain{ + overscroll-behavior-x: contain; + } + + .xl\:overscroll-x-none{ + overscroll-behavior-x: none; + } + + .xl\:truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .xl\:overflow-ellipsis{ + text-overflow: ellipsis; + } + + .xl\:overflow-clip{ + text-overflow: clip; + } + + .xl\:whitespace-normal{ + white-space: normal; + } + + .xl\:whitespace-nowrap{ + white-space: nowrap; + } + + .xl\:whitespace-pre{ + white-space: pre; + } + + .xl\:whitespace-pre-line{ + white-space: pre-line; + } + + .xl\:whitespace-pre-wrap{ + white-space: pre-wrap; + } + + .xl\:break-normal{ + overflow-wrap: normal; + word-break: normal; + } + + .xl\:break-words{ + overflow-wrap: break-word; + } + + .xl\:break-all{ + word-break: break-all; + } + + .xl\:rounded-none{ + border-radius: 0px; + } + + .xl\:rounded-sm{ + border-radius: 0.125rem; + } + + .xl\:rounded{ + border-radius: 0.25rem; + } + + .xl\:rounded-md{ + border-radius: 0.375rem; + } + + .xl\:rounded-lg{ + border-radius: 0.5rem; + } + + .xl\:rounded-xl{ + border-radius: 0.75rem; + } + + .xl\:rounded-2xl{ + border-radius: 1rem; + } + + .xl\:rounded-3xl{ + border-radius: 1.5rem; + } + + .xl\:rounded-full{ + border-radius: 9999px; + } + + .xl\:rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; + } + + .xl\:rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .xl\:rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .xl\:rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + } + + .xl\:rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .xl\:rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + } + + .xl\:rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .xl\:rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + } + + .xl\:rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .xl\:rounded-tl-none{ + border-top-left-radius: 0px; + } + + .xl\:rounded-tl-sm{ + border-top-left-radius: 0.125rem; + } + + .xl\:rounded-tl{ + border-top-left-radius: 0.25rem; + } + + .xl\:rounded-tl-md{ + border-top-left-radius: 0.375rem; + } + + .xl\:rounded-tl-lg{ + border-top-left-radius: 0.5rem; + } + + .xl\:rounded-tl-xl{ + border-top-left-radius: 0.75rem; + } + + .xl\:rounded-tl-2xl{ + border-top-left-radius: 1rem; + } + + .xl\:rounded-tl-3xl{ + border-top-left-radius: 1.5rem; + } + + .xl\:rounded-tl-full{ + border-top-left-radius: 9999px; + } + + .xl\:rounded-tr-none{ + border-top-right-radius: 0px; + } + + .xl\:rounded-tr-sm{ + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-tr{ + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-tr-md{ + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-tr-lg{ + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-tr-xl{ + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-tr-2xl{ + border-top-right-radius: 1rem; + } + + .xl\:rounded-tr-3xl{ + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-tr-full{ + border-top-right-radius: 9999px; + } + + .xl\:rounded-br-none{ + border-bottom-right-radius: 0px; + } + + .xl\:rounded-br-sm{ + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-br{ + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-br-md{ + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-br-lg{ + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-br-xl{ + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-br-2xl{ + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-br-full{ + border-bottom-right-radius: 9999px; + } + + .xl\:rounded-bl-none{ + border-bottom-left-radius: 0px; + } + + .xl\:rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-bl{ + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-bl-md{ + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-bl-2xl{ + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-bl-full{ + border-bottom-left-radius: 9999px; + } + + .xl\:border-0{ + border-width: 0px; + } + + .xl\:border-2{ + border-width: 2px; + } + + .xl\:border-4{ + border-width: 4px; + } + + .xl\:border-8{ + border-width: 8px; + } + + .xl\:border{ + border-width: 1px; + } + + .xl\:border-t-0{ + border-top-width: 0px; + } + + .xl\:border-t-2{ + border-top-width: 2px; + } + + .xl\:border-t-4{ + border-top-width: 4px; + } + + .xl\:border-t-8{ + border-top-width: 8px; + } + + .xl\:border-t{ + border-top-width: 1px; + } + + .xl\:border-r-0{ + border-right-width: 0px; + } + + .xl\:border-r-2{ + border-right-width: 2px; + } + + .xl\:border-r-4{ + border-right-width: 4px; + } + + .xl\:border-r-8{ + border-right-width: 8px; + } + + .xl\:border-r{ + border-right-width: 1px; + } + + .xl\:border-b-0{ + border-bottom-width: 0px; + } + + .xl\:border-b-2{ + border-bottom-width: 2px; + } + + .xl\:border-b-4{ + border-bottom-width: 4px; + } + + .xl\:border-b-8{ + border-bottom-width: 8px; + } + + .xl\:border-b{ + border-bottom-width: 1px; + } + + .xl\:border-l-0{ + border-left-width: 0px; + } + + .xl\:border-l-2{ + border-left-width: 2px; + } + + .xl\:border-l-4{ + border-left-width: 4px; + } + + .xl\:border-l-8{ + border-left-width: 8px; + } + + .xl\:border-l{ + border-left-width: 1px; + } + + .xl\:border-solid{ + border-style: solid; + } + + .xl\:border-dashed{ + border-style: dashed; + } + + .xl\:border-dotted{ + border-style: dotted; + } + + .xl\:border-double{ + border-style: double; + } + + .xl\:border-none{ + border-style: none; + } + + .xl\:border-transparent{ + border-color: transparent; + } + + .xl\:border-current{ + border-color: currentColor; + } + + .xl\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .xl\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .xl\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .xl\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .xl\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .xl\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .xl\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .xl\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .xl\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .xl\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .xl\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .xl\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .xl\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .xl\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .xl\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .xl\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .xl\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .xl\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .xl\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .xl\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .xl\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .xl\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .xl\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .xl\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .xl\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .xl\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .xl\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .xl\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .xl\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .xl\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .xl\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .xl\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .xl\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .xl\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .xl\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .xl\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .xl\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .xl\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .xl\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .xl\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .xl\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .xl\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .xl\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .xl\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .xl\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .xl\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .xl\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .xl\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .xl\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .xl\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .xl\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .xl\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .xl\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .xl\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .xl\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .xl\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .xl\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .xl\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .xl\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .xl\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .xl\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .xl\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .xl\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .xl\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .xl\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .xl\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .xl\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .xl\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .xl\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .xl\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .xl\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .xl\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .xl\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .xl\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .xl\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .xl\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .xl\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .xl\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .xl\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .xl\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .xl\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .xl\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .xl\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .xl\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .xl\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .xl\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .xl\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .xl\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .xl\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-transparent{ + border-color: transparent; + } + + .group:hover .xl\:group-hover\:border-current{ + border-color: currentColor; + } + + .group:hover .xl\:group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-transparent:focus-within{ + border-color: transparent; + } + + .xl\:focus-within\:border-current:focus-within{ + border-color: currentColor; + } + + .xl\:focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .xl\:hover\:border-transparent:hover{ + border-color: transparent; + } + + .xl\:hover\:border-current:hover{ + border-color: currentColor; + } + + .xl\:hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .xl\:hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .xl\:hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .xl\:hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .xl\:hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .xl\:focus\:border-transparent:focus{ + border-color: transparent; + } + + .xl\:focus\:border-current:focus{ + border-color: currentColor; + } + + .xl\:focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .xl\:focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .xl\:focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .xl\:focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .xl\:focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .xl\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .xl\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .xl\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .xl\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .xl\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .xl\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .xl\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .xl\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .xl\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .xl\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .xl\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .xl\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .xl\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .xl\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .xl\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .group:hover .xl\:group-hover\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .group:hover .xl\:group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .xl\:focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; + } + + .xl\:focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; + } + + .xl\:focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; + } + + .xl\:focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; + } + + .xl\:focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; + } + + .xl\:focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; + } + + .xl\:focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; + } + + .xl\:focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; + } + + .xl\:focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; + } + + .xl\:focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; + } + + .xl\:focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; + } + + .xl\:focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; + } + + .xl\:focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; + } + + .xl\:focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; + } + + .xl\:focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; + } + + .xl\:hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; + } + + .xl\:hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; + } + + .xl\:hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; + } + + .xl\:hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; + } + + .xl\:hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; + } + + .xl\:hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; + } + + .xl\:hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; + } + + .xl\:hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; + } + + .xl\:hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; + } + + .xl\:hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; + } + + .xl\:hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; + } + + .xl\:hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; + } + + .xl\:hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; + } + + .xl\:hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; + } + + .xl\:hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; + } + + .xl\:focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; + } + + .xl\:focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; + } + + .xl\:focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; + } + + .xl\:focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; + } + + .xl\:focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; + } + + .xl\:focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; + } + + .xl\:focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; + } + + .xl\:focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; + } + + .xl\:focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; + } + + .xl\:focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; + } + + .xl\:focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; + } + + .xl\:focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; + } + + .xl\:focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; + } + + .xl\:focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; + } + + .xl\:focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; + } + + .xl\:bg-transparent{ + background-color: transparent; + } + + .xl\:bg-current{ + background-color: currentColor; + } + + .xl\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .xl\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .xl\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .xl\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .xl\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .xl\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .xl\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .xl\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .xl\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .xl\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .xl\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .xl\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .xl\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .xl\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .xl\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .xl\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .xl\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .xl\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .xl\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .xl\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .xl\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .xl\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .xl\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-transparent{ + background-color: transparent; + } + + .group:hover .xl\:group-hover\:bg-current{ + background-color: currentColor; + } + + .group:hover .xl\:group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-transparent:focus-within{ + background-color: transparent; + } + + .xl\:focus-within\:bg-current:focus-within{ + background-color: currentColor; + } + + .xl\:focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-transparent:hover{ + background-color: transparent; + } + + .xl\:hover\:bg-current:hover{ + background-color: currentColor; + } + + .xl\:hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-transparent:focus{ + background-color: transparent; + } + + .xl\:focus\:bg-current:focus{ + background-color: currentColor; + } + + .xl\:focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .xl\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .xl\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .xl\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .xl\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .xl\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .xl\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .xl\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .xl\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .xl\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .xl\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .xl\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .xl\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .xl\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .xl\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .xl\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .group:hover .xl\:group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .group:hover .xl\:group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .xl\:focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; + } + + .xl\:focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; + } + + .xl\:focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; + } + + .xl\:focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; + } + + .xl\:focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; + } + + .xl\:focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; + } + + .xl\:focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; + } + + .xl\:focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; + } + + .xl\:focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; + } + + .xl\:focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; + } + + .xl\:focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; + } + + .xl\:focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; + } + + .xl\:focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; + } + + .xl\:focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; + } + + .xl\:focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; + } + + .xl\:hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; + } + + .xl\:hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; + } + + .xl\:hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; + } + + .xl\:hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; + } + + .xl\:hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; + } + + .xl\:hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; + } + + .xl\:hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; + } + + .xl\:hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; + } + + .xl\:hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; + } + + .xl\:hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; + } + + .xl\:hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; + } + + .xl\:hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; + } + + .xl\:hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; + } + + .xl\:hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; + } + + .xl\:hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; + } + + .xl\:focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; + } + + .xl\:focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; + } + + .xl\:focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; + } + + .xl\:focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; + } + + .xl\:focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; + } + + .xl\:focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; + } + + .xl\:focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; + } + + .xl\:focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; + } + + .xl\:focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; + } + + .xl\:focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; + } + + .xl\:focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; + } + + .xl\:focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; + } + + .xl\:focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; + } + + .xl\:focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; + } + + .xl\:focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; + } + + .xl\:bg-none{ + background-image: none; + } + + .xl\:bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .xl\:from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .xl\:focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .xl\:focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .xl\:focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .xl\:focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .xl\:focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .xl\:focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .xl\:focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .xl\:focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .xl\:focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .xl\:focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .xl\:focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .xl\:focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .xl\:focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .xl\:focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .xl\:focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .xl\:focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .xl\:focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .xl\:focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .xl\:focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .xl\:focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .xl\:focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .xl\:focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .xl\:focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .xl\:focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .xl\:focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .xl\:focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .xl\:focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .xl\:focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .xl\:focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .xl\:focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .xl\:focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .xl\:focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .xl\:focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .xl\:focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .xl\:focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .xl\:focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .xl\:focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .xl\:focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .xl\:focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .xl\:focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .xl\:focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .xl\:focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .xl\:focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .xl\:focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .xl\:focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .xl\:focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .xl\:focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .xl\:focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .xl\:focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .xl\:focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .xl\:focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .xl\:focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .xl\:focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .xl\:focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .xl\:focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .xl\:focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .xl\:focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .xl\:focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .xl\:focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .xl\:focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .xl\:focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .xl\:focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .xl\:focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .xl\:focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .xl\:focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .xl\:focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .xl\:focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .xl\:focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .xl\:focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .xl\:focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .xl\:focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .xl\:focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .xl\:focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .xl\:focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .xl\:focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .xl\:focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .xl\:focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .xl\:focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .xl\:focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .xl\:focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .xl\:focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .xl\:focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .xl\:focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .xl\:focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .xl\:focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .xl\:focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .xl\:focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .xl\:focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .xl\:focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .xl\:to-transparent{ + --tw-gradient-to: transparent; + } + + .xl\:to-current{ + --tw-gradient-to: currentColor; + } + + .xl\:to-black{ + --tw-gradient-to: #000; + } + + .xl\:to-white{ + --tw-gradient-to: #fff; + } + + .xl\:to-gray-100{ + --tw-gradient-to: #f7fafc; + } + + .xl\:to-gray-200{ + --tw-gradient-to: #edf2f7; + } + + .xl\:to-gray-300{ + --tw-gradient-to: #e2e8f0; + } + + .xl\:to-gray-400{ + --tw-gradient-to: #cbd5e0; + } + + .xl\:to-gray-500{ + --tw-gradient-to: #a0aec0; + } + + .xl\:to-gray-600{ + --tw-gradient-to: #718096; + } + + .xl\:to-gray-700{ + --tw-gradient-to: #4a5568; + } + + .xl\:to-gray-800{ + --tw-gradient-to: #2d3748; + } + + .xl\:to-gray-900{ + --tw-gradient-to: #1a202c; + } + + .xl\:to-red-100{ + --tw-gradient-to: #fff5f5; + } + + .xl\:to-red-200{ + --tw-gradient-to: #fed7d7; + } + + .xl\:to-red-300{ + --tw-gradient-to: #feb2b2; + } + + .xl\:to-red-400{ + --tw-gradient-to: #fc8181; + } + + .xl\:to-red-500{ + --tw-gradient-to: #f56565; + } + + .xl\:to-red-600{ + --tw-gradient-to: #e53e3e; + } + + .xl\:to-red-700{ + --tw-gradient-to: #c53030; + } + + .xl\:to-red-800{ + --tw-gradient-to: #9b2c2c; + } + + .xl\:to-red-900{ + --tw-gradient-to: #742a2a; + } + + .xl\:to-orange-100{ + --tw-gradient-to: #fffaf0; + } + + .xl\:to-orange-200{ + --tw-gradient-to: #feebc8; + } + + .xl\:to-orange-300{ + --tw-gradient-to: #fbd38d; + } + + .xl\:to-orange-400{ + --tw-gradient-to: #f6ad55; + } + + .xl\:to-orange-500{ + --tw-gradient-to: #ed8936; + } + + .xl\:to-orange-600{ + --tw-gradient-to: #dd6b20; + } + + .xl\:to-orange-700{ + --tw-gradient-to: #c05621; + } + + .xl\:to-orange-800{ + --tw-gradient-to: #9c4221; + } + + .xl\:to-orange-900{ + --tw-gradient-to: #7b341e; + } + + .xl\:to-yellow-100{ + --tw-gradient-to: #fffff0; + } + + .xl\:to-yellow-200{ + --tw-gradient-to: #fefcbf; + } + + .xl\:to-yellow-300{ + --tw-gradient-to: #faf089; + } + + .xl\:to-yellow-400{ + --tw-gradient-to: #f6e05e; + } + + .xl\:to-yellow-500{ + --tw-gradient-to: #ecc94b; + } + + .xl\:to-yellow-600{ + --tw-gradient-to: #d69e2e; + } + + .xl\:to-yellow-700{ + --tw-gradient-to: #b7791f; + } + + .xl\:to-yellow-800{ + --tw-gradient-to: #975a16; + } + + .xl\:to-yellow-900{ + --tw-gradient-to: #744210; + } + + .xl\:to-green-100{ + --tw-gradient-to: #f0fff4; + } + + .xl\:to-green-200{ + --tw-gradient-to: #c6f6d5; + } + + .xl\:to-green-300{ + --tw-gradient-to: #9ae6b4; + } + + .xl\:to-green-400{ + --tw-gradient-to: #68d391; + } + + .xl\:to-green-500{ + --tw-gradient-to: #48bb78; + } + + .xl\:to-green-600{ + --tw-gradient-to: #38a169; + } + + .xl\:to-green-700{ + --tw-gradient-to: #2f855a; + } + + .xl\:to-green-800{ + --tw-gradient-to: #276749; + } + + .xl\:to-green-900{ + --tw-gradient-to: #22543d; + } + + .xl\:to-teal-100{ + --tw-gradient-to: #e6fffa; + } + + .xl\:to-teal-200{ + --tw-gradient-to: #b2f5ea; + } + + .xl\:to-teal-300{ + --tw-gradient-to: #81e6d9; + } + + .xl\:to-teal-400{ + --tw-gradient-to: #4fd1c5; + } + + .xl\:to-teal-500{ + --tw-gradient-to: #38b2ac; + } + + .xl\:to-teal-600{ + --tw-gradient-to: #319795; + } + + .xl\:to-teal-700{ + --tw-gradient-to: #2c7a7b; + } + + .xl\:to-teal-800{ + --tw-gradient-to: #285e61; + } + + .xl\:to-teal-900{ + --tw-gradient-to: #234e52; + } + + .xl\:to-blue-100{ + --tw-gradient-to: #ebf8ff; + } + + .xl\:to-blue-200{ + --tw-gradient-to: #bee3f8; + } + + .xl\:to-blue-300{ + --tw-gradient-to: #90cdf4; + } + + .xl\:to-blue-400{ + --tw-gradient-to: #63b3ed; + } + + .xl\:to-blue-500{ + --tw-gradient-to: #4299e1; + } + + .xl\:to-blue-600{ + --tw-gradient-to: #3182ce; + } + + .xl\:to-blue-700{ + --tw-gradient-to: #2b6cb0; + } + + .xl\:to-blue-800{ + --tw-gradient-to: #2c5282; + } + + .xl\:to-blue-900{ + --tw-gradient-to: #2a4365; + } + + .xl\:to-indigo-100{ + --tw-gradient-to: #ebf4ff; + } + + .xl\:to-indigo-200{ + --tw-gradient-to: #c3dafe; + } + + .xl\:to-indigo-300{ + --tw-gradient-to: #a3bffa; + } + + .xl\:to-indigo-400{ + --tw-gradient-to: #7f9cf5; + } + + .xl\:to-indigo-500{ + --tw-gradient-to: #667eea; + } + + .xl\:to-indigo-600{ + --tw-gradient-to: #5a67d8; + } + + .xl\:to-indigo-700{ + --tw-gradient-to: #4c51bf; + } + + .xl\:to-indigo-800{ + --tw-gradient-to: #434190; + } + + .xl\:to-indigo-900{ + --tw-gradient-to: #3c366b; + } + + .xl\:to-purple-100{ + --tw-gradient-to: #faf5ff; + } + + .xl\:to-purple-200{ + --tw-gradient-to: #e9d8fd; + } + + .xl\:to-purple-300{ + --tw-gradient-to: #d6bcfa; + } + + .xl\:to-purple-400{ + --tw-gradient-to: #b794f4; + } + + .xl\:to-purple-500{ + --tw-gradient-to: #9f7aea; + } + + .xl\:to-purple-600{ + --tw-gradient-to: #805ad5; + } + + .xl\:to-purple-700{ + --tw-gradient-to: #6b46c1; + } + + .xl\:to-purple-800{ + --tw-gradient-to: #553c9a; + } + + .xl\:to-purple-900{ + --tw-gradient-to: #44337a; + } + + .xl\:to-pink-100{ + --tw-gradient-to: #fff5f7; + } + + .xl\:to-pink-200{ + --tw-gradient-to: #fed7e2; + } + + .xl\:to-pink-300{ + --tw-gradient-to: #fbb6ce; + } + + .xl\:to-pink-400{ + --tw-gradient-to: #f687b3; + } + + .xl\:to-pink-500{ + --tw-gradient-to: #ed64a6; + } + + .xl\:to-pink-600{ + --tw-gradient-to: #d53f8c; + } + + .xl\:to-pink-700{ + --tw-gradient-to: #b83280; + } + + .xl\:to-pink-800{ + --tw-gradient-to: #97266d; + } + + .xl\:to-pink-900{ + --tw-gradient-to: #702459; + } + + .xl\:hover\:to-transparent:hover{ + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-current:hover{ + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-black:hover{ + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover{ + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; + } + + .xl\:hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; + } + + .xl\:hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; + } + + .xl\:hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; + } + + .xl\:hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; + } + + .xl\:hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; + } + + .xl\:hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; + } + + .xl\:hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; + } + + .xl\:hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; + } + + .xl\:hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; + } + + .xl\:hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; + } + + .xl\:hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; + } + + .xl\:hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; + } + + .xl\:hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; + } + + .xl\:hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; + } + + .xl\:hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; + } + + .xl\:hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; + } + + .xl\:hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; + } + + .xl\:hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; + } + + .xl\:hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; + } + + .xl\:hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; + } + + .xl\:hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; + } + + .xl\:hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; + } + + .xl\:hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; + } + + .xl\:hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; + } + + .xl\:hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; + } + + .xl\:hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; + } + + .xl\:hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; + } + + .xl\:hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; + } + + .xl\:hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; + } + + .xl\:hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; + } + + .xl\:hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; + } + + .xl\:hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; + } + + .xl\:hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; + } + + .xl\:hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; + } + + .xl\:hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; + } + + .xl\:hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; + } + + .xl\:hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; + } + + .xl\:hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; + } + + .xl\:hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; + } + + .xl\:hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; + } + + .xl\:hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; + } + + .xl\:hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; + } + + .xl\:hover\:to-green-800:hover{ + --tw-gradient-to: #276749; + } + + .xl\:hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; + } + + .xl\:hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; + } + + .xl\:hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; + } + + .xl\:hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; + } + + .xl\:hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; + } + + .xl\:hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; + } + + .xl\:hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; + } + + .xl\:hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; + } + + .xl\:hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; + } + + .xl\:hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; + } + + .xl\:hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; + } + + .xl\:hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; + } + + .xl\:hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; + } + + .xl\:hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; + } + + .xl\:hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; + } + + .xl\:hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; + } + + .xl\:hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; + } + + .xl\:hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; + } + + .xl\:hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; + } + + .xl\:hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; + } + + .xl\:hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; + } + + .xl\:hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; + } + + .xl\:hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; + } + + .xl\:hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; + } + + .xl\:hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; + } + + .xl\:hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; + } + + .xl\:hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; + } + + .xl\:hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; + } + + .xl\:hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; + } + + .xl\:hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; + } + + .xl\:hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; + } + + .xl\:hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; + } + + .xl\:hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; + } + + .xl\:hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; + } + + .xl\:hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; + } + + .xl\:hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; + } + + .xl\:hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; + } + + .xl\:hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; + } + + .xl\:hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; + } + + .xl\:hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; + } + + .xl\:hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; + } + + .xl\:hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; + } + + .xl\:hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; + } + + .xl\:hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; + } + + .xl\:hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; + } + + .xl\:hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; + } + + .xl\:focus\:to-transparent:focus{ + --tw-gradient-to: transparent; + } + + .xl\:focus\:to-current:focus{ + --tw-gradient-to: currentColor; + } + + .xl\:focus\:to-black:focus{ + --tw-gradient-to: #000; + } + + .xl\:focus\:to-white:focus{ + --tw-gradient-to: #fff; + } + + .xl\:focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; + } + + .xl\:focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; + } + + .xl\:focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; + } + + .xl\:focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; + } + + .xl\:focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; + } + + .xl\:focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; + } + + .xl\:focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; + } + + .xl\:focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; + } + + .xl\:focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; + } + + .xl\:focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; + } + + .xl\:focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; + } + + .xl\:focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; + } + + .xl\:focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; + } + + .xl\:focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; + } + + .xl\:focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; + } + + .xl\:focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; + } + + .xl\:focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; + } + + .xl\:focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; + } + + .xl\:focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; + } + + .xl\:focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; + } + + .xl\:focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; + } + + .xl\:focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; + } + + .xl\:focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; + } + + .xl\:focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; + } + + .xl\:focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; + } + + .xl\:focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; + } + + .xl\:focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; + } + + .xl\:focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; + } + + .xl\:focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; + } + + .xl\:focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; + } + + .xl\:focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; + } + + .xl\:focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; + } + + .xl\:focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; + } + + .xl\:focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; + } + + .xl\:focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; + } + + .xl\:focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; + } + + .xl\:focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; + } + + .xl\:focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; + } + + .xl\:focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; + } + + .xl\:focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; + } + + .xl\:focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; + } + + .xl\:focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; + } + + .xl\:focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; + } + + .xl\:focus\:to-green-800:focus{ + --tw-gradient-to: #276749; + } + + .xl\:focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; + } + + .xl\:focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; + } + + .xl\:focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; + } + + .xl\:focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; + } + + .xl\:focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; + } + + .xl\:focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; + } + + .xl\:focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; + } + + .xl\:focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; + } + + .xl\:focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; + } + + .xl\:focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; + } + + .xl\:focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; + } + + .xl\:focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; + } + + .xl\:focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; + } + + .xl\:focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; + } + + .xl\:focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; + } + + .xl\:focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; + } + + .xl\:focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; + } + + .xl\:focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; + } + + .xl\:focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; + } + + .xl\:focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; + } + + .xl\:focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; + } + + .xl\:focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; + } + + .xl\:focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; + } + + .xl\:focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; + } + + .xl\:focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; + } + + .xl\:focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; + } + + .xl\:focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; + } + + .xl\:focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; + } + + .xl\:focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; + } + + .xl\:focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; + } + + .xl\:focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; + } + + .xl\:focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; + } + + .xl\:focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; + } + + .xl\:focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; + } + + .xl\:focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; + } + + .xl\:focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; + } + + .xl\:focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; + } + + .xl\:focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; + } + + .xl\:focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; + } + + .xl\:focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; + } + + .xl\:focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; + } + + .xl\:focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; + } + + .xl\:focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; + } + + .xl\:focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; + } + + .xl\:focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; + } + + .xl\:focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; + } + + .xl\:decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; + } + + .xl\:decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + } + + .xl\:bg-auto{ + background-size: auto; + } + + .xl\:bg-cover{ + background-size: cover; + } + + .xl\:bg-contain{ + background-size: contain; + } + + .xl\:bg-fixed{ + background-attachment: fixed; + } + + .xl\:bg-local{ + background-attachment: local; + } + + .xl\:bg-scroll{ + background-attachment: scroll; + } + + .xl\:bg-clip-border{ + background-clip: border-box; + } + + .xl\:bg-clip-padding{ + background-clip: padding-box; + } + + .xl\:bg-clip-content{ + background-clip: content-box; + } + + .xl\:bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; + } + + .xl\:bg-bottom{ + background-position: bottom; + } + + .xl\:bg-center{ + background-position: center; + } + + .xl\:bg-left{ + background-position: left; + } + + .xl\:bg-left-bottom{ + background-position: left bottom; + } + + .xl\:bg-left-top{ + background-position: left top; + } + + .xl\:bg-right{ + background-position: right; + } + + .xl\:bg-right-bottom{ + background-position: right bottom; + } + + .xl\:bg-right-top{ + background-position: right top; + } + + .xl\:bg-top{ + background-position: top; + } + + .xl\:bg-repeat{ + background-repeat: repeat; + } + + .xl\:bg-no-repeat{ + background-repeat: no-repeat; + } + + .xl\:bg-repeat-x{ + background-repeat: repeat-x; + } + + .xl\:bg-repeat-y{ + background-repeat: repeat-y; + } + + .xl\:bg-repeat-round{ + background-repeat: round; + } + + .xl\:bg-repeat-space{ + background-repeat: space; + } + + .xl\:bg-origin-border{ + background-origin: border-box; + } + + .xl\:bg-origin-padding{ + background-origin: padding-box; + } + + .xl\:bg-origin-content{ + background-origin: content-box; + } + + .xl\:fill-current{ + fill: currentColor; + } + + .xl\:stroke-current{ + stroke: currentColor; + } + + .xl\:stroke-0{ + stroke-width: 0; + } + + .xl\:stroke-1{ + stroke-width: 1; + } + + .xl\:stroke-2{ + stroke-width: 2; + } + + .xl\:object-contain{ + -o-object-fit: contain; + object-fit: contain; + } + + .xl\:object-cover{ + -o-object-fit: cover; + object-fit: cover; + } + + .xl\:object-fill{ + -o-object-fit: fill; + object-fit: fill; + } + + .xl\:object-none{ + -o-object-fit: none; + object-fit: none; + } + + .xl\:object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .xl\:object-bottom{ + -o-object-position: bottom; + object-position: bottom; + } + + .xl\:object-center{ + -o-object-position: center; + object-position: center; + } + + .xl\:object-left{ + -o-object-position: left; + object-position: left; + } + + .xl\:object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; + } + + .xl\:object-left-top{ + -o-object-position: left top; + object-position: left top; + } + + .xl\:object-right{ + -o-object-position: right; + object-position: right; + } + + .xl\:object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; + } + + .xl\:object-right-top{ + -o-object-position: right top; + object-position: right top; + } + + .xl\:object-top{ + -o-object-position: top; + object-position: top; + } + + .xl\:p-0{ + padding: 0px; + } + + .xl\:p-1{ + padding: 0.25rem; + } + + .xl\:p-2{ + padding: 0.5rem; + } + + .xl\:p-3{ + padding: 0.75rem; + } + + .xl\:p-4{ + padding: 1rem; + } + + .xl\:p-5{ + padding: 1.25rem; + } + + .xl\:p-6{ + padding: 1.5rem; + } + + .xl\:p-7{ + padding: 1.75rem; + } + + .xl\:p-8{ + padding: 2rem; + } + + .xl\:p-9{ + padding: 2.25rem; + } + + .xl\:p-10{ + padding: 2.5rem; + } + + .xl\:p-11{ + padding: 2.75rem; + } + + .xl\:p-12{ + padding: 3rem; + } + + .xl\:p-14{ + padding: 3.5rem; + } + + .xl\:p-16{ + padding: 4rem; + } + + .xl\:p-20{ + padding: 5rem; + } + + .xl\:p-24{ + padding: 6rem; + } + + .xl\:p-28{ + padding: 7rem; + } + + .xl\:p-32{ + padding: 8rem; + } + + .xl\:p-36{ + padding: 9rem; + } + + .xl\:p-40{ + padding: 10rem; + } + + .xl\:p-44{ + padding: 11rem; + } + + .xl\:p-48{ + padding: 12rem; + } + + .xl\:p-52{ + padding: 13rem; + } + + .xl\:p-56{ + padding: 14rem; + } + + .xl\:p-60{ + padding: 15rem; + } + + .xl\:p-64{ + padding: 16rem; + } + + .xl\:p-72{ + padding: 18rem; + } + + .xl\:p-80{ + padding: 20rem; + } + + .xl\:p-96{ + padding: 24rem; + } + + .xl\:p-px{ + padding: 1px; + } + + .xl\:p-0\.5{ + padding: 0.125rem; + } + + .xl\:p-1\.5{ + padding: 0.375rem; + } + + .xl\:p-2\.5{ + padding: 0.625rem; + } + + .xl\:p-3\.5{ + padding: 0.875rem; + } + + .xl\:px-0{ + padding-left: 0px; + padding-right: 0px; + } + + .xl\:px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .xl\:px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .xl\:px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .xl\:px-4{ + padding-left: 1rem; + padding-right: 1rem; + } + + .xl\:px-5{ + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .xl\:px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .xl\:px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .xl\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } + + .xl\:px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .xl\:px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .xl\:px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .xl\:px-12{ + padding-left: 3rem; + padding-right: 3rem; + } + + .xl\:px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .xl\:px-16{ + padding-left: 4rem; + padding-right: 4rem; + } + + .xl\:px-20{ + padding-left: 5rem; + padding-right: 5rem; + } + + .xl\:px-24{ + padding-left: 6rem; + padding-right: 6rem; + } + + .xl\:px-28{ + padding-left: 7rem; + padding-right: 7rem; + } + + .xl\:px-32{ + padding-left: 8rem; + padding-right: 8rem; + } + + .xl\:px-36{ + padding-left: 9rem; + padding-right: 9rem; + } + + .xl\:px-40{ + padding-left: 10rem; + padding-right: 10rem; + } + + .xl\:px-44{ + padding-left: 11rem; + padding-right: 11rem; + } + + .xl\:px-48{ + padding-left: 12rem; + padding-right: 12rem; + } + + .xl\:px-52{ + padding-left: 13rem; + padding-right: 13rem; + } + + .xl\:px-56{ + padding-left: 14rem; + padding-right: 14rem; + } + + .xl\:px-60{ + padding-left: 15rem; + padding-right: 15rem; + } + + .xl\:px-64{ + padding-left: 16rem; + padding-right: 16rem; + } + + .xl\:px-72{ + padding-left: 18rem; + padding-right: 18rem; + } + + .xl\:px-80{ + padding-left: 20rem; + padding-right: 20rem; + } + + .xl\:px-96{ + padding-left: 24rem; + padding-right: 24rem; + } + + .xl\:px-px{ + padding-left: 1px; + padding-right: 1px; + } + + .xl\:px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .xl\:px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .xl\:px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .xl\:px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .xl\:py-0{ + padding-top: 0px; + padding-bottom: 0px; + } + + .xl\:py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .xl\:py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .xl\:py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .xl\:py-4{ + padding-top: 1rem; + padding-bottom: 1rem; + } + + .xl\:py-5{ + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .xl\:py-6{ + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .xl\:py-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .xl\:py-8{ + padding-top: 2rem; + padding-bottom: 2rem; + } + + .xl\:py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .xl\:py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .xl\:py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .xl\:py-12{ + padding-top: 3rem; + padding-bottom: 3rem; + } + + .xl\:py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .xl\:py-16{ + padding-top: 4rem; + padding-bottom: 4rem; + } + + .xl\:py-20{ + padding-top: 5rem; + padding-bottom: 5rem; + } + + .xl\:py-24{ + padding-top: 6rem; + padding-bottom: 6rem; + } + + .xl\:py-28{ + padding-top: 7rem; + padding-bottom: 7rem; + } + + .xl\:py-32{ + padding-top: 8rem; + padding-bottom: 8rem; + } + + .xl\:py-36{ + padding-top: 9rem; + padding-bottom: 9rem; + } + + .xl\:py-40{ + padding-top: 10rem; + padding-bottom: 10rem; + } + + .xl\:py-44{ + padding-top: 11rem; + padding-bottom: 11rem; + } + + .xl\:py-48{ + padding-top: 12rem; + padding-bottom: 12rem; + } + + .xl\:py-52{ + padding-top: 13rem; + padding-bottom: 13rem; + } + + .xl\:py-56{ + padding-top: 14rem; + padding-bottom: 14rem; + } + + .xl\:py-60{ + padding-top: 15rem; + padding-bottom: 15rem; + } + + .xl\:py-64{ + padding-top: 16rem; + padding-bottom: 16rem; + } + + .xl\:py-72{ + padding-top: 18rem; + padding-bottom: 18rem; + } + + .xl\:py-80{ + padding-top: 20rem; + padding-bottom: 20rem; + } + + .xl\:py-96{ + padding-top: 24rem; + padding-bottom: 24rem; + } + + .xl\:py-px{ + padding-top: 1px; + padding-bottom: 1px; + } + + .xl\:py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .xl\:py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .xl\:py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .xl\:py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .xl\:pt-0{ + padding-top: 0px; + } + + .xl\:pt-1{ + padding-top: 0.25rem; + } + + .xl\:pt-2{ + padding-top: 0.5rem; + } + + .xl\:pt-3{ + padding-top: 0.75rem; + } + + .xl\:pt-4{ + padding-top: 1rem; + } + + .xl\:pt-5{ + padding-top: 1.25rem; + } + + .xl\:pt-6{ + padding-top: 1.5rem; + } + + .xl\:pt-7{ + padding-top: 1.75rem; + } + + .xl\:pt-8{ + padding-top: 2rem; + } + + .xl\:pt-9{ + padding-top: 2.25rem; + } + + .xl\:pt-10{ + padding-top: 2.5rem; + } + + .xl\:pt-11{ + padding-top: 2.75rem; + } + + .xl\:pt-12{ + padding-top: 3rem; + } + + .xl\:pt-14{ + padding-top: 3.5rem; + } + + .xl\:pt-16{ + padding-top: 4rem; + } + + .xl\:pt-20{ + padding-top: 5rem; + } + + .xl\:pt-24{ + padding-top: 6rem; + } + + .xl\:pt-28{ + padding-top: 7rem; + } + + .xl\:pt-32{ + padding-top: 8rem; + } + + .xl\:pt-36{ + padding-top: 9rem; + } + + .xl\:pt-40{ + padding-top: 10rem; + } + + .xl\:pt-44{ + padding-top: 11rem; + } + + .xl\:pt-48{ + padding-top: 12rem; + } + + .xl\:pt-52{ + padding-top: 13rem; + } + + .xl\:pt-56{ + padding-top: 14rem; + } + + .xl\:pt-60{ + padding-top: 15rem; + } + + .xl\:pt-64{ + padding-top: 16rem; + } + + .xl\:pt-72{ + padding-top: 18rem; + } + + .xl\:pt-80{ + padding-top: 20rem; + } + + .xl\:pt-96{ + padding-top: 24rem; + } + + .xl\:pt-px{ + padding-top: 1px; + } + + .xl\:pt-0\.5{ + padding-top: 0.125rem; + } + + .xl\:pt-1\.5{ + padding-top: 0.375rem; + } + + .xl\:pt-2\.5{ + padding-top: 0.625rem; + } + + .xl\:pt-3\.5{ + padding-top: 0.875rem; + } + + .xl\:pr-0{ + padding-right: 0px; + } + + .xl\:pr-1{ + padding-right: 0.25rem; + } + + .xl\:pr-2{ + padding-right: 0.5rem; + } + + .xl\:pr-3{ + padding-right: 0.75rem; + } + + .xl\:pr-4{ + padding-right: 1rem; + } + + .xl\:pr-5{ + padding-right: 1.25rem; + } + + .xl\:pr-6{ + padding-right: 1.5rem; + } + + .xl\:pr-7{ + padding-right: 1.75rem; + } + + .xl\:pr-8{ + padding-right: 2rem; + } + + .xl\:pr-9{ + padding-right: 2.25rem; + } + + .xl\:pr-10{ + padding-right: 2.5rem; + } + + .xl\:pr-11{ + padding-right: 2.75rem; + } + + .xl\:pr-12{ + padding-right: 3rem; + } + + .xl\:pr-14{ + padding-right: 3.5rem; + } + + .xl\:pr-16{ + padding-right: 4rem; + } + + .xl\:pr-20{ + padding-right: 5rem; + } + + .xl\:pr-24{ + padding-right: 6rem; + } + + .xl\:pr-28{ + padding-right: 7rem; + } + + .xl\:pr-32{ + padding-right: 8rem; + } + + .xl\:pr-36{ + padding-right: 9rem; + } + + .xl\:pr-40{ + padding-right: 10rem; + } + + .xl\:pr-44{ + padding-right: 11rem; + } + + .xl\:pr-48{ + padding-right: 12rem; + } + + .xl\:pr-52{ + padding-right: 13rem; + } + + .xl\:pr-56{ + padding-right: 14rem; + } + + .xl\:pr-60{ + padding-right: 15rem; + } + + .xl\:pr-64{ + padding-right: 16rem; + } + + .xl\:pr-72{ + padding-right: 18rem; + } + + .xl\:pr-80{ + padding-right: 20rem; + } + + .xl\:pr-96{ + padding-right: 24rem; + } + + .xl\:pr-px{ + padding-right: 1px; + } + + .xl\:pr-0\.5{ + padding-right: 0.125rem; + } + + .xl\:pr-1\.5{ + padding-right: 0.375rem; + } + + .xl\:pr-2\.5{ + padding-right: 0.625rem; + } + + .xl\:pr-3\.5{ + padding-right: 0.875rem; + } + + .xl\:pb-0{ + padding-bottom: 0px; + } + + .xl\:pb-1{ + padding-bottom: 0.25rem; + } + + .xl\:pb-2{ + padding-bottom: 0.5rem; + } + + .xl\:pb-3{ + padding-bottom: 0.75rem; + } + + .xl\:pb-4{ + padding-bottom: 1rem; + } + + .xl\:pb-5{ + padding-bottom: 1.25rem; + } + + .xl\:pb-6{ + padding-bottom: 1.5rem; + } + + .xl\:pb-7{ + padding-bottom: 1.75rem; + } + + .xl\:pb-8{ + padding-bottom: 2rem; + } + + .xl\:pb-9{ + padding-bottom: 2.25rem; + } + + .xl\:pb-10{ + padding-bottom: 2.5rem; + } + + .xl\:pb-11{ + padding-bottom: 2.75rem; + } + + .xl\:pb-12{ + padding-bottom: 3rem; + } + + .xl\:pb-14{ + padding-bottom: 3.5rem; + } + + .xl\:pb-16{ + padding-bottom: 4rem; + } + + .xl\:pb-20{ + padding-bottom: 5rem; + } + + .xl\:pb-24{ + padding-bottom: 6rem; + } + + .xl\:pb-28{ + padding-bottom: 7rem; + } + + .xl\:pb-32{ + padding-bottom: 8rem; + } + + .xl\:pb-36{ + padding-bottom: 9rem; + } + + .xl\:pb-40{ + padding-bottom: 10rem; + } + + .xl\:pb-44{ + padding-bottom: 11rem; + } + + .xl\:pb-48{ + padding-bottom: 12rem; + } + + .xl\:pb-52{ + padding-bottom: 13rem; + } + + .xl\:pb-56{ + padding-bottom: 14rem; + } + + .xl\:pb-60{ + padding-bottom: 15rem; + } + + .xl\:pb-64{ + padding-bottom: 16rem; + } + + .xl\:pb-72{ + padding-bottom: 18rem; + } + + .xl\:pb-80{ + padding-bottom: 20rem; + } + + .xl\:pb-96{ + padding-bottom: 24rem; + } + + .xl\:pb-px{ + padding-bottom: 1px; + } + + .xl\:pb-0\.5{ + padding-bottom: 0.125rem; + } + + .xl\:pb-1\.5{ + padding-bottom: 0.375rem; + } + + .xl\:pb-2\.5{ + padding-bottom: 0.625rem; + } + + .xl\:pb-3\.5{ + padding-bottom: 0.875rem; + } + + .xl\:pl-0{ + padding-left: 0px; + } + + .xl\:pl-1{ + padding-left: 0.25rem; + } + + .xl\:pl-2{ + padding-left: 0.5rem; + } + + .xl\:pl-3{ + padding-left: 0.75rem; + } + + .xl\:pl-4{ + padding-left: 1rem; + } + + .xl\:pl-5{ + padding-left: 1.25rem; + } + + .xl\:pl-6{ + padding-left: 1.5rem; + } + + .xl\:pl-7{ + padding-left: 1.75rem; + } + + .xl\:pl-8{ + padding-left: 2rem; + } + + .xl\:pl-9{ + padding-left: 2.25rem; + } + + .xl\:pl-10{ + padding-left: 2.5rem; + } + + .xl\:pl-11{ + padding-left: 2.75rem; + } + + .xl\:pl-12{ + padding-left: 3rem; + } + + .xl\:pl-14{ + padding-left: 3.5rem; + } + + .xl\:pl-16{ + padding-left: 4rem; + } + + .xl\:pl-20{ + padding-left: 5rem; + } + + .xl\:pl-24{ + padding-left: 6rem; + } + + .xl\:pl-28{ + padding-left: 7rem; + } + + .xl\:pl-32{ + padding-left: 8rem; + } + + .xl\:pl-36{ + padding-left: 9rem; + } + + .xl\:pl-40{ + padding-left: 10rem; + } + + .xl\:pl-44{ + padding-left: 11rem; + } + + .xl\:pl-48{ + padding-left: 12rem; + } + + .xl\:pl-52{ + padding-left: 13rem; + } + + .xl\:pl-56{ + padding-left: 14rem; + } + + .xl\:pl-60{ + padding-left: 15rem; + } + + .xl\:pl-64{ + padding-left: 16rem; + } + + .xl\:pl-72{ + padding-left: 18rem; + } + + .xl\:pl-80{ + padding-left: 20rem; + } + + .xl\:pl-96{ + padding-left: 24rem; + } + + .xl\:pl-px{ + padding-left: 1px; + } + + .xl\:pl-0\.5{ + padding-left: 0.125rem; + } + + .xl\:pl-1\.5{ + padding-left: 0.375rem; + } + + .xl\:pl-2\.5{ + padding-left: 0.625rem; + } + + .xl\:pl-3\.5{ + padding-left: 0.875rem; + } + + .xl\:text-left{ + text-align: left; + } + + .xl\:text-center{ + text-align: center; + } + + .xl\:text-right{ + text-align: right; + } + + .xl\:text-justify{ + text-align: justify; + } + + .xl\:align-baseline{ + vertical-align: baseline; + } + + .xl\:align-top{ + vertical-align: top; + } + + .xl\:align-middle{ + vertical-align: middle; + } + + .xl\:align-bottom{ + vertical-align: bottom; + } + + .xl\:align-text-top{ + vertical-align: text-top; + } + + .xl\:align-text-bottom{ + vertical-align: text-bottom; + } + + .xl\:font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .xl\:font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .xl\:font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .xl\:text-xs{ + font-size: 0.75rem; + line-height: 1rem; + } + + .xl\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + + .xl\:text-base{ + font-size: 1rem; + line-height: 1.5rem; + } + + .xl\:text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; + } + + .xl\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } + + .xl\:text-2xl{ + font-size: 1.5rem; + line-height: 2rem; + } + + .xl\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + + .xl\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + + .xl\:text-5xl{ + font-size: 3rem; + line-height: 1; + } + + .xl\:text-6xl{ + font-size: 3.75rem; + line-height: 1; + } + + .xl\:text-7xl{ + font-size: 4.5rem; + line-height: 1; + } + + .xl\:text-8xl{ + font-size: 6rem; + line-height: 1; + } + + .xl\:text-9xl{ + font-size: 8rem; + line-height: 1; + } + + .xl\:font-thin{ + font-weight: 100; + } + + .xl\:font-extralight{ + font-weight: 200; + } + + .xl\:font-light{ + font-weight: 300; + } + + .xl\:font-normal{ + font-weight: 400; + } + + .xl\:font-medium{ + font-weight: 500; + } + + .xl\:font-semibold{ + font-weight: 600; + } + + .xl\:font-bold{ + font-weight: 700; + } + + .xl\:font-extrabold{ + font-weight: 800; + } + + .xl\:font-black{ + font-weight: 900; + } + + .xl\:uppercase{ + text-transform: uppercase; + } + + .xl\:lowercase{ + text-transform: lowercase; + } + + .xl\:capitalize{ + text-transform: capitalize; + } + + .xl\:normal-case{ + text-transform: none; + } + + .xl\:italic{ + font-style: italic; + } + + .xl\:not-italic{ + font-style: normal; + } + + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .xl\:normal-nums{ + font-variant-numeric: normal; + } + + .xl\:ordinal{ + --tw-ordinal: ordinal; + } + + .xl\:slashed-zero{ + --tw-slashed-zero: slashed-zero; + } + + .xl\:lining-nums{ + --tw-numeric-figure: lining-nums; + } + + .xl\:oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; + } + + .xl\:proportional-nums{ + --tw-numeric-spacing: proportional-nums; + } + + .xl\:tabular-nums{ + --tw-numeric-spacing: tabular-nums; + } + + .xl\:diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; + } + + .xl\:stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; + } + + .xl\:leading-3{ + line-height: .75rem; + } + + .xl\:leading-4{ + line-height: 1rem; + } + + .xl\:leading-5{ + line-height: 1.25rem; + } + + .xl\:leading-6{ + line-height: 1.5rem; + } + + .xl\:leading-7{ + line-height: 1.75rem; + } + + .xl\:leading-8{ + line-height: 2rem; + } + + .xl\:leading-9{ + line-height: 2.25rem; + } + + .xl\:leading-10{ + line-height: 2.5rem; + } + + .xl\:leading-none{ + line-height: 1; + } + + .xl\:leading-tight{ + line-height: 1.25; + } + + .xl\:leading-snug{ + line-height: 1.375; + } + + .xl\:leading-normal{ + line-height: 1.5; + } + + .xl\:leading-relaxed{ + line-height: 1.625; + } + + .xl\:leading-loose{ + line-height: 2; + } + + .xl\:tracking-tighter{ + letter-spacing: -0.05em; + } + + .xl\:tracking-tight{ + letter-spacing: -0.025em; + } + + .xl\:tracking-normal{ + letter-spacing: 0em; + } + + .xl\:tracking-wide{ + letter-spacing: 0.025em; + } + + .xl\:tracking-wider{ + letter-spacing: 0.05em; + } + + .xl\:tracking-widest{ + letter-spacing: 0.1em; + } + + .xl\:text-transparent{ + color: transparent; + } + + .xl\:text-current{ + color: currentColor; + } + + .xl\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .xl\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .xl\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .xl\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .xl\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .xl\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .xl\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .xl\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .xl\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .xl\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .xl\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .xl\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .xl\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .xl\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .xl\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .xl\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .xl\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .xl\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .xl\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .xl\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .xl\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .xl\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .xl\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .xl\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .xl\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .xl\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .xl\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .xl\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .xl\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .xl\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .xl\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .xl\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .xl\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .xl\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .xl\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .xl\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .xl\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .xl\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .xl\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .xl\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .xl\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .xl\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .xl\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .xl\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .xl\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .xl\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .xl\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .xl\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .xl\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .xl\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .xl\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .xl\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .xl\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .xl\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .xl\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .xl\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .xl\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .xl\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .xl\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .xl\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .xl\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .xl\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .xl\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .xl\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .xl\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .xl\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .xl\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .xl\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .xl\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .xl\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .xl\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .xl\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .xl\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .xl\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .xl\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .xl\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .xl\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .xl\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .xl\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .xl\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .xl\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .xl\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .xl\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .xl\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .xl\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .xl\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .xl\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .xl\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .xl\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-transparent{ + color: transparent; + } + + .group:hover .xl\:group-hover\:text-current{ + color: currentColor; + } + + .group:hover .xl\:group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-transparent:focus-within{ + color: transparent; + } + + .xl\:focus-within\:text-current:focus-within{ + color: currentColor; + } + + .xl\:focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .xl\:hover\:text-transparent:hover{ + color: transparent; + } + + .xl\:hover\:text-current:hover{ + color: currentColor; + } + + .xl\:hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .xl\:hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .xl\:hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .xl\:hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .xl\:hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .xl\:focus\:text-transparent:focus{ + color: transparent; + } + + .xl\:focus\:text-current:focus{ + color: currentColor; + } + + .xl\:focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .xl\:focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .xl\:focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .xl\:focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .xl\:focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .xl\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .xl\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .xl\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .xl\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .xl\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .xl\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .xl\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .xl\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .xl\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .xl\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .xl\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .xl\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .xl\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .xl\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .xl\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .group:hover .xl\:group-hover\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .group:hover .xl\:group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .xl\:focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; + } + + .xl\:focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; + } + + .xl\:focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; + } + + .xl\:focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; + } + + .xl\:focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; + } + + .xl\:focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; + } + + .xl\:focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; + } + + .xl\:focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; + } + + .xl\:focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; + } + + .xl\:focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; + } + + .xl\:focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; + } + + .xl\:focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; + } + + .xl\:focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; + } + + .xl\:focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; + } + + .xl\:focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; + } + + .xl\:hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; + } + + .xl\:hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; + } + + .xl\:hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; + } + + .xl\:hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; + } + + .xl\:hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; + } + + .xl\:hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; + } + + .xl\:hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; + } + + .xl\:hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; + } + + .xl\:hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; + } + + .xl\:hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; + } + + .xl\:hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; + } + + .xl\:hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; + } + + .xl\:hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; + } + + .xl\:hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; + } + + .xl\:hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; + } + + .xl\:focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; + } + + .xl\:focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; + } + + .xl\:focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; + } + + .xl\:focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; + } + + .xl\:focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; + } + + .xl\:focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; + } + + .xl\:focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; + } + + .xl\:focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; + } + + .xl\:focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; + } + + .xl\:focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; + } + + .xl\:focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; + } + + .xl\:focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; + } + + .xl\:focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; + } + + .xl\:focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; + } + + .xl\:focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; + } + + .xl\:underline{ + text-decoration: underline; + } + + .xl\:line-through{ + text-decoration: line-through; + } + + .xl\:no-underline{ + text-decoration: none; + } + + .group:hover .xl\:group-hover\:underline{ + text-decoration: underline; + } + + .group:hover .xl\:group-hover\:line-through{ + text-decoration: line-through; + } + + .group:hover .xl\:group-hover\:no-underline{ + text-decoration: none; + } + + .xl\:focus-within\:underline:focus-within{ + text-decoration: underline; + } + + .xl\:focus-within\:line-through:focus-within{ + text-decoration: line-through; + } + + .xl\:focus-within\:no-underline:focus-within{ + text-decoration: none; + } + + .xl\:hover\:underline:hover{ + text-decoration: underline; + } + + .xl\:hover\:line-through:hover{ + text-decoration: line-through; + } + + .xl\:hover\:no-underline:hover{ + text-decoration: none; + } + + .xl\:focus\:underline:focus{ + text-decoration: underline; + } + + .xl\:focus\:line-through:focus{ + text-decoration: line-through; + } + + .xl\:focus\:no-underline:focus{ + text-decoration: none; + } + + .xl\:antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .xl\:subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .xl\:placeholder-transparent::-moz-placeholder{ + color: transparent; + } + + .xl\:placeholder-transparent:-ms-input-placeholder{ + color: transparent; + } + + .xl\:placeholder-transparent::placeholder{ + color: transparent; + } + + .xl\:placeholder-current::-moz-placeholder{ + color: currentColor; + } + + .xl\:placeholder-current:-ms-input-placeholder{ + color: currentColor; + } + + .xl\:placeholder-current::placeholder{ + color: currentColor; + } + + .xl\:placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; + } + + .xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; + } + + .xl\:focus\:placeholder-transparent:focus::placeholder{ + color: transparent; + } + + .xl\:focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::placeholder{ + color: currentColor; + } + + .xl\:focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + } + + .xl\:opacity-0{ + opacity: 0; + } + + .xl\:opacity-5{ + opacity: 0.05; + } + + .xl\:opacity-10{ + opacity: 0.1; + } + + .xl\:opacity-20{ + opacity: 0.2; + } + + .xl\:opacity-25{ + opacity: 0.25; + } + + .xl\:opacity-30{ + opacity: 0.3; + } + + .xl\:opacity-40{ + opacity: 0.4; + } + + .xl\:opacity-50{ + opacity: 0.5; + } + + .xl\:opacity-60{ + opacity: 0.6; + } + + .xl\:opacity-70{ + opacity: 0.7; + } + + .xl\:opacity-75{ + opacity: 0.75; + } + + .xl\:opacity-80{ + opacity: 0.8; + } + + .xl\:opacity-90{ + opacity: 0.9; + } + + .xl\:opacity-95{ + opacity: 0.95; + } + + .xl\:opacity-100{ + opacity: 1; + } + + .group:hover .xl\:group-hover\:opacity-0{ + opacity: 0; + } + + .group:hover .xl\:group-hover\:opacity-5{ + opacity: 0.05; + } + + .group:hover .xl\:group-hover\:opacity-10{ + opacity: 0.1; + } + + .group:hover .xl\:group-hover\:opacity-20{ + opacity: 0.2; + } + + .group:hover .xl\:group-hover\:opacity-25{ + opacity: 0.25; + } + + .group:hover .xl\:group-hover\:opacity-30{ + opacity: 0.3; + } + + .group:hover .xl\:group-hover\:opacity-40{ + opacity: 0.4; + } + + .group:hover .xl\:group-hover\:opacity-50{ + opacity: 0.5; + } + + .group:hover .xl\:group-hover\:opacity-60{ + opacity: 0.6; + } + + .group:hover .xl\:group-hover\:opacity-70{ + opacity: 0.7; + } + + .group:hover .xl\:group-hover\:opacity-75{ + opacity: 0.75; + } + + .group:hover .xl\:group-hover\:opacity-80{ + opacity: 0.8; + } + + .group:hover .xl\:group-hover\:opacity-90{ + opacity: 0.9; + } + + .group:hover .xl\:group-hover\:opacity-95{ + opacity: 0.95; + } + + .group:hover .xl\:group-hover\:opacity-100{ + opacity: 1; + } + + .xl\:focus-within\:opacity-0:focus-within{ + opacity: 0; + } + + .xl\:focus-within\:opacity-5:focus-within{ + opacity: 0.05; + } + + .xl\:focus-within\:opacity-10:focus-within{ + opacity: 0.1; + } + + .xl\:focus-within\:opacity-20:focus-within{ + opacity: 0.2; + } + + .xl\:focus-within\:opacity-25:focus-within{ + opacity: 0.25; + } + + .xl\:focus-within\:opacity-30:focus-within{ + opacity: 0.3; + } + + .xl\:focus-within\:opacity-40:focus-within{ + opacity: 0.4; + } + + .xl\:focus-within\:opacity-50:focus-within{ + opacity: 0.5; + } + + .xl\:focus-within\:opacity-60:focus-within{ + opacity: 0.6; + } + + .xl\:focus-within\:opacity-70:focus-within{ + opacity: 0.7; + } + + .xl\:focus-within\:opacity-75:focus-within{ + opacity: 0.75; + } + + .xl\:focus-within\:opacity-80:focus-within{ + opacity: 0.8; + } + + .xl\:focus-within\:opacity-90:focus-within{ + opacity: 0.9; + } + + .xl\:focus-within\:opacity-95:focus-within{ + opacity: 0.95; + } + + .xl\:focus-within\:opacity-100:focus-within{ + opacity: 1; + } + + .xl\:hover\:opacity-0:hover{ + opacity: 0; + } + + .xl\:hover\:opacity-5:hover{ + opacity: 0.05; + } + + .xl\:hover\:opacity-10:hover{ + opacity: 0.1; + } + + .xl\:hover\:opacity-20:hover{ + opacity: 0.2; + } + + .xl\:hover\:opacity-25:hover{ + opacity: 0.25; + } + + .xl\:hover\:opacity-30:hover{ + opacity: 0.3; + } + + .xl\:hover\:opacity-40:hover{ + opacity: 0.4; + } + + .xl\:hover\:opacity-50:hover{ + opacity: 0.5; + } + + .xl\:hover\:opacity-60:hover{ + opacity: 0.6; + } + + .xl\:hover\:opacity-70:hover{ + opacity: 0.7; + } + + .xl\:hover\:opacity-75:hover{ + opacity: 0.75; + } + + .xl\:hover\:opacity-80:hover{ + opacity: 0.8; + } + + .xl\:hover\:opacity-90:hover{ + opacity: 0.9; + } + + .xl\:hover\:opacity-95:hover{ + opacity: 0.95; + } + + .xl\:hover\:opacity-100:hover{ + opacity: 1; + } + + .xl\:focus\:opacity-0:focus{ + opacity: 0; + } + + .xl\:focus\:opacity-5:focus{ + opacity: 0.05; + } + + .xl\:focus\:opacity-10:focus{ + opacity: 0.1; + } + + .xl\:focus\:opacity-20:focus{ + opacity: 0.2; + } + + .xl\:focus\:opacity-25:focus{ + opacity: 0.25; + } + + .xl\:focus\:opacity-30:focus{ + opacity: 0.3; + } + + .xl\:focus\:opacity-40:focus{ + opacity: 0.4; + } + + .xl\:focus\:opacity-50:focus{ + opacity: 0.5; + } + + .xl\:focus\:opacity-60:focus{ + opacity: 0.6; + } + + .xl\:focus\:opacity-70:focus{ + opacity: 0.7; + } + + .xl\:focus\:opacity-75:focus{ + opacity: 0.75; + } + + .xl\:focus\:opacity-80:focus{ + opacity: 0.8; + } + + .xl\:focus\:opacity-90:focus{ + opacity: 0.9; + } + + .xl\:focus\:opacity-95:focus{ + opacity: 0.95; + } + + .xl\:focus\:opacity-100:focus{ + opacity: 1; + } + + .xl\:bg-blend-normal{ + background-blend-mode: normal; + } + + .xl\:bg-blend-multiply{ + background-blend-mode: multiply; + } + + .xl\:bg-blend-screen{ + background-blend-mode: screen; + } + + .xl\:bg-blend-overlay{ + background-blend-mode: overlay; + } + + .xl\:bg-blend-darken{ + background-blend-mode: darken; + } + + .xl\:bg-blend-lighten{ + background-blend-mode: lighten; + } + + .xl\:bg-blend-color-dodge{ + background-blend-mode: color-dodge; + } + + .xl\:bg-blend-color-burn{ + background-blend-mode: color-burn; + } + + .xl\:bg-blend-hard-light{ + background-blend-mode: hard-light; + } + + .xl\:bg-blend-soft-light{ + background-blend-mode: soft-light; + } + + .xl\:bg-blend-difference{ + background-blend-mode: difference; + } + + .xl\:bg-blend-exclusion{ + background-blend-mode: exclusion; + } + + .xl\:bg-blend-hue{ + background-blend-mode: hue; + } + + .xl\:bg-blend-saturation{ + background-blend-mode: saturation; + } + + .xl\:bg-blend-color{ + background-blend-mode: color; + } + + .xl\:bg-blend-luminosity{ + background-blend-mode: luminosity; + } + + .xl\:mix-blend-normal{ + mix-blend-mode: normal; + } + + .xl\:mix-blend-multiply{ + mix-blend-mode: multiply; + } + + .xl\:mix-blend-screen{ + mix-blend-mode: screen; + } + + .xl\:mix-blend-overlay{ + mix-blend-mode: overlay; + } + + .xl\:mix-blend-darken{ + mix-blend-mode: darken; + } + + .xl\:mix-blend-lighten{ + mix-blend-mode: lighten; + } + + .xl\:mix-blend-color-dodge{ + mix-blend-mode: color-dodge; + } + + .xl\:mix-blend-color-burn{ + mix-blend-mode: color-burn; + } + + .xl\:mix-blend-hard-light{ + mix-blend-mode: hard-light; + } + + .xl\:mix-blend-soft-light{ + mix-blend-mode: soft-light; + } + + .xl\:mix-blend-difference{ + mix-blend-mode: difference; + } + + .xl\:mix-blend-exclusion{ + mix-blend-mode: exclusion; + } + + .xl\:mix-blend-hue{ + mix-blend-mode: hue; + } + + .xl\:mix-blend-saturation{ + mix-blend-mode: saturation; + } + + .xl\:mix-blend-color{ + mix-blend-mode: color; + } + + .xl\:mix-blend-luminosity{ + mix-blend-mode: luminosity; + } + + .xl\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:outline-none{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:outline-white{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:outline-black{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\: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); + } + + .xl\: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); + } + + .xl\: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); + } + + .xl\: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); + } + + .xl\:ring-8{ + --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(8px + 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); + } + + .xl\: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); + } + + .xl\:focus-within\:ring-0:focus-within{ + --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); + } + + .xl\:focus-within\:ring-1:focus-within{ + --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); + } + + .xl\:focus-within\:ring-2:focus-within{ + --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); + } + + .xl\:focus-within\:ring-4:focus-within{ + --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); + } + + .xl\:focus-within\:ring-8:focus-within{ + --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(8px + 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); + } + + .xl\:focus-within\:ring:focus-within{ + --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); + } + + .xl\: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); + } + + .xl\: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); + } + + .xl\: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); + } + + .xl\:focus\:ring-4: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(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); + } + + .xl\:focus\:ring-8: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(8px + 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); + } + + .xl\: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); + } + + .xl\:ring-inset{ + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; + } + + .xl\:focus\:ring-inset:focus{ + --tw-ring-inset: inset; + } + + .xl\:ring-transparent{ + --tw-ring-color: transparent; + } + + .xl\:ring-current{ + --tw-ring-color: currentColor; + } + + .xl\:ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .xl\:ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .xl\:ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .xl\:ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .xl\:ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .xl\:ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .xl\:ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .xl\:ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .xl\:ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .xl\:ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .xl\:ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .xl\:ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .xl\:ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .xl\:ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .xl\:ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .xl\:ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .xl\:ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .xl\:ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .xl\:ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .xl\:ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .xl\:ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .xl\:ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .xl\:ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; + } + + .xl\:focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; + } + + .xl\:focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-transparent:focus{ + --tw-ring-color: transparent; + } + + .xl\:focus\:ring-current:focus{ + --tw-ring-color: currentColor; + } + + .xl\:focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .xl\:ring-opacity-0{ + --tw-ring-opacity: 0; + } + + .xl\:ring-opacity-5{ + --tw-ring-opacity: 0.05; + } + + .xl\:ring-opacity-10{ + --tw-ring-opacity: 0.1; + } + + .xl\:ring-opacity-20{ + --tw-ring-opacity: 0.2; + } + + .xl\:ring-opacity-25{ + --tw-ring-opacity: 0.25; + } + + .xl\:ring-opacity-30{ + --tw-ring-opacity: 0.3; + } + + .xl\:ring-opacity-40{ + --tw-ring-opacity: 0.4; + } + + .xl\:ring-opacity-50{ + --tw-ring-opacity: 0.5; + } + + .xl\:ring-opacity-60{ + --tw-ring-opacity: 0.6; + } + + .xl\:ring-opacity-70{ + --tw-ring-opacity: 0.7; + } + + .xl\:ring-opacity-75{ + --tw-ring-opacity: 0.75; + } + + .xl\:ring-opacity-80{ + --tw-ring-opacity: 0.8; + } + + .xl\:ring-opacity-90{ + --tw-ring-opacity: 0.9; + } + + .xl\:ring-opacity-95{ + --tw-ring-opacity: 0.95; + } + + .xl\:ring-opacity-100{ + --tw-ring-opacity: 1; + } + + .xl\:focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; + } + + .xl\:focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; + } + + .xl\:focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; + } + + .xl\:focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; + } + + .xl\:focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; + } + + .xl\:focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; + } + + .xl\:focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; + } + + .xl\:focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; + } + + .xl\:focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; + } + + .xl\:focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; + } + + .xl\:focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; + } + + .xl\:focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; + } + + .xl\:focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; + } + + .xl\:focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; + } + + .xl\:focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; + } + + .xl\:focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; + } + + .xl\:focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; + } + + .xl\:focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; + } + + .xl\:focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; + } + + .xl\:focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; + } + + .xl\:focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; + } + + .xl\:focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; + } + + .xl\:focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; + } + + .xl\:focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; + } + + .xl\:focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; + } + + .xl\:focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; + } + + .xl\:focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; + } + + .xl\:focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; + } + + .xl\:focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; + } + + .xl\:focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; + } + + .xl\:ring-offset-0{ + --tw-ring-offset-width: 0px; + } + + .xl\:ring-offset-1{ + --tw-ring-offset-width: 1px; + } + + .xl\:ring-offset-2{ + --tw-ring-offset-width: 2px; + } + + .xl\:ring-offset-4{ + --tw-ring-offset-width: 4px; + } + + .xl\:ring-offset-8{ + --tw-ring-offset-width: 8px; + } + + .xl\:focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; + } + + .xl\:focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; + } + + .xl\:focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; + } + + .xl\:focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; + } + + .xl\:focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; + } + + .xl\:focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; + } + + .xl\:focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; + } + + .xl\:focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; + } + + .xl\:focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; + } + + .xl\:focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; + } + + .xl\:ring-offset-transparent{ + --tw-ring-offset-color: transparent; + } + + .xl\:ring-offset-current{ + --tw-ring-offset-color: currentColor; + } + + .xl\:ring-offset-black{ + --tw-ring-offset-color: #000; + } + + .xl\:ring-offset-white{ + --tw-ring-offset-color: #fff; + } + + .xl\:ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; + } + + .xl\:ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; + } + + .xl\:ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; + } + + .xl\:ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; + } + + .xl\:ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; + } + + .xl\:ring-offset-gray-600{ + --tw-ring-offset-color: #718096; + } + + .xl\:ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; + } + + .xl\:ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; + } + + .xl\:ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; + } + + .xl\:ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; + } + + .xl\:ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; + } + + .xl\:ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; + } + + .xl\:ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; + } + + .xl\:ring-offset-red-500{ + --tw-ring-offset-color: #f56565; + } + + .xl\:ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; + } + + .xl\:ring-offset-red-700{ + --tw-ring-offset-color: #c53030; + } + + .xl\:ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; + } + + .xl\:ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; + } + + .xl\:ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; + } + + .xl\:ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; + } + + .xl\:ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; + } + + .xl\:ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; + } + + .xl\:ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; + } + + .xl\:ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; + } + + .xl\:ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; + } + + .xl\:ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; + } + + .xl\:ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; + } + + .xl\:ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; + } + + .xl\:ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; + } + + .xl\:ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; + } + + .xl\:ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; + } + + .xl\:ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; + } + + .xl\:ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; + } + + .xl\:ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; + } + + .xl\:ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; + } + + .xl\:ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; + } + + .xl\:ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; + } + + .xl\:ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; + } + + .xl\:ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; + } + + .xl\:ring-offset-green-400{ + --tw-ring-offset-color: #68d391; + } + + .xl\:ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; + } + + .xl\:ring-offset-green-600{ + --tw-ring-offset-color: #38a169; + } + + .xl\:ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; + } + + .xl\:ring-offset-green-800{ + --tw-ring-offset-color: #276749; + } + + .xl\:ring-offset-green-900{ + --tw-ring-offset-color: #22543d; + } + + .xl\:ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; + } + + .xl\:ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; + } + + .xl\:ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; + } + + .xl\:ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; + } + + .xl\:ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; + } + + .xl\:ring-offset-teal-600{ + --tw-ring-offset-color: #319795; + } + + .xl\:ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; + } + + .xl\:ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; + } + + .xl\:ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; + } + + .xl\:ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; + } + + .xl\:ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; + } + + .xl\:ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; + } + + .xl\:ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; + } + + .xl\:ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; + } + + .xl\:ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; + } + + .xl\:ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; + } + + .xl\:ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; + } + + .xl\:ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; + } + + .xl\:ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; + } + + .xl\:ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; + } + + .xl\:ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; + } + + .xl\:ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; + } + + .xl\:ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; + } + + .xl\:ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; + } + + .xl\:ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; + } + + .xl\:ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; + } + + .xl\:ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; + } + + .xl\:ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; + } + + .xl\:ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; + } + + .xl\:ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; + } + + .xl\:ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; + } + + .xl\:ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; + } + + .xl\:ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; + } + + .xl\:ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; + } + + .xl\:ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; + } + + .xl\:ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; + } + + .xl\:ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; + } + + .xl\:ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; + } + + .xl\:ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; + } + + .xl\:ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; + } + + .xl\:ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; + } + + .xl\:ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; + } + + .xl\:ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; + } + + .xl\:ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; + } + + .xl\:ring-offset-pink-900{ + --tw-ring-offset-color: #702459; + } + + .xl\:focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; + } + + .xl\:focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; + } + + .xl\:focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; + } + + .xl\:focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; + } + + .xl\:focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; + } + + .xl\:focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; + } + + .xl\:focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; + } + + .xl\:focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; + } + + .xl\:focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; + } + + .xl\:focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; + } + + .xl\:focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; + } + + .xl\:focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; + } + + .xl\:focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; + } + + .xl\:focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; + } + + .xl\:focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; + } + + .xl\:focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; + } + + .xl\:focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; + } + + .xl\:focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; + } + + .xl\:focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; + } + + .xl\:focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; + } + + .xl\:focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; + } + + .xl\:focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; + } + + .xl\:focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; + } + + .xl\:focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; + } + + .xl\:focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; + } + + .xl\:focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; + } + + .xl\:focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; + } + + .xl\:focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; + } + + .xl\:focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; + } + + .xl\:focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; + } + + .xl\:focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; + } + + .xl\:focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; + } + + .xl\:focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; + } + + .xl\:focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; + } + + .xl\:focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; + } + + .xl\:focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; + } + + .xl\:focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; + } + + .xl\:focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; + } + + .xl\:focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; + } + + .xl\:focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; + } + + .xl\:focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; + } + + .xl\:focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; + } + + .xl\:focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; + } + + .xl\:focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; + } + + .xl\:focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; + } + + .xl\:focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; + } + + .xl\:focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; + } + + .xl\:focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; + } + + .xl\:focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; + } + + .xl\:focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; + } + + .xl\:focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; + } + + .xl\:focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; + } + + .xl\:focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; + } + + .xl\:focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; + } + + .xl\:focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; + } + + .xl\:focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; + } + + .xl\:focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; + } + + .xl\:focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; + } + + .xl\:focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; + } + + .xl\:focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; + } + + .xl\:focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; + } + + .xl\:focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; + } + + .xl\:focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; + } + + .xl\:focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; + } + + .xl\:focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; + } + + .xl\:focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; + } + + .xl\:focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; + } + + .xl\:focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; + } + + .xl\:focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; + } + + .xl\:focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; + } + + .xl\:focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; + } + + .xl\:focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; + } + + .xl\:focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; + } + + .xl\:focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; + } + + .xl\:focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; + } + + .xl\:focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; + } + + .xl\:focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; + } + + .xl\:focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; + } + + .xl\:focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; + } + + .xl\:focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; + } + + .xl\:focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; + } + + .xl\:focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; + } + + .xl\:focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; + } + + .xl\:focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; + } + + .xl\:focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; + } + + .xl\:focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; + } + + .xl\:focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; + } + + .xl\:focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; + } + + .xl\:focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; + } + + .xl\:focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; + } + + .xl\:focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; + } + + .xl\:focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; + } + + .xl\:focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; + } + + .xl\:focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; + } + + .xl\:focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; + } + + .xl\:focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; + } + + .xl\:focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; + } + + .xl\:focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; + } + + .xl\:focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; + } + + .xl\:focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; + } + + .xl\:focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; + } + + .xl\:focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; + } + + .xl\:focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; + } + + .xl\:focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; + } + + .xl\:focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; + } + + .xl\:focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; + } + + .xl\:focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; + } + + .xl\:focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; + } + + .xl\:focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; + } + + .xl\:focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; + } + + .xl\:focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; + } + + .xl\:focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; + } + + .xl\:focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; + } + + .xl\:focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; + } + + .xl\:focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; + } + + .xl\:focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; + } + + .xl\:focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; + } + + .xl\:focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; + } + + .xl\:focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; + } + + .xl\:focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; + } + + .xl\:focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; + } + + .xl\:focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; + } + + .xl\:focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; + } + + .xl\:focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; + } + + .xl\:focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; + } + + .xl\:focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; + } + + .xl\:focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; + } + + .xl\:focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; + } + + .xl\:focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; + } + + .xl\:focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; + } + + .xl\:focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; + } + + .xl\:focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; + } + + .xl\:focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; + } + + .xl\:focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; + } + + .xl\:focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; + } + + .xl\:focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; + } + + .xl\:focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; + } + + .xl\:focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; + } + + .xl\:focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; + } + + .xl\:focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; + } + + .xl\:focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; + } + + .xl\:focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; + } + + .xl\:focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; + } + + .xl\:focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; + } + + .xl\:focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; + } + + .xl\:focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; + } + + .xl\:focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; + } + + .xl\:focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; + } + + .xl\:focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; + } + + .xl\:focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; + } + + .xl\:focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; + } + + .xl\:focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; + } + + .xl\:focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; + } + + .xl\:focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; + } + + .xl\:focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; + } + + .xl\:focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; + } + + .xl\:focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; + } + + .xl\:focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; + } + + .xl\:focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; + } + + .xl\:focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; + } + + .xl\:focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; + } + + .xl\:focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; + } + + .xl\:focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; + } + + .xl\:focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; + } + + .xl\:focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; + } + + .xl\:focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; + } + + .xl\:focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; + } + + .xl\:focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; + } + + .xl\:focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; + } + + .xl\:focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; + } + + .xl\:focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; + } + + .xl\:focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; + } + + .xl\:focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; + } + + .xl\:focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; + } + + .xl\:focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; + } + + .xl\:focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; + } + + .xl\:focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; + } + + .xl\:focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; + } + + .xl\:focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; + } + + .xl\:focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; + } + + .xl\:focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; + } + + .xl\:focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; + } + + .xl\:focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; + } + + .xl\:focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; + } + + .xl\:focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; + } + + .xl\:focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; + } + + .xl\:focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; + } + + .xl\:focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; + } + + .xl\:filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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); + } + + .xl\:filter-none{ + filter: none; + } + + .xl\:blur-0{ + --tw-blur: blur(0); + } + + .xl\:blur-none{ + --tw-blur: blur(0); + } + + .xl\:blur-sm{ + --tw-blur: blur(4px); + } + + .xl\:blur{ + --tw-blur: blur(8px); + } + + .xl\:blur-md{ + --tw-blur: blur(12px); + } + + .xl\:blur-lg{ + --tw-blur: blur(16px); + } + + .xl\:blur-xl{ + --tw-blur: blur(24px); + } + + .xl\:blur-2xl{ + --tw-blur: blur(40px); + } + + .xl\:blur-3xl{ + --tw-blur: blur(64px); + } + + .xl\:brightness-0{ + --tw-brightness: brightness(0); + } + + .xl\:brightness-50{ + --tw-brightness: brightness(.5); + } + + .xl\:brightness-75{ + --tw-brightness: brightness(.75); + } + + .xl\:brightness-90{ + --tw-brightness: brightness(.9); + } + + .xl\:brightness-95{ + --tw-brightness: brightness(.95); + } + + .xl\:brightness-100{ + --tw-brightness: brightness(1); + } + + .xl\:brightness-105{ + --tw-brightness: brightness(1.05); + } + + .xl\:brightness-110{ + --tw-brightness: brightness(1.1); + } + + .xl\:brightness-125{ + --tw-brightness: brightness(1.25); + } + + .xl\:brightness-150{ + --tw-brightness: brightness(1.5); + } + + .xl\:brightness-200{ + --tw-brightness: brightness(2); + } + + .xl\:contrast-0{ + --tw-contrast: contrast(0); + } + + .xl\:contrast-50{ + --tw-contrast: contrast(.5); + } + + .xl\:contrast-75{ + --tw-contrast: contrast(.75); + } + + .xl\:contrast-100{ + --tw-contrast: contrast(1); + } + + .xl\:contrast-125{ + --tw-contrast: contrast(1.25); + } + + .xl\:contrast-150{ + --tw-contrast: contrast(1.5); + } + + .xl\:contrast-200{ + --tw-contrast: contrast(2); + } + + .xl\:drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + } + + .xl\:drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + } + + .xl\:drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + } + + .xl\:drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + } + + .xl\:drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + } + + .xl\:drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + } + + .xl\:drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); + } + + .xl\:grayscale-0{ + --tw-grayscale: grayscale(0); + } + + .xl\:grayscale{ + --tw-grayscale: grayscale(100%); + } + + .xl\:hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); + } + + .xl\:hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); + } + + .xl\:hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); + } + + .xl\:hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); + } + + .xl\:hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); + } + + .xl\:hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); + } + + .xl\:-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); + } + + .xl\:-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); + } + + .xl\:-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); + } + + .xl\:-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); + } + + .xl\:-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); + } + + .xl\:invert-0{ + --tw-invert: invert(0); + } + + .xl\:invert{ + --tw-invert: invert(100%); + } + + .xl\:saturate-0{ + --tw-saturate: saturate(0); + } + + .xl\:saturate-50{ + --tw-saturate: saturate(.5); + } + + .xl\:saturate-100{ + --tw-saturate: saturate(1); + } + + .xl\:saturate-150{ + --tw-saturate: saturate(1.5); + } + + .xl\:saturate-200{ + --tw-saturate: saturate(2); + } + + .xl\:sepia-0{ + --tw-sepia: sepia(0); + } + + .xl\:sepia{ + --tw-sepia: sepia(100%); + } + + .xl\:backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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); + } + + .xl\:backdrop-filter-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; + } + + .xl\:backdrop-blur-0{ + --tw-backdrop-blur: blur(0); + } + + .xl\:backdrop-blur-none{ + --tw-backdrop-blur: blur(0); + } + + .xl\:backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); + } + + .xl\:backdrop-blur{ + --tw-backdrop-blur: blur(8px); + } + + .xl\:backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); + } + + .xl\:backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); + } + + .xl\:backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); + } + + .xl\:backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); + } + + .xl\:backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); + } + + .xl\:backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); + } + + .xl\:backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); + } + + .xl\:backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); + } + + .xl\:backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); + } + + .xl\:backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); + } + + .xl\:backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); + } + + .xl\:backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); + } + + .xl\:backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); + } + + .xl\:backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); + } + + .xl\:backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); + } + + .xl\:backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); + } + + .xl\:backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); + } + + .xl\:backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); + } + + .xl\:backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); + } + + .xl\:backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); + } + + .xl\:backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); + } + + .xl\:backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); + } + + .xl\:backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); + } + + .xl\:backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); + } + + .xl\:backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); + } + + .xl\:backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); + } + + .xl\:backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); + } + + .xl\:backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); + } + + .xl\:backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); + } + + .xl\:backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); + } + + .xl\:backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); + } + + .xl\:-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); + } + + .xl\:-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); + } + + .xl\:-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); + } + + .xl\:-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); + } + + .xl\:-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); + } + + .xl\:backdrop-invert-0{ + --tw-backdrop-invert: invert(0); + } + + .xl\:backdrop-invert{ + --tw-backdrop-invert: invert(100%); + } + + .xl\:backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); + } + + .xl\:backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); + } + + .xl\:backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); + } + + .xl\:backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); + } + + .xl\:backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); + } + + .xl\:backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); + } + + .xl\:backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); + } + + .xl\:backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); + } + + .xl\:backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); + } + + .xl\:backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); + } + + .xl\:backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); + } + + .xl\:backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); + } + + .xl\:backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); + } + + .xl\:backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); + } + + .xl\:backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); + } + + .xl\:backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); + } + + .xl\:backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); + } + + .xl\:backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); + } + + .xl\:backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); + } + + .xl\:backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); + } + + .xl\:backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); + } + + .xl\:backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); + } + + .xl\:transition-none{ + transition-property: none; + } + + .xl\:transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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; + } + + .xl\:transition-colors{ + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-opacity{ + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-shadow{ + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-transform{ + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:delay-75{ + transition-delay: 75ms; + } + + .xl\:delay-100{ + transition-delay: 100ms; + } + + .xl\:delay-150{ + transition-delay: 150ms; + } + + .xl\:delay-200{ + transition-delay: 200ms; + } + + .xl\:delay-300{ + transition-delay: 300ms; + } + + .xl\:delay-500{ + transition-delay: 500ms; + } + + .xl\:delay-700{ + transition-delay: 700ms; + } + + .xl\:delay-1000{ + transition-delay: 1000ms; + } + + .xl\:duration-75{ + transition-duration: 75ms; + } + + .xl\:duration-100{ + transition-duration: 100ms; + } + + .xl\:duration-150{ + transition-duration: 150ms; + } + + .xl\:duration-200{ + transition-duration: 200ms; + } + + .xl\:duration-300{ + transition-duration: 300ms; + } + + .xl\:duration-500{ + transition-duration: 500ms; + } + + .xl\:duration-700{ + transition-duration: 700ms; + } + + .xl\:duration-1000{ + transition-duration: 1000ms; + } + + .xl\:ease-linear{ + transition-timing-function: linear; + } + + .xl\:ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .xl\:ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .xl\:ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} + +@media (min-width: 1536px){ + .\32xl\:container{ + width: 100%; + } + + @media (min-width: 640px){ + .\32xl\:container{ + max-width: 640px; + } + } + + @media (min-width: 768px){ + .\32xl\:container{ + max-width: 768px; + } + } + + @media (min-width: 1024px){ + .\32xl\:container{ + max-width: 1024px; + } + } + + @media (min-width: 1280px){ + .\32xl\:container{ + max-width: 1280px; + } + } + + @media (min-width: 1536px){ + .\32xl\:container{ + max-width: 1536px; + } + } + + .\32xl\: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; + } + + .\32xl\:not-sr-only{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:focus-within\:sr-only:focus-within{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .\32xl\:focus-within\:not-sr-only:focus-within{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:focus\:sr-only:focus{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .\32xl\:focus\:not-sr-only:focus{ + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:pointer-events-none{ + pointer-events: none; + } + + .\32xl\:pointer-events-auto{ + pointer-events: auto; + } + + .\32xl\:visible{ + visibility: visible; + } + + .\32xl\:invisible{ + visibility: hidden; + } + + .\32xl\:static{ + position: static; + } + + .\32xl\:fixed{ + position: fixed; + } + + .\32xl\:absolute{ + position: absolute; + } + + .\32xl\:relative{ + position: relative; + } + + .\32xl\:sticky{ + position: -webkit-sticky; + position: sticky; + } + + .\32xl\:inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:inset-1{ + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .\32xl\:inset-2{ + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .\32xl\:inset-3{ + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .\32xl\:inset-4{ + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .\32xl\:inset-5{ + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .\32xl\:inset-6{ + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .\32xl\:inset-7{ + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .\32xl\:inset-8{ + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .\32xl\:inset-9{ + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .\32xl\:inset-10{ + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .\32xl\:inset-11{ + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .\32xl\:inset-12{ + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .\32xl\:inset-14{ + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .\32xl\:inset-16{ + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .\32xl\:inset-20{ + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .\32xl\:inset-24{ + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .\32xl\:inset-28{ + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .\32xl\:inset-32{ + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .\32xl\:inset-36{ + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .\32xl\:inset-40{ + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .\32xl\:inset-44{ + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .\32xl\:inset-48{ + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .\32xl\:inset-52{ + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .\32xl\:inset-56{ + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .\32xl\:inset-60{ + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .\32xl\:inset-64{ + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .\32xl\:inset-72{ + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .\32xl\:inset-80{ + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .\32xl\:inset-96{ + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .\32xl\:inset-auto{ + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .\32xl\:inset-px{ + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .\32xl\:inset-0\.5{ + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .\32xl\:inset-1\.5{ + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .\32xl\:inset-2\.5{ + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .\32xl\:inset-3\.5{ + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .\32xl\:-inset-0{ + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:-inset-1{ + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .\32xl\:-inset-2{ + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .\32xl\:-inset-3{ + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .\32xl\:-inset-4{ + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .\32xl\:-inset-5{ + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .\32xl\:-inset-6{ + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .\32xl\:-inset-7{ + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .\32xl\:-inset-8{ + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .\32xl\:-inset-9{ + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .\32xl\:-inset-10{ + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .\32xl\:-inset-11{ + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .\32xl\:-inset-12{ + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .\32xl\:-inset-14{ + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .\32xl\:-inset-16{ + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .\32xl\:-inset-20{ + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .\32xl\:-inset-24{ + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .\32xl\:-inset-28{ + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .\32xl\:-inset-32{ + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .\32xl\:-inset-36{ + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .\32xl\:-inset-40{ + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .\32xl\:-inset-44{ + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .\32xl\:-inset-48{ + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .\32xl\:-inset-52{ + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .\32xl\:-inset-56{ + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .\32xl\:-inset-60{ + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .\32xl\:-inset-64{ + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .\32xl\:-inset-72{ + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .\32xl\:-inset-80{ + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .\32xl\:-inset-96{ + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .\32xl\:-inset-px{ + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .\32xl\:-inset-0\.5{ + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .\32xl\:-inset-1\.5{ + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .\32xl\:-inset-2\.5{ + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5{ + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3{ + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3{ + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4{ + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4{ + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4{ + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full{ + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3{ + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3{ + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4{ + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4{ + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4{ + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full{ + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-5vw{ + top: 5vw; + right: 5vw; + bottom: 5vw; + left: 5vw; + } + + .\32xl\:inset-x-0{ + left: 0px; + right: 0px; + } + + .\32xl\:inset-x-1{ + left: 0.25rem; + right: 0.25rem; + } + + .\32xl\:inset-x-2{ + left: 0.5rem; + right: 0.5rem; + } + + .\32xl\:inset-x-3{ + left: 0.75rem; + right: 0.75rem; + } + + .\32xl\:inset-x-4{ + left: 1rem; + right: 1rem; + } + + .\32xl\:inset-x-5{ + left: 1.25rem; + right: 1.25rem; + } + + .\32xl\:inset-x-6{ + left: 1.5rem; + right: 1.5rem; + } + + .\32xl\:inset-x-7{ + left: 1.75rem; + right: 1.75rem; + } + + .\32xl\:inset-x-8{ + left: 2rem; + right: 2rem; + } + + .\32xl\:inset-x-9{ + left: 2.25rem; + right: 2.25rem; + } + + .\32xl\:inset-x-10{ + left: 2.5rem; + right: 2.5rem; + } + + .\32xl\:inset-x-11{ + left: 2.75rem; + right: 2.75rem; + } + + .\32xl\:inset-x-12{ + left: 3rem; + right: 3rem; + } + + .\32xl\:inset-x-14{ + left: 3.5rem; + right: 3.5rem; + } + + .\32xl\:inset-x-16{ + left: 4rem; + right: 4rem; + } + + .\32xl\:inset-x-20{ + left: 5rem; + right: 5rem; + } + + .\32xl\:inset-x-24{ + left: 6rem; + right: 6rem; + } + + .\32xl\:inset-x-28{ + left: 7rem; + right: 7rem; + } + + .\32xl\:inset-x-32{ + left: 8rem; + right: 8rem; + } + + .\32xl\:inset-x-36{ + left: 9rem; + right: 9rem; + } + + .\32xl\:inset-x-40{ + left: 10rem; + right: 10rem; + } + + .\32xl\:inset-x-44{ + left: 11rem; + right: 11rem; + } + + .\32xl\:inset-x-48{ + left: 12rem; + right: 12rem; + } + + .\32xl\:inset-x-52{ + left: 13rem; + right: 13rem; + } + + .\32xl\:inset-x-56{ + left: 14rem; + right: 14rem; + } + + .\32xl\:inset-x-60{ + left: 15rem; + right: 15rem; + } + + .\32xl\:inset-x-64{ + left: 16rem; + right: 16rem; + } + + .\32xl\:inset-x-72{ + left: 18rem; + right: 18rem; + } + + .\32xl\:inset-x-80{ + left: 20rem; + right: 20rem; + } + + .\32xl\:inset-x-96{ + left: 24rem; + right: 24rem; + } + + .\32xl\:inset-x-auto{ + left: auto; + right: auto; + } + + .\32xl\:inset-x-px{ + left: 1px; + right: 1px; + } + + .\32xl\:inset-x-0\.5{ + left: 0.125rem; + right: 0.125rem; + } + + .\32xl\:inset-x-1\.5{ + left: 0.375rem; + right: 0.375rem; + } + + .\32xl\:inset-x-2\.5{ + left: 0.625rem; + right: 0.625rem; + } + + .\32xl\:inset-x-3\.5{ + left: 0.875rem; + right: 0.875rem; + } + + .\32xl\:-inset-x-0{ + left: 0px; + right: 0px; + } + + .\32xl\:-inset-x-1{ + left: -0.25rem; + right: -0.25rem; + } + + .\32xl\:-inset-x-2{ + left: -0.5rem; + right: -0.5rem; + } + + .\32xl\:-inset-x-3{ + left: -0.75rem; + right: -0.75rem; + } + + .\32xl\:-inset-x-4{ + left: -1rem; + right: -1rem; + } + + .\32xl\:-inset-x-5{ + left: -1.25rem; + right: -1.25rem; + } + + .\32xl\:-inset-x-6{ + left: -1.5rem; + right: -1.5rem; + } + + .\32xl\:-inset-x-7{ + left: -1.75rem; + right: -1.75rem; + } + + .\32xl\:-inset-x-8{ + left: -2rem; + right: -2rem; + } + + .\32xl\:-inset-x-9{ + left: -2.25rem; + right: -2.25rem; + } + + .\32xl\:-inset-x-10{ + left: -2.5rem; + right: -2.5rem; + } + + .\32xl\:-inset-x-11{ + left: -2.75rem; + right: -2.75rem; + } + + .\32xl\:-inset-x-12{ + left: -3rem; + right: -3rem; + } + + .\32xl\:-inset-x-14{ + left: -3.5rem; + right: -3.5rem; + } + + .\32xl\:-inset-x-16{ + left: -4rem; + right: -4rem; + } + + .\32xl\:-inset-x-20{ + left: -5rem; + right: -5rem; + } + + .\32xl\:-inset-x-24{ + left: -6rem; + right: -6rem; + } + + .\32xl\:-inset-x-28{ + left: -7rem; + right: -7rem; + } + + .\32xl\:-inset-x-32{ + left: -8rem; + right: -8rem; + } + + .\32xl\:-inset-x-36{ + left: -9rem; + right: -9rem; + } + + .\32xl\:-inset-x-40{ + left: -10rem; + right: -10rem; + } + + .\32xl\:-inset-x-44{ + left: -11rem; + right: -11rem; + } + + .\32xl\:-inset-x-48{ + left: -12rem; + right: -12rem; + } + + .\32xl\:-inset-x-52{ + left: -13rem; + right: -13rem; + } + + .\32xl\:-inset-x-56{ + left: -14rem; + right: -14rem; + } + + .\32xl\:-inset-x-60{ + left: -15rem; + right: -15rem; + } + + .\32xl\:-inset-x-64{ + left: -16rem; + right: -16rem; + } + + .\32xl\:-inset-x-72{ + left: -18rem; + right: -18rem; + } + + .\32xl\:-inset-x-80{ + left: -20rem; + right: -20rem; + } + + .\32xl\:-inset-x-96{ + left: -24rem; + right: -24rem; + } + + .\32xl\:-inset-x-px{ + left: -1px; + right: -1px; + } + + .\32xl\:-inset-x-0\.5{ + left: -0.125rem; + right: -0.125rem; + } + + .\32xl\:-inset-x-1\.5{ + left: -0.375rem; + right: -0.375rem; + } + + .\32xl\:-inset-x-2\.5{ + left: -0.625rem; + right: -0.625rem; + } + + .\32xl\:-inset-x-3\.5{ + left: -0.875rem; + right: -0.875rem; + } + + .\32xl\:inset-x-1\/2{ + left: 50%; + right: 50%; + } + + .\32xl\:inset-x-1\/3{ + left: 33.333333%; + right: 33.333333%; + } + + .\32xl\:inset-x-2\/3{ + left: 66.666667%; + right: 66.666667%; + } + + .\32xl\:inset-x-1\/4{ + left: 25%; + right: 25%; + } + + .\32xl\:inset-x-2\/4{ + left: 50%; + right: 50%; + } + + .\32xl\:inset-x-3\/4{ + left: 75%; + right: 75%; + } + + .\32xl\:inset-x-full{ + left: 100%; + right: 100%; + } + + .\32xl\:-inset-x-1\/2{ + left: -50%; + right: -50%; + } + + .\32xl\:-inset-x-1\/3{ + left: -33.333333%; + right: -33.333333%; + } + + .\32xl\:-inset-x-2\/3{ + left: -66.666667%; + right: -66.666667%; + } + + .\32xl\:-inset-x-1\/4{ + left: -25%; + right: -25%; + } + + .\32xl\:-inset-x-2\/4{ + left: -50%; + right: -50%; + } + + .\32xl\:-inset-x-3\/4{ + left: -75%; + right: -75%; + } + + .\32xl\:-inset-x-full{ + left: -100%; + right: -100%; + } + + .\32xl\:inset-x-5vw{ + left: 5vw; + right: 5vw; + } + + .\32xl\:inset-y-0{ + top: 0px; + bottom: 0px; + } + + .\32xl\:inset-y-1{ + top: 0.25rem; + bottom: 0.25rem; + } + + .\32xl\:inset-y-2{ + top: 0.5rem; + bottom: 0.5rem; + } + + .\32xl\:inset-y-3{ + top: 0.75rem; + bottom: 0.75rem; + } + + .\32xl\:inset-y-4{ + top: 1rem; + bottom: 1rem; + } + + .\32xl\:inset-y-5{ + top: 1.25rem; + bottom: 1.25rem; + } + + .\32xl\:inset-y-6{ + top: 1.5rem; + bottom: 1.5rem; + } + + .\32xl\:inset-y-7{ + top: 1.75rem; + bottom: 1.75rem; + } + + .\32xl\:inset-y-8{ + top: 2rem; + bottom: 2rem; + } + + .\32xl\:inset-y-9{ + top: 2.25rem; + bottom: 2.25rem; + } + + .\32xl\:inset-y-10{ + top: 2.5rem; + bottom: 2.5rem; + } + + .\32xl\:inset-y-11{ + top: 2.75rem; + bottom: 2.75rem; + } + + .\32xl\:inset-y-12{ + top: 3rem; + bottom: 3rem; + } + + .\32xl\:inset-y-14{ + top: 3.5rem; + bottom: 3.5rem; + } + + .\32xl\:inset-y-16{ + top: 4rem; + bottom: 4rem; + } + + .\32xl\:inset-y-20{ + top: 5rem; + bottom: 5rem; + } + + .\32xl\:inset-y-24{ + top: 6rem; + bottom: 6rem; + } + + .\32xl\:inset-y-28{ + top: 7rem; + bottom: 7rem; + } + + .\32xl\:inset-y-32{ + top: 8rem; + bottom: 8rem; + } + + .\32xl\:inset-y-36{ + top: 9rem; + bottom: 9rem; + } + + .\32xl\:inset-y-40{ + top: 10rem; + bottom: 10rem; + } + + .\32xl\:inset-y-44{ + top: 11rem; + bottom: 11rem; + } + + .\32xl\:inset-y-48{ + top: 12rem; + bottom: 12rem; + } + + .\32xl\:inset-y-52{ + top: 13rem; + bottom: 13rem; + } + + .\32xl\:inset-y-56{ + top: 14rem; + bottom: 14rem; + } + + .\32xl\:inset-y-60{ + top: 15rem; + bottom: 15rem; + } + + .\32xl\:inset-y-64{ + top: 16rem; + bottom: 16rem; + } + + .\32xl\:inset-y-72{ + top: 18rem; + bottom: 18rem; + } + + .\32xl\:inset-y-80{ + top: 20rem; + bottom: 20rem; + } + + .\32xl\:inset-y-96{ + top: 24rem; + bottom: 24rem; + } + + .\32xl\:inset-y-auto{ + top: auto; + bottom: auto; + } + + .\32xl\:inset-y-px{ + top: 1px; + bottom: 1px; + } + + .\32xl\:inset-y-0\.5{ + top: 0.125rem; + bottom: 0.125rem; + } + + .\32xl\:inset-y-1\.5{ + top: 0.375rem; + bottom: 0.375rem; + } + + .\32xl\:inset-y-2\.5{ + top: 0.625rem; + bottom: 0.625rem; + } + + .\32xl\:inset-y-3\.5{ + top: 0.875rem; + bottom: 0.875rem; + } + + .\32xl\:-inset-y-0{ + top: 0px; + bottom: 0px; + } + + .\32xl\:-inset-y-1{ + top: -0.25rem; + bottom: -0.25rem; + } + + .\32xl\:-inset-y-2{ + top: -0.5rem; + bottom: -0.5rem; + } + + .\32xl\:-inset-y-3{ + top: -0.75rem; + bottom: -0.75rem; + } + + .\32xl\:-inset-y-4{ + top: -1rem; + bottom: -1rem; + } + + .\32xl\:-inset-y-5{ + top: -1.25rem; + bottom: -1.25rem; + } + + .\32xl\:-inset-y-6{ + top: -1.5rem; + bottom: -1.5rem; + } + + .\32xl\:-inset-y-7{ + top: -1.75rem; + bottom: -1.75rem; + } + + .\32xl\:-inset-y-8{ + top: -2rem; + bottom: -2rem; + } + + .\32xl\:-inset-y-9{ + top: -2.25rem; + bottom: -2.25rem; + } + + .\32xl\:-inset-y-10{ + top: -2.5rem; + bottom: -2.5rem; + } + + .\32xl\:-inset-y-11{ + top: -2.75rem; + bottom: -2.75rem; + } + + .\32xl\:-inset-y-12{ + top: -3rem; + bottom: -3rem; + } + + .\32xl\:-inset-y-14{ + top: -3.5rem; + bottom: -3.5rem; + } + + .\32xl\:-inset-y-16{ + top: -4rem; + bottom: -4rem; + } + + .\32xl\:-inset-y-20{ + top: -5rem; + bottom: -5rem; + } + + .\32xl\:-inset-y-24{ + top: -6rem; + bottom: -6rem; + } + + .\32xl\:-inset-y-28{ + top: -7rem; + bottom: -7rem; + } + + .\32xl\:-inset-y-32{ + top: -8rem; + bottom: -8rem; + } + + .\32xl\:-inset-y-36{ + top: -9rem; + bottom: -9rem; + } + + .\32xl\:-inset-y-40{ + top: -10rem; + bottom: -10rem; + } + + .\32xl\:-inset-y-44{ + top: -11rem; + bottom: -11rem; + } + + .\32xl\:-inset-y-48{ + top: -12rem; + bottom: -12rem; + } + + .\32xl\:-inset-y-52{ + top: -13rem; + bottom: -13rem; + } + + .\32xl\:-inset-y-56{ + top: -14rem; + bottom: -14rem; + } + + .\32xl\:-inset-y-60{ + top: -15rem; + bottom: -15rem; + } + + .\32xl\:-inset-y-64{ + top: -16rem; + bottom: -16rem; + } + + .\32xl\:-inset-y-72{ + top: -18rem; + bottom: -18rem; + } + + .\32xl\:-inset-y-80{ + top: -20rem; + bottom: -20rem; + } + + .\32xl\:-inset-y-96{ + top: -24rem; + bottom: -24rem; + } + + .\32xl\:-inset-y-px{ + top: -1px; + bottom: -1px; + } + + .\32xl\:-inset-y-0\.5{ + top: -0.125rem; + bottom: -0.125rem; + } + + .\32xl\:-inset-y-1\.5{ + top: -0.375rem; + bottom: -0.375rem; + } + + .\32xl\:-inset-y-2\.5{ + top: -0.625rem; + bottom: -0.625rem; + } + + .\32xl\:-inset-y-3\.5{ + top: -0.875rem; + bottom: -0.875rem; + } + + .\32xl\:inset-y-1\/2{ + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-y-1\/3{ + top: 33.333333%; + bottom: 33.333333%; + } + + .\32xl\:inset-y-2\/3{ + top: 66.666667%; + bottom: 66.666667%; + } + + .\32xl\:inset-y-1\/4{ + top: 25%; + bottom: 25%; + } + + .\32xl\:inset-y-2\/4{ + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-y-3\/4{ + top: 75%; + bottom: 75%; + } + + .\32xl\:inset-y-full{ + top: 100%; + bottom: 100%; + } + + .\32xl\:-inset-y-1\/2{ + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-y-1\/3{ + top: -33.333333%; + bottom: -33.333333%; + } + + .\32xl\:-inset-y-2\/3{ + top: -66.666667%; + bottom: -66.666667%; + } + + .\32xl\:-inset-y-1\/4{ + top: -25%; + bottom: -25%; + } + + .\32xl\:-inset-y-2\/4{ + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-y-3\/4{ + top: -75%; + bottom: -75%; + } + + .\32xl\:-inset-y-full{ + top: -100%; + bottom: -100%; + } + + .\32xl\:inset-y-5vw{ + top: 5vw; + bottom: 5vw; + } + + .\32xl\:top-0{ + top: 0px; + } + + .\32xl\:top-1{ + top: 0.25rem; + } + + .\32xl\:top-2{ + top: 0.5rem; + } + + .\32xl\:top-3{ + top: 0.75rem; + } + + .\32xl\:top-4{ + top: 1rem; + } + + .\32xl\:top-5{ + top: 1.25rem; + } + + .\32xl\:top-6{ + top: 1.5rem; + } + + .\32xl\:top-7{ + top: 1.75rem; + } + + .\32xl\:top-8{ + top: 2rem; + } + + .\32xl\:top-9{ + top: 2.25rem; + } + + .\32xl\:top-10{ + top: 2.5rem; + } + + .\32xl\:top-11{ + top: 2.75rem; + } + + .\32xl\:top-12{ + top: 3rem; + } + + .\32xl\:top-14{ + top: 3.5rem; + } + + .\32xl\:top-16{ + top: 4rem; + } + + .\32xl\:top-20{ + top: 5rem; + } + + .\32xl\:top-24{ + top: 6rem; + } + + .\32xl\:top-28{ + top: 7rem; + } + + .\32xl\:top-32{ + top: 8rem; + } + + .\32xl\:top-36{ + top: 9rem; + } + + .\32xl\:top-40{ + top: 10rem; + } + + .\32xl\:top-44{ + top: 11rem; + } + + .\32xl\:top-48{ + top: 12rem; + } + + .\32xl\:top-52{ + top: 13rem; + } + + .\32xl\:top-56{ + top: 14rem; + } + + .\32xl\:top-60{ + top: 15rem; + } + + .\32xl\:top-64{ + top: 16rem; + } + + .\32xl\:top-72{ + top: 18rem; + } + + .\32xl\:top-80{ + top: 20rem; + } + + .\32xl\:top-96{ + top: 24rem; + } + + .\32xl\:top-auto{ + top: auto; + } + + .\32xl\:top-px{ + top: 1px; + } + + .\32xl\:top-0\.5{ + top: 0.125rem; + } + + .\32xl\:top-1\.5{ + top: 0.375rem; + } + + .\32xl\:top-2\.5{ + top: 0.625rem; + } + + .\32xl\:top-3\.5{ + top: 0.875rem; + } + + .\32xl\:-top-0{ + top: 0px; + } + + .\32xl\:-top-1{ + top: -0.25rem; + } + + .\32xl\:-top-2{ + top: -0.5rem; + } + + .\32xl\:-top-3{ + top: -0.75rem; + } + + .\32xl\:-top-4{ + top: -1rem; + } + + .\32xl\:-top-5{ + top: -1.25rem; + } + + .\32xl\:-top-6{ + top: -1.5rem; + } + + .\32xl\:-top-7{ + top: -1.75rem; + } + + .\32xl\:-top-8{ + top: -2rem; + } + + .\32xl\:-top-9{ + top: -2.25rem; + } + + .\32xl\:-top-10{ + top: -2.5rem; + } + + .\32xl\:-top-11{ + top: -2.75rem; + } + + .\32xl\:-top-12{ + top: -3rem; + } + + .\32xl\:-top-14{ + top: -3.5rem; + } + + .\32xl\:-top-16{ + top: -4rem; + } + + .\32xl\:-top-20{ + top: -5rem; + } + + .\32xl\:-top-24{ + top: -6rem; + } + + .\32xl\:-top-28{ + top: -7rem; + } + + .\32xl\:-top-32{ + top: -8rem; + } + + .\32xl\:-top-36{ + top: -9rem; + } + + .\32xl\:-top-40{ + top: -10rem; + } + + .\32xl\:-top-44{ + top: -11rem; + } + + .\32xl\:-top-48{ + top: -12rem; + } + + .\32xl\:-top-52{ + top: -13rem; + } + + .\32xl\:-top-56{ + top: -14rem; + } + + .\32xl\:-top-60{ + top: -15rem; + } + + .\32xl\:-top-64{ + top: -16rem; + } + + .\32xl\:-top-72{ + top: -18rem; + } + + .\32xl\:-top-80{ + top: -20rem; + } + + .\32xl\:-top-96{ + top: -24rem; + } + + .\32xl\:-top-px{ + top: -1px; + } + + .\32xl\:-top-0\.5{ + top: -0.125rem; + } + + .\32xl\:-top-1\.5{ + top: -0.375rem; + } + + .\32xl\:-top-2\.5{ + top: -0.625rem; + } + + .\32xl\:-top-3\.5{ + top: -0.875rem; + } + + .\32xl\:top-1\/2{ + top: 50%; + } + + .\32xl\:top-1\/3{ + top: 33.333333%; + } + + .\32xl\:top-2\/3{ + top: 66.666667%; + } + + .\32xl\:top-1\/4{ + top: 25%; + } + + .\32xl\:top-2\/4{ + top: 50%; + } + + .\32xl\:top-3\/4{ + top: 75%; + } + + .\32xl\:top-full{ + top: 100%; + } + + .\32xl\:-top-1\/2{ + top: -50%; + } + + .\32xl\:-top-1\/3{ + top: -33.333333%; + } + + .\32xl\:-top-2\/3{ + top: -66.666667%; + } + + .\32xl\:-top-1\/4{ + top: -25%; + } + + .\32xl\:-top-2\/4{ + top: -50%; + } + + .\32xl\:-top-3\/4{ + top: -75%; + } + + .\32xl\:-top-full{ + top: -100%; + } + + .\32xl\:top-5vw{ + top: 5vw; + } + + .\32xl\:right-0{ + right: 0px; + } + + .\32xl\:right-1{ + right: 0.25rem; + } + + .\32xl\:right-2{ + right: 0.5rem; + } + + .\32xl\:right-3{ + right: 0.75rem; + } + + .\32xl\:right-4{ + right: 1rem; + } + + .\32xl\:right-5{ + right: 1.25rem; + } + + .\32xl\:right-6{ + right: 1.5rem; + } + + .\32xl\:right-7{ + right: 1.75rem; + } + + .\32xl\:right-8{ + right: 2rem; + } + + .\32xl\:right-9{ + right: 2.25rem; + } + + .\32xl\:right-10{ + right: 2.5rem; + } + + .\32xl\:right-11{ + right: 2.75rem; + } + + .\32xl\:right-12{ + right: 3rem; + } + + .\32xl\:right-14{ + right: 3.5rem; + } + + .\32xl\:right-16{ + right: 4rem; + } + + .\32xl\:right-20{ + right: 5rem; + } + + .\32xl\:right-24{ + right: 6rem; + } + + .\32xl\:right-28{ + right: 7rem; + } + + .\32xl\:right-32{ + right: 8rem; + } + + .\32xl\:right-36{ + right: 9rem; + } + + .\32xl\:right-40{ + right: 10rem; + } + + .\32xl\:right-44{ + right: 11rem; + } + + .\32xl\:right-48{ + right: 12rem; + } + + .\32xl\:right-52{ + right: 13rem; + } + + .\32xl\:right-56{ + right: 14rem; + } + + .\32xl\:right-60{ + right: 15rem; + } + + .\32xl\:right-64{ + right: 16rem; + } + + .\32xl\:right-72{ + right: 18rem; + } + + .\32xl\:right-80{ + right: 20rem; + } + + .\32xl\:right-96{ + right: 24rem; + } + + .\32xl\:right-auto{ + right: auto; + } + + .\32xl\:right-px{ + right: 1px; + } + + .\32xl\:right-0\.5{ + right: 0.125rem; + } + + .\32xl\:right-1\.5{ + right: 0.375rem; + } + + .\32xl\:right-2\.5{ + right: 0.625rem; + } + + .\32xl\:right-3\.5{ + right: 0.875rem; + } + + .\32xl\:-right-0{ + right: 0px; + } + + .\32xl\:-right-1{ + right: -0.25rem; + } + + .\32xl\:-right-2{ + right: -0.5rem; + } + + .\32xl\:-right-3{ + right: -0.75rem; + } + + .\32xl\:-right-4{ + right: -1rem; + } + + .\32xl\:-right-5{ + right: -1.25rem; + } + + .\32xl\:-right-6{ + right: -1.5rem; + } + + .\32xl\:-right-7{ + right: -1.75rem; + } + + .\32xl\:-right-8{ + right: -2rem; + } + + .\32xl\:-right-9{ + right: -2.25rem; + } + + .\32xl\:-right-10{ + right: -2.5rem; + } + + .\32xl\:-right-11{ + right: -2.75rem; + } + + .\32xl\:-right-12{ + right: -3rem; + } + + .\32xl\:-right-14{ + right: -3.5rem; + } + + .\32xl\:-right-16{ + right: -4rem; + } + + .\32xl\:-right-20{ + right: -5rem; + } + + .\32xl\:-right-24{ + right: -6rem; + } + + .\32xl\:-right-28{ + right: -7rem; + } + + .\32xl\:-right-32{ + right: -8rem; + } + + .\32xl\:-right-36{ + right: -9rem; + } + + .\32xl\:-right-40{ + right: -10rem; + } + + .\32xl\:-right-44{ + right: -11rem; + } + + .\32xl\:-right-48{ + right: -12rem; + } + + .\32xl\:-right-52{ + right: -13rem; + } + + .\32xl\:-right-56{ + right: -14rem; + } + + .\32xl\:-right-60{ + right: -15rem; + } + + .\32xl\:-right-64{ + right: -16rem; + } + + .\32xl\:-right-72{ + right: -18rem; + } + + .\32xl\:-right-80{ + right: -20rem; + } + + .\32xl\:-right-96{ + right: -24rem; + } + + .\32xl\:-right-px{ + right: -1px; + } + + .\32xl\:-right-0\.5{ + right: -0.125rem; + } + + .\32xl\:-right-1\.5{ + right: -0.375rem; + } + + .\32xl\:-right-2\.5{ + right: -0.625rem; + } + + .\32xl\:-right-3\.5{ + right: -0.875rem; + } + + .\32xl\:right-1\/2{ + right: 50%; + } + + .\32xl\:right-1\/3{ + right: 33.333333%; + } + + .\32xl\:right-2\/3{ + right: 66.666667%; + } + + .\32xl\:right-1\/4{ + right: 25%; + } + + .\32xl\:right-2\/4{ + right: 50%; + } + + .\32xl\:right-3\/4{ + right: 75%; + } + + .\32xl\:right-full{ + right: 100%; + } + + .\32xl\:-right-1\/2{ + right: -50%; + } + + .\32xl\:-right-1\/3{ + right: -33.333333%; + } + + .\32xl\:-right-2\/3{ + right: -66.666667%; + } + + .\32xl\:-right-1\/4{ + right: -25%; + } + + .\32xl\:-right-2\/4{ + right: -50%; + } + + .\32xl\:-right-3\/4{ + right: -75%; + } + + .\32xl\:-right-full{ + right: -100%; + } + + .\32xl\:right-5vw{ + right: 5vw; + } + + .\32xl\:bottom-0{ + bottom: 0px; + } + + .\32xl\:bottom-1{ + bottom: 0.25rem; + } + + .\32xl\:bottom-2{ + bottom: 0.5rem; + } + + .\32xl\:bottom-3{ + bottom: 0.75rem; + } + + .\32xl\:bottom-4{ + bottom: 1rem; + } + + .\32xl\:bottom-5{ + bottom: 1.25rem; + } + + .\32xl\:bottom-6{ + bottom: 1.5rem; + } + + .\32xl\:bottom-7{ + bottom: 1.75rem; + } + + .\32xl\:bottom-8{ + bottom: 2rem; + } + + .\32xl\:bottom-9{ + bottom: 2.25rem; + } + + .\32xl\:bottom-10{ + bottom: 2.5rem; + } + + .\32xl\:bottom-11{ + bottom: 2.75rem; + } + + .\32xl\:bottom-12{ + bottom: 3rem; + } + + .\32xl\:bottom-14{ + bottom: 3.5rem; + } + + .\32xl\:bottom-16{ + bottom: 4rem; + } + + .\32xl\:bottom-20{ + bottom: 5rem; + } + + .\32xl\:bottom-24{ + bottom: 6rem; + } + + .\32xl\:bottom-28{ + bottom: 7rem; + } + + .\32xl\:bottom-32{ + bottom: 8rem; + } + + .\32xl\:bottom-36{ + bottom: 9rem; + } + + .\32xl\:bottom-40{ + bottom: 10rem; + } + + .\32xl\:bottom-44{ + bottom: 11rem; + } + + .\32xl\:bottom-48{ + bottom: 12rem; + } + + .\32xl\:bottom-52{ + bottom: 13rem; + } + + .\32xl\:bottom-56{ + bottom: 14rem; + } + + .\32xl\:bottom-60{ + bottom: 15rem; + } + + .\32xl\:bottom-64{ + bottom: 16rem; + } + + .\32xl\:bottom-72{ + bottom: 18rem; + } + + .\32xl\:bottom-80{ + bottom: 20rem; + } + + .\32xl\:bottom-96{ + bottom: 24rem; + } + + .\32xl\:bottom-auto{ + bottom: auto; + } + + .\32xl\:bottom-px{ + bottom: 1px; + } + + .\32xl\:bottom-0\.5{ + bottom: 0.125rem; + } + + .\32xl\:bottom-1\.5{ + bottom: 0.375rem; + } + + .\32xl\:bottom-2\.5{ + bottom: 0.625rem; + } + + .\32xl\:bottom-3\.5{ + bottom: 0.875rem; + } + + .\32xl\:-bottom-0{ + bottom: 0px; + } + + .\32xl\:-bottom-1{ + bottom: -0.25rem; + } + + .\32xl\:-bottom-2{ + bottom: -0.5rem; + } + + .\32xl\:-bottom-3{ + bottom: -0.75rem; + } + + .\32xl\:-bottom-4{ + bottom: -1rem; + } + + .\32xl\:-bottom-5{ + bottom: -1.25rem; + } + + .\32xl\:-bottom-6{ + bottom: -1.5rem; + } + + .\32xl\:-bottom-7{ + bottom: -1.75rem; + } + + .\32xl\:-bottom-8{ + bottom: -2rem; + } + + .\32xl\:-bottom-9{ + bottom: -2.25rem; + } + + .\32xl\:-bottom-10{ + bottom: -2.5rem; + } + + .\32xl\:-bottom-11{ + bottom: -2.75rem; + } + + .\32xl\:-bottom-12{ + bottom: -3rem; + } + + .\32xl\:-bottom-14{ + bottom: -3.5rem; + } + + .\32xl\:-bottom-16{ + bottom: -4rem; + } + + .\32xl\:-bottom-20{ + bottom: -5rem; + } + + .\32xl\:-bottom-24{ + bottom: -6rem; + } + + .\32xl\:-bottom-28{ + bottom: -7rem; + } + + .\32xl\:-bottom-32{ + bottom: -8rem; + } + + .\32xl\:-bottom-36{ + bottom: -9rem; + } + + .\32xl\:-bottom-40{ + bottom: -10rem; + } + + .\32xl\:-bottom-44{ + bottom: -11rem; + } + + .\32xl\:-bottom-48{ + bottom: -12rem; + } + + .\32xl\:-bottom-52{ + bottom: -13rem; + } + + .\32xl\:-bottom-56{ + bottom: -14rem; + } + + .\32xl\:-bottom-60{ + bottom: -15rem; + } + + .\32xl\:-bottom-64{ + bottom: -16rem; + } + + .\32xl\:-bottom-72{ + bottom: -18rem; + } + + .\32xl\:-bottom-80{ + bottom: -20rem; + } + + .\32xl\:-bottom-96{ + bottom: -24rem; + } + + .\32xl\:-bottom-px{ + bottom: -1px; + } + + .\32xl\:-bottom-0\.5{ + bottom: -0.125rem; + } + + .\32xl\:-bottom-1\.5{ + bottom: -0.375rem; + } + + .\32xl\:-bottom-2\.5{ + bottom: -0.625rem; + } + + .\32xl\:-bottom-3\.5{ + bottom: -0.875rem; + } + + .\32xl\:bottom-1\/2{ + bottom: 50%; + } + + .\32xl\:bottom-1\/3{ + bottom: 33.333333%; + } + + .\32xl\:bottom-2\/3{ + bottom: 66.666667%; + } + + .\32xl\:bottom-1\/4{ + bottom: 25%; + } + + .\32xl\:bottom-2\/4{ + bottom: 50%; + } + + .\32xl\:bottom-3\/4{ + bottom: 75%; + } + + .\32xl\:bottom-full{ + bottom: 100%; + } + + .\32xl\:-bottom-1\/2{ + bottom: -50%; + } + + .\32xl\:-bottom-1\/3{ + bottom: -33.333333%; + } + + .\32xl\:-bottom-2\/3{ + bottom: -66.666667%; + } + + .\32xl\:-bottom-1\/4{ + bottom: -25%; + } + + .\32xl\:-bottom-2\/4{ + bottom: -50%; + } + + .\32xl\:-bottom-3\/4{ + bottom: -75%; + } + + .\32xl\:-bottom-full{ + bottom: -100%; + } + + .\32xl\:bottom-5vw{ + bottom: 5vw; + } + + .\32xl\:left-0{ + left: 0px; + } + + .\32xl\:left-1{ + left: 0.25rem; + } + + .\32xl\:left-2{ + left: 0.5rem; + } + + .\32xl\:left-3{ + left: 0.75rem; + } + + .\32xl\:left-4{ + left: 1rem; + } + + .\32xl\:left-5{ + left: 1.25rem; + } + + .\32xl\:left-6{ + left: 1.5rem; + } + + .\32xl\:left-7{ + left: 1.75rem; + } + + .\32xl\:left-8{ + left: 2rem; + } + + .\32xl\:left-9{ + left: 2.25rem; + } + + .\32xl\:left-10{ + left: 2.5rem; + } + + .\32xl\:left-11{ + left: 2.75rem; + } + + .\32xl\:left-12{ + left: 3rem; + } + + .\32xl\:left-14{ + left: 3.5rem; + } + + .\32xl\:left-16{ + left: 4rem; + } + + .\32xl\:left-20{ + left: 5rem; + } + + .\32xl\:left-24{ + left: 6rem; + } + + .\32xl\:left-28{ + left: 7rem; + } + + .\32xl\:left-32{ + left: 8rem; + } + + .\32xl\:left-36{ + left: 9rem; + } + + .\32xl\:left-40{ + left: 10rem; + } + + .\32xl\:left-44{ + left: 11rem; + } + + .\32xl\:left-48{ + left: 12rem; + } + + .\32xl\:left-52{ + left: 13rem; + } + + .\32xl\:left-56{ + left: 14rem; + } + + .\32xl\:left-60{ + left: 15rem; + } + + .\32xl\:left-64{ + left: 16rem; + } + + .\32xl\:left-72{ + left: 18rem; + } + + .\32xl\:left-80{ + left: 20rem; + } + + .\32xl\:left-96{ + left: 24rem; + } + + .\32xl\:left-auto{ + left: auto; + } + + .\32xl\:left-px{ + left: 1px; + } + + .\32xl\:left-0\.5{ + left: 0.125rem; + } + + .\32xl\:left-1\.5{ + left: 0.375rem; + } + + .\32xl\:left-2\.5{ + left: 0.625rem; + } + + .\32xl\:left-3\.5{ + left: 0.875rem; + } + + .\32xl\:-left-0{ + left: 0px; + } + + .\32xl\:-left-1{ + left: -0.25rem; + } + + .\32xl\:-left-2{ + left: -0.5rem; + } + + .\32xl\:-left-3{ + left: -0.75rem; + } + + .\32xl\:-left-4{ + left: -1rem; + } + + .\32xl\:-left-5{ + left: -1.25rem; + } + + .\32xl\:-left-6{ + left: -1.5rem; + } + + .\32xl\:-left-7{ + left: -1.75rem; + } + + .\32xl\:-left-8{ + left: -2rem; + } + + .\32xl\:-left-9{ + left: -2.25rem; + } + + .\32xl\:-left-10{ + left: -2.5rem; + } + + .\32xl\:-left-11{ + left: -2.75rem; + } + + .\32xl\:-left-12{ + left: -3rem; + } + + .\32xl\:-left-14{ + left: -3.5rem; + } + + .\32xl\:-left-16{ + left: -4rem; + } + + .\32xl\:-left-20{ + left: -5rem; + } + + .\32xl\:-left-24{ + left: -6rem; + } + + .\32xl\:-left-28{ + left: -7rem; + } + + .\32xl\:-left-32{ + left: -8rem; + } + + .\32xl\:-left-36{ + left: -9rem; + } + + .\32xl\:-left-40{ + left: -10rem; + } + + .\32xl\:-left-44{ + left: -11rem; + } + + .\32xl\:-left-48{ + left: -12rem; + } + + .\32xl\:-left-52{ + left: -13rem; + } + + .\32xl\:-left-56{ + left: -14rem; + } + + .\32xl\:-left-60{ + left: -15rem; + } + + .\32xl\:-left-64{ + left: -16rem; + } + + .\32xl\:-left-72{ + left: -18rem; + } + + .\32xl\:-left-80{ + left: -20rem; + } + + .\32xl\:-left-96{ + left: -24rem; + } + + .\32xl\:-left-px{ + left: -1px; + } + + .\32xl\:-left-0\.5{ + left: -0.125rem; + } + + .\32xl\:-left-1\.5{ + left: -0.375rem; + } + + .\32xl\:-left-2\.5{ + left: -0.625rem; + } + + .\32xl\:-left-3\.5{ + left: -0.875rem; + } + + .\32xl\:left-1\/2{ + left: 50%; + } + + .\32xl\:left-1\/3{ + left: 33.333333%; + } + + .\32xl\:left-2\/3{ + left: 66.666667%; + } + + .\32xl\:left-1\/4{ + left: 25%; + } + + .\32xl\:left-2\/4{ + left: 50%; + } + + .\32xl\:left-3\/4{ + left: 75%; + } + + .\32xl\:left-full{ + left: 100%; + } + + .\32xl\:-left-1\/2{ + left: -50%; + } + + .\32xl\:-left-1\/3{ + left: -33.333333%; + } + + .\32xl\:-left-2\/3{ + left: -66.666667%; + } + + .\32xl\:-left-1\/4{ + left: -25%; + } + + .\32xl\:-left-2\/4{ + left: -50%; + } + + .\32xl\:-left-3\/4{ + left: -75%; + } + + .\32xl\:-left-full{ + left: -100%; + } + + .\32xl\:left-5vw{ + left: 5vw; + } + + .\32xl\:isolate{ + isolation: isolate; + } + + .\32xl\:isolation-auto{ + isolation: auto; + } + + .\32xl\:z-0{ + z-index: 0; + } + + .\32xl\:z-10{ + z-index: 10; + } + + .\32xl\:z-20{ + z-index: 20; + } + + .\32xl\:z-30{ + z-index: 30; + } + + .\32xl\:z-40{ + z-index: 40; + } + + .\32xl\:z-50{ + z-index: 50; + } + + .\32xl\:z-auto{ + z-index: auto; + } + + .\32xl\:focus-within\:z-0:focus-within{ + z-index: 0; + } + + .\32xl\:focus-within\:z-10:focus-within{ + z-index: 10; + } + + .\32xl\:focus-within\:z-20:focus-within{ + z-index: 20; + } + + .\32xl\:focus-within\:z-30:focus-within{ + z-index: 30; + } + + .\32xl\:focus-within\:z-40:focus-within{ + z-index: 40; + } + + .\32xl\:focus-within\:z-50:focus-within{ + z-index: 50; + } + + .\32xl\:focus-within\:z-auto:focus-within{ + z-index: auto; + } + + .\32xl\:focus\:z-0:focus{ + z-index: 0; + } + + .\32xl\:focus\:z-10:focus{ + z-index: 10; + } + + .\32xl\:focus\:z-20:focus{ + z-index: 20; + } + + .\32xl\:focus\:z-30:focus{ + z-index: 30; + } + + .\32xl\:focus\:z-40:focus{ + z-index: 40; + } + + .\32xl\:focus\:z-50:focus{ + z-index: 50; + } + + .\32xl\:focus\:z-auto:focus{ + z-index: auto; + } + + .\32xl\:order-1{ + order: 1; + } + + .\32xl\:order-2{ + order: 2; + } + + .\32xl\:order-3{ + order: 3; + } + + .\32xl\:order-4{ + order: 4; + } + + .\32xl\:order-5{ + order: 5; + } + + .\32xl\:order-6{ + order: 6; + } + + .\32xl\:order-7{ + order: 7; + } + + .\32xl\:order-8{ + order: 8; + } + + .\32xl\:order-9{ + order: 9; + } + + .\32xl\:order-10{ + order: 10; + } + + .\32xl\:order-11{ + order: 11; + } + + .\32xl\:order-12{ + order: 12; + } + + .\32xl\:order-first{ + order: -9999; + } + + .\32xl\:order-last{ + order: 9999; + } + + .\32xl\:order-none{ + order: 0; + } + + .\32xl\:col-auto{ + grid-column: auto; + } + + .\32xl\:col-span-1{ + grid-column: span 1 / span 1; + } + + .\32xl\:col-span-2{ + grid-column: span 2 / span 2; + } + + .\32xl\:col-span-3{ + grid-column: span 3 / span 3; + } + + .\32xl\:col-span-4{ + grid-column: span 4 / span 4; + } + + .\32xl\:col-span-5{ + grid-column: span 5 / span 5; + } + + .\32xl\:col-span-6{ + grid-column: span 6 / span 6; + } + + .\32xl\:col-span-7{ + grid-column: span 7 / span 7; + } + + .\32xl\:col-span-8{ + grid-column: span 8 / span 8; + } + + .\32xl\:col-span-9{ + grid-column: span 9 / span 9; + } + + .\32xl\:col-span-10{ + grid-column: span 10 / span 10; + } + + .\32xl\:col-span-11{ + grid-column: span 11 / span 11; + } + + .\32xl\:col-span-12{ + grid-column: span 12 / span 12; + } + + .\32xl\:col-span-full{ + grid-column: 1 / -1; + } + + .\32xl\:col-start-1{ + grid-column-start: 1; + } + + .\32xl\:col-start-2{ + grid-column-start: 2; + } + + .\32xl\:col-start-3{ + grid-column-start: 3; + } + + .\32xl\:col-start-4{ + grid-column-start: 4; + } + + .\32xl\:col-start-5{ + grid-column-start: 5; + } + + .\32xl\:col-start-6{ + grid-column-start: 6; + } + + .\32xl\:col-start-7{ + grid-column-start: 7; + } + + .\32xl\:col-start-8{ + grid-column-start: 8; + } + + .\32xl\:col-start-9{ + grid-column-start: 9; + } + + .\32xl\:col-start-10{ + grid-column-start: 10; + } + + .\32xl\:col-start-11{ + grid-column-start: 11; + } + + .\32xl\:col-start-12{ + grid-column-start: 12; + } + + .\32xl\:col-start-13{ + grid-column-start: 13; + } + + .\32xl\:col-start-auto{ + grid-column-start: auto; + } + + .\32xl\:col-end-1{ + grid-column-end: 1; + } + + .\32xl\:col-end-2{ + grid-column-end: 2; + } + + .\32xl\:col-end-3{ + grid-column-end: 3; + } + + .\32xl\:col-end-4{ + grid-column-end: 4; + } + + .\32xl\:col-end-5{ + grid-column-end: 5; + } + + .\32xl\:col-end-6{ + grid-column-end: 6; + } + + .\32xl\:col-end-7{ + grid-column-end: 7; + } + + .\32xl\:col-end-8{ + grid-column-end: 8; + } + + .\32xl\:col-end-9{ + grid-column-end: 9; + } + + .\32xl\:col-end-10{ + grid-column-end: 10; + } + + .\32xl\:col-end-11{ + grid-column-end: 11; + } + + .\32xl\:col-end-12{ + grid-column-end: 12; + } + + .\32xl\:col-end-13{ + grid-column-end: 13; + } + + .\32xl\:col-end-auto{ + grid-column-end: auto; + } + + .\32xl\:row-auto{ + grid-row: auto; + } + + .\32xl\:row-span-1{ + grid-row: span 1 / span 1; + } + + .\32xl\:row-span-2{ + grid-row: span 2 / span 2; + } + + .\32xl\:row-span-3{ + grid-row: span 3 / span 3; + } + + .\32xl\:row-span-4{ + grid-row: span 4 / span 4; + } + + .\32xl\:row-span-5{ + grid-row: span 5 / span 5; + } + + .\32xl\:row-span-6{ + grid-row: span 6 / span 6; + } + + .\32xl\:row-span-full{ + grid-row: 1 / -1; + } + + .\32xl\:row-start-1{ + grid-row-start: 1; + } + + .\32xl\:row-start-2{ + grid-row-start: 2; + } + + .\32xl\:row-start-3{ + grid-row-start: 3; + } + + .\32xl\:row-start-4{ + grid-row-start: 4; + } + + .\32xl\:row-start-5{ + grid-row-start: 5; + } + + .\32xl\:row-start-6{ + grid-row-start: 6; + } + + .\32xl\:row-start-7{ + grid-row-start: 7; + } + + .\32xl\:row-start-auto{ + grid-row-start: auto; + } + + .\32xl\:row-end-1{ + grid-row-end: 1; + } + + .\32xl\:row-end-2{ + grid-row-end: 2; + } + + .\32xl\:row-end-3{ + grid-row-end: 3; + } + + .\32xl\:row-end-4{ + grid-row-end: 4; + } + + .\32xl\:row-end-5{ + grid-row-end: 5; + } + + .\32xl\:row-end-6{ + grid-row-end: 6; + } + + .\32xl\:row-end-7{ + grid-row-end: 7; + } + + .\32xl\:row-end-auto{ + grid-row-end: auto; + } + + .\32xl\:float-right{ + float: right; + } + + .\32xl\:float-left{ + float: left; + } + + .\32xl\:float-none{ + float: none; + } + + .\32xl\:clear-left{ + clear: left; + } + + .\32xl\:clear-right{ + clear: right; + } + + .\32xl\:clear-both{ + clear: both; + } + + .\32xl\:clear-none{ + clear: none; + } + + .\32xl\:m-0{ + margin: 0px; + } + + .\32xl\:m-1{ + margin: 0.25rem; + } + + .\32xl\:m-2{ + margin: 0.5rem; + } + + .\32xl\:m-3{ + margin: 0.75rem; + } + + .\32xl\:m-4{ + margin: 1rem; + } + + .\32xl\:m-5{ + margin: 1.25rem; + } + + .\32xl\:m-6{ + margin: 1.5rem; + } + + .\32xl\:m-7{ + margin: 1.75rem; + } + + .\32xl\:m-8{ + margin: 2rem; + } + + .\32xl\:m-9{ + margin: 2.25rem; + } + + .\32xl\:m-10{ + margin: 2.5rem; + } + + .\32xl\:m-11{ + margin: 2.75rem; + } + + .\32xl\:m-12{ + margin: 3rem; + } + + .\32xl\:m-14{ + margin: 3.5rem; + } + + .\32xl\:m-16{ + margin: 4rem; + } + + .\32xl\:m-20{ + margin: 5rem; + } + + .\32xl\:m-24{ + margin: 6rem; + } + + .\32xl\:m-28{ + margin: 7rem; + } + + .\32xl\:m-32{ + margin: 8rem; + } + + .\32xl\:m-36{ + margin: 9rem; + } + + .\32xl\:m-40{ + margin: 10rem; + } + + .\32xl\:m-44{ + margin: 11rem; + } + + .\32xl\:m-48{ + margin: 12rem; + } + + .\32xl\:m-52{ + margin: 13rem; + } + + .\32xl\:m-56{ + margin: 14rem; + } + + .\32xl\:m-60{ + margin: 15rem; + } + + .\32xl\:m-64{ + margin: 16rem; + } + + .\32xl\:m-72{ + margin: 18rem; + } + + .\32xl\:m-80{ + margin: 20rem; + } + + .\32xl\:m-96{ + margin: 24rem; + } + + .\32xl\:m-auto{ + margin: auto; + } + + .\32xl\:m-px{ + margin: 1px; + } + + .\32xl\:m-0\.5{ + margin: 0.125rem; + } + + .\32xl\:m-1\.5{ + margin: 0.375rem; + } + + .\32xl\:m-2\.5{ + margin: 0.625rem; + } + + .\32xl\:m-3\.5{ + margin: 0.875rem; + } + + .\32xl\:-m-0{ + margin: 0px; + } + + .\32xl\:-m-1{ + margin: -0.25rem; + } + + .\32xl\:-m-2{ + margin: -0.5rem; + } + + .\32xl\:-m-3{ + margin: -0.75rem; + } + + .\32xl\:-m-4{ + margin: -1rem; + } + + .\32xl\:-m-5{ + margin: -1.25rem; + } + + .\32xl\:-m-6{ + margin: -1.5rem; + } + + .\32xl\:-m-7{ + margin: -1.75rem; + } + + .\32xl\:-m-8{ + margin: -2rem; + } + + .\32xl\:-m-9{ + margin: -2.25rem; + } + + .\32xl\:-m-10{ + margin: -2.5rem; + } + + .\32xl\:-m-11{ + margin: -2.75rem; + } + + .\32xl\:-m-12{ + margin: -3rem; + } + + .\32xl\:-m-14{ + margin: -3.5rem; + } + + .\32xl\:-m-16{ + margin: -4rem; + } + + .\32xl\:-m-20{ + margin: -5rem; + } + + .\32xl\:-m-24{ + margin: -6rem; + } + + .\32xl\:-m-28{ + margin: -7rem; + } + + .\32xl\:-m-32{ + margin: -8rem; + } + + .\32xl\:-m-36{ + margin: -9rem; + } + + .\32xl\:-m-40{ + margin: -10rem; + } + + .\32xl\:-m-44{ + margin: -11rem; + } + + .\32xl\:-m-48{ + margin: -12rem; + } + + .\32xl\:-m-52{ + margin: -13rem; + } + + .\32xl\:-m-56{ + margin: -14rem; + } + + .\32xl\:-m-60{ + margin: -15rem; + } + + .\32xl\:-m-64{ + margin: -16rem; + } + + .\32xl\:-m-72{ + margin: -18rem; + } + + .\32xl\:-m-80{ + margin: -20rem; + } + + .\32xl\:-m-96{ + margin: -24rem; + } + + .\32xl\:-m-px{ + margin: -1px; + } + + .\32xl\:-m-0\.5{ + margin: -0.125rem; + } + + .\32xl\:-m-1\.5{ + margin: -0.375rem; + } + + .\32xl\:-m-2\.5{ + margin: -0.625rem; + } + + .\32xl\:-m-3\.5{ + margin: -0.875rem; + } + + .\32xl\:mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:mx-1{ + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .\32xl\:mx-2{ + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .\32xl\:mx-3{ + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .\32xl\:mx-4{ + margin-left: 1rem; + margin-right: 1rem; + } + + .\32xl\:mx-5{ + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .\32xl\:mx-6{ + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .\32xl\:mx-7{ + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .\32xl\:mx-8{ + margin-left: 2rem; + margin-right: 2rem; + } + + .\32xl\:mx-9{ + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .\32xl\:mx-10{ + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .\32xl\:mx-11{ + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .\32xl\:mx-12{ + margin-left: 3rem; + margin-right: 3rem; + } + + .\32xl\:mx-14{ + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .\32xl\:mx-16{ + margin-left: 4rem; + margin-right: 4rem; + } + + .\32xl\:mx-20{ + margin-left: 5rem; + margin-right: 5rem; + } + + .\32xl\:mx-24{ + margin-left: 6rem; + margin-right: 6rem; + } + + .\32xl\:mx-28{ + margin-left: 7rem; + margin-right: 7rem; + } + + .\32xl\:mx-32{ + margin-left: 8rem; + margin-right: 8rem; + } + + .\32xl\:mx-36{ + margin-left: 9rem; + margin-right: 9rem; + } + + .\32xl\:mx-40{ + margin-left: 10rem; + margin-right: 10rem; + } + + .\32xl\:mx-44{ + margin-left: 11rem; + margin-right: 11rem; + } + + .\32xl\:mx-48{ + margin-left: 12rem; + margin-right: 12rem; + } + + .\32xl\:mx-52{ + margin-left: 13rem; + margin-right: 13rem; + } + + .\32xl\:mx-56{ + margin-left: 14rem; + margin-right: 14rem; + } + + .\32xl\:mx-60{ + margin-left: 15rem; + margin-right: 15rem; + } + + .\32xl\:mx-64{ + margin-left: 16rem; + margin-right: 16rem; + } + + .\32xl\:mx-72{ + margin-left: 18rem; + margin-right: 18rem; + } + + .\32xl\:mx-80{ + margin-left: 20rem; + margin-right: 20rem; + } + + .\32xl\:mx-96{ + margin-left: 24rem; + margin-right: 24rem; + } + + .\32xl\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + + .\32xl\:mx-px{ + margin-left: 1px; + margin-right: 1px; + } + + .\32xl\:mx-0\.5{ + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .\32xl\:mx-1\.5{ + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .\32xl\:mx-2\.5{ + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .\32xl\:mx-3\.5{ + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .\32xl\:-mx-0{ + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:-mx-1{ + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .\32xl\:-mx-2{ + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .\32xl\:-mx-3{ + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .\32xl\:-mx-4{ + margin-left: -1rem; + margin-right: -1rem; + } + + .\32xl\:-mx-5{ + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .\32xl\:-mx-6{ + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .\32xl\:-mx-7{ + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .\32xl\:-mx-8{ + margin-left: -2rem; + margin-right: -2rem; + } + + .\32xl\:-mx-9{ + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .\32xl\:-mx-10{ + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .\32xl\:-mx-11{ + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .\32xl\:-mx-12{ + margin-left: -3rem; + margin-right: -3rem; + } + + .\32xl\:-mx-14{ + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .\32xl\:-mx-16{ + margin-left: -4rem; + margin-right: -4rem; + } + + .\32xl\:-mx-20{ + margin-left: -5rem; + margin-right: -5rem; + } + + .\32xl\:-mx-24{ + margin-left: -6rem; + margin-right: -6rem; + } + + .\32xl\:-mx-28{ + margin-left: -7rem; + margin-right: -7rem; + } + + .\32xl\:-mx-32{ + margin-left: -8rem; + margin-right: -8rem; + } + + .\32xl\:-mx-36{ + margin-left: -9rem; + margin-right: -9rem; + } + + .\32xl\:-mx-40{ + margin-left: -10rem; + margin-right: -10rem; + } + + .\32xl\:-mx-44{ + margin-left: -11rem; + margin-right: -11rem; + } + + .\32xl\:-mx-48{ + margin-left: -12rem; + margin-right: -12rem; + } + + .\32xl\:-mx-52{ + margin-left: -13rem; + margin-right: -13rem; + } + + .\32xl\:-mx-56{ + margin-left: -14rem; + margin-right: -14rem; + } + + .\32xl\:-mx-60{ + margin-left: -15rem; + margin-right: -15rem; + } + + .\32xl\:-mx-64{ + margin-left: -16rem; + margin-right: -16rem; + } + + .\32xl\:-mx-72{ + margin-left: -18rem; + margin-right: -18rem; + } + + .\32xl\:-mx-80{ + margin-left: -20rem; + margin-right: -20rem; + } + + .\32xl\:-mx-96{ + margin-left: -24rem; + margin-right: -24rem; + } + + .\32xl\:-mx-px{ + margin-left: -1px; + margin-right: -1px; + } + + .\32xl\:-mx-0\.5{ + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .\32xl\:-mx-1\.5{ + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .\32xl\:-mx-2\.5{ + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .\32xl\:-mx-3\.5{ + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .\32xl\:my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:my-1{ + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .\32xl\:my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:my-4{ + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:my-7{ + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:my-8{ + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:my-9{ + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:my-10{ + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:my-11{ + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:my-12{ + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:my-14{ + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:my-16{ + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:my-20{ + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:my-24{ + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:my-28{ + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:my-32{ + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:my-36{ + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:my-40{ + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:my-44{ + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:my-48{ + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:my-52{ + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:my-56{ + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:my-60{ + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:my-64{ + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:my-72{ + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:my-80{ + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:my-96{ + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:my-auto{ + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:my-px{ + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:my-0\.5{ + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:my-1\.5{ + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:my-2\.5{ + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:my-3\.5{ + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:-my-0{ + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:-my-1{ + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .\32xl\:-my-2{ + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .\32xl\:-my-3{ + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .\32xl\:-my-4{ + margin-top: -1rem; + margin-bottom: -1rem; + } + + .\32xl\:-my-5{ + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .\32xl\:-my-6{ + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .\32xl\:-my-7{ + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .\32xl\:-my-8{ + margin-top: -2rem; + margin-bottom: -2rem; + } + + .\32xl\:-my-9{ + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .\32xl\:-my-10{ + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .\32xl\:-my-11{ + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .\32xl\:-my-12{ + margin-top: -3rem; + margin-bottom: -3rem; + } + + .\32xl\:-my-14{ + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .\32xl\:-my-16{ + margin-top: -4rem; + margin-bottom: -4rem; + } + + .\32xl\:-my-20{ + margin-top: -5rem; + margin-bottom: -5rem; + } + + .\32xl\:-my-24{ + margin-top: -6rem; + margin-bottom: -6rem; + } + + .\32xl\:-my-28{ + margin-top: -7rem; + margin-bottom: -7rem; + } + + .\32xl\:-my-32{ + margin-top: -8rem; + margin-bottom: -8rem; + } + + .\32xl\:-my-36{ + margin-top: -9rem; + margin-bottom: -9rem; + } + + .\32xl\:-my-40{ + margin-top: -10rem; + margin-bottom: -10rem; + } + + .\32xl\:-my-44{ + margin-top: -11rem; + margin-bottom: -11rem; + } + + .\32xl\:-my-48{ + margin-top: -12rem; + margin-bottom: -12rem; + } + + .\32xl\:-my-52{ + margin-top: -13rem; + margin-bottom: -13rem; + } + + .\32xl\:-my-56{ + margin-top: -14rem; + margin-bottom: -14rem; + } + + .\32xl\:-my-60{ + margin-top: -15rem; + margin-bottom: -15rem; + } + + .\32xl\:-my-64{ + margin-top: -16rem; + margin-bottom: -16rem; + } + + .\32xl\:-my-72{ + margin-top: -18rem; + margin-bottom: -18rem; + } + + .\32xl\:-my-80{ + margin-top: -20rem; + margin-bottom: -20rem; + } + + .\32xl\:-my-96{ + margin-top: -24rem; + margin-bottom: -24rem; + } + + .\32xl\:-my-px{ + margin-top: -1px; + margin-bottom: -1px; + } + + .\32xl\:-my-0\.5{ + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .\32xl\:-my-1\.5{ + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .\32xl\:-my-2\.5{ + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .\32xl\:-my-3\.5{ + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .\32xl\:mt-0{ + margin-top: 0px; + } + + .\32xl\:mt-1{ + margin-top: 0.25rem; + } + + .\32xl\:mt-2{ + margin-top: 0.5rem; + } + + .\32xl\:mt-3{ + margin-top: 0.75rem; + } + + .\32xl\:mt-4{ + margin-top: 1rem; + } + + .\32xl\:mt-5{ + margin-top: 1.25rem; + } + + .\32xl\:mt-6{ + margin-top: 1.5rem; + } + + .\32xl\:mt-7{ + margin-top: 1.75rem; + } + + .\32xl\:mt-8{ + margin-top: 2rem; + } + + .\32xl\:mt-9{ + margin-top: 2.25rem; + } + + .\32xl\:mt-10{ + margin-top: 2.5rem; + } + + .\32xl\:mt-11{ + margin-top: 2.75rem; + } + + .\32xl\:mt-12{ + margin-top: 3rem; + } + + .\32xl\:mt-14{ + margin-top: 3.5rem; + } + + .\32xl\:mt-16{ + margin-top: 4rem; + } + + .\32xl\:mt-20{ + margin-top: 5rem; + } + + .\32xl\:mt-24{ + margin-top: 6rem; + } + + .\32xl\:mt-28{ + margin-top: 7rem; + } + + .\32xl\:mt-32{ + margin-top: 8rem; + } + + .\32xl\:mt-36{ + margin-top: 9rem; + } + + .\32xl\:mt-40{ + margin-top: 10rem; + } + + .\32xl\:mt-44{ + margin-top: 11rem; + } + + .\32xl\:mt-48{ + margin-top: 12rem; + } + + .\32xl\:mt-52{ + margin-top: 13rem; + } + + .\32xl\:mt-56{ + margin-top: 14rem; + } + + .\32xl\:mt-60{ + margin-top: 15rem; + } + + .\32xl\:mt-64{ + margin-top: 16rem; + } + + .\32xl\:mt-72{ + margin-top: 18rem; + } + + .\32xl\:mt-80{ + margin-top: 20rem; + } + + .\32xl\:mt-96{ + margin-top: 24rem; + } + + .\32xl\:mt-auto{ + margin-top: auto; + } + + .\32xl\:mt-px{ + margin-top: 1px; + } + + .\32xl\:mt-0\.5{ + margin-top: 0.125rem; + } + + .\32xl\:mt-1\.5{ + margin-top: 0.375rem; + } + + .\32xl\:mt-2\.5{ + margin-top: 0.625rem; + } + + .\32xl\:mt-3\.5{ + margin-top: 0.875rem; + } + + .\32xl\:-mt-0{ + margin-top: 0px; + } + + .\32xl\:-mt-1{ + margin-top: -0.25rem; + } + + .\32xl\:-mt-2{ + margin-top: -0.5rem; + } + + .\32xl\:-mt-3{ + margin-top: -0.75rem; + } + + .\32xl\:-mt-4{ + margin-top: -1rem; + } + + .\32xl\:-mt-5{ + margin-top: -1.25rem; + } + + .\32xl\:-mt-6{ + margin-top: -1.5rem; + } + + .\32xl\:-mt-7{ + margin-top: -1.75rem; + } + + .\32xl\:-mt-8{ + margin-top: -2rem; + } + + .\32xl\:-mt-9{ + margin-top: -2.25rem; + } + + .\32xl\:-mt-10{ + margin-top: -2.5rem; + } + + .\32xl\:-mt-11{ + margin-top: -2.75rem; + } + + .\32xl\:-mt-12{ + margin-top: -3rem; + } + + .\32xl\:-mt-14{ + margin-top: -3.5rem; + } + + .\32xl\:-mt-16{ + margin-top: -4rem; + } + + .\32xl\:-mt-20{ + margin-top: -5rem; + } + + .\32xl\:-mt-24{ + margin-top: -6rem; + } + + .\32xl\:-mt-28{ + margin-top: -7rem; + } + + .\32xl\:-mt-32{ + margin-top: -8rem; + } + + .\32xl\:-mt-36{ + margin-top: -9rem; + } + + .\32xl\:-mt-40{ + margin-top: -10rem; + } + + .\32xl\:-mt-44{ + margin-top: -11rem; + } + + .\32xl\:-mt-48{ + margin-top: -12rem; + } + + .\32xl\:-mt-52{ + margin-top: -13rem; + } + + .\32xl\:-mt-56{ + margin-top: -14rem; + } + + .\32xl\:-mt-60{ + margin-top: -15rem; + } + + .\32xl\:-mt-64{ + margin-top: -16rem; + } + + .\32xl\:-mt-72{ + margin-top: -18rem; + } + + .\32xl\:-mt-80{ + margin-top: -20rem; + } + + .\32xl\:-mt-96{ + margin-top: -24rem; + } + + .\32xl\:-mt-px{ + margin-top: -1px; + } + + .\32xl\:-mt-0\.5{ + margin-top: -0.125rem; + } + + .\32xl\:-mt-1\.5{ + margin-top: -0.375rem; + } + + .\32xl\:-mt-2\.5{ + margin-top: -0.625rem; + } + + .\32xl\:-mt-3\.5{ + margin-top: -0.875rem; + } + + .\32xl\:mr-0{ + margin-right: 0px; + } + + .\32xl\:mr-1{ + margin-right: 0.25rem; + } + + .\32xl\:mr-2{ + margin-right: 0.5rem; + } + + .\32xl\:mr-3{ + margin-right: 0.75rem; + } + + .\32xl\:mr-4{ + margin-right: 1rem; + } + + .\32xl\:mr-5{ + margin-right: 1.25rem; + } + + .\32xl\:mr-6{ + margin-right: 1.5rem; + } + + .\32xl\:mr-7{ + margin-right: 1.75rem; + } + + .\32xl\:mr-8{ + margin-right: 2rem; + } + + .\32xl\:mr-9{ + margin-right: 2.25rem; + } + + .\32xl\:mr-10{ + margin-right: 2.5rem; + } + + .\32xl\:mr-11{ + margin-right: 2.75rem; + } + + .\32xl\:mr-12{ + margin-right: 3rem; + } + + .\32xl\:mr-14{ + margin-right: 3.5rem; + } + + .\32xl\:mr-16{ + margin-right: 4rem; + } + + .\32xl\:mr-20{ + margin-right: 5rem; + } + + .\32xl\:mr-24{ + margin-right: 6rem; + } + + .\32xl\:mr-28{ + margin-right: 7rem; + } + + .\32xl\:mr-32{ + margin-right: 8rem; + } + + .\32xl\:mr-36{ + margin-right: 9rem; + } + + .\32xl\:mr-40{ + margin-right: 10rem; + } + + .\32xl\:mr-44{ + margin-right: 11rem; + } + + .\32xl\:mr-48{ + margin-right: 12rem; + } + + .\32xl\:mr-52{ + margin-right: 13rem; + } + + .\32xl\:mr-56{ + margin-right: 14rem; + } + + .\32xl\:mr-60{ + margin-right: 15rem; + } + + .\32xl\:mr-64{ + margin-right: 16rem; + } + + .\32xl\:mr-72{ + margin-right: 18rem; + } + + .\32xl\:mr-80{ + margin-right: 20rem; + } + + .\32xl\:mr-96{ + margin-right: 24rem; + } + + .\32xl\:mr-auto{ + margin-right: auto; + } + + .\32xl\:mr-px{ + margin-right: 1px; + } + + .\32xl\:mr-0\.5{ + margin-right: 0.125rem; + } + + .\32xl\:mr-1\.5{ + margin-right: 0.375rem; + } + + .\32xl\:mr-2\.5{ + margin-right: 0.625rem; + } + + .\32xl\:mr-3\.5{ + margin-right: 0.875rem; + } + + .\32xl\:-mr-0{ + margin-right: 0px; + } + + .\32xl\:-mr-1{ + margin-right: -0.25rem; + } + + .\32xl\:-mr-2{ + margin-right: -0.5rem; + } + + .\32xl\:-mr-3{ + margin-right: -0.75rem; + } + + .\32xl\:-mr-4{ + margin-right: -1rem; + } + + .\32xl\:-mr-5{ + margin-right: -1.25rem; + } + + .\32xl\:-mr-6{ + margin-right: -1.5rem; + } + + .\32xl\:-mr-7{ + margin-right: -1.75rem; + } + + .\32xl\:-mr-8{ + margin-right: -2rem; + } + + .\32xl\:-mr-9{ + margin-right: -2.25rem; + } + + .\32xl\:-mr-10{ + margin-right: -2.5rem; + } + + .\32xl\:-mr-11{ + margin-right: -2.75rem; + } + + .\32xl\:-mr-12{ + margin-right: -3rem; + } + + .\32xl\:-mr-14{ + margin-right: -3.5rem; + } + + .\32xl\:-mr-16{ + margin-right: -4rem; + } + + .\32xl\:-mr-20{ + margin-right: -5rem; + } + + .\32xl\:-mr-24{ + margin-right: -6rem; + } + + .\32xl\:-mr-28{ + margin-right: -7rem; + } + + .\32xl\:-mr-32{ + margin-right: -8rem; + } + + .\32xl\:-mr-36{ + margin-right: -9rem; + } + + .\32xl\:-mr-40{ + margin-right: -10rem; + } + + .\32xl\:-mr-44{ + margin-right: -11rem; + } + + .\32xl\:-mr-48{ + margin-right: -12rem; + } + + .\32xl\:-mr-52{ + margin-right: -13rem; + } + + .\32xl\:-mr-56{ + margin-right: -14rem; + } + + .\32xl\:-mr-60{ + margin-right: -15rem; + } + + .\32xl\:-mr-64{ + margin-right: -16rem; + } + + .\32xl\:-mr-72{ + margin-right: -18rem; + } + + .\32xl\:-mr-80{ + margin-right: -20rem; + } + + .\32xl\:-mr-96{ + margin-right: -24rem; + } + + .\32xl\:-mr-px{ + margin-right: -1px; + } + + .\32xl\:-mr-0\.5{ + margin-right: -0.125rem; + } + + .\32xl\:-mr-1\.5{ + margin-right: -0.375rem; + } + + .\32xl\:-mr-2\.5{ + margin-right: -0.625rem; + } + + .\32xl\:-mr-3\.5{ + margin-right: -0.875rem; + } + + .\32xl\:mb-0{ + margin-bottom: 0px; + } + + .\32xl\:mb-1{ + margin-bottom: 0.25rem; + } + + .\32xl\:mb-2{ + margin-bottom: 0.5rem; + } + + .\32xl\:mb-3{ + margin-bottom: 0.75rem; + } + + .\32xl\:mb-4{ + margin-bottom: 1rem; + } + + .\32xl\:mb-5{ + margin-bottom: 1.25rem; + } + + .\32xl\:mb-6{ + margin-bottom: 1.5rem; + } + + .\32xl\:mb-7{ + margin-bottom: 1.75rem; + } + + .\32xl\:mb-8{ + margin-bottom: 2rem; + } + + .\32xl\:mb-9{ + margin-bottom: 2.25rem; + } + + .\32xl\:mb-10{ + margin-bottom: 2.5rem; + } + + .\32xl\:mb-11{ + margin-bottom: 2.75rem; + } + + .\32xl\:mb-12{ + margin-bottom: 3rem; + } + + .\32xl\:mb-14{ + margin-bottom: 3.5rem; + } + + .\32xl\:mb-16{ + margin-bottom: 4rem; + } + + .\32xl\:mb-20{ + margin-bottom: 5rem; + } + + .\32xl\:mb-24{ + margin-bottom: 6rem; + } + + .\32xl\:mb-28{ + margin-bottom: 7rem; + } + + .\32xl\:mb-32{ + margin-bottom: 8rem; + } + + .\32xl\:mb-36{ + margin-bottom: 9rem; + } + + .\32xl\:mb-40{ + margin-bottom: 10rem; + } + + .\32xl\:mb-44{ + margin-bottom: 11rem; + } + + .\32xl\:mb-48{ + margin-bottom: 12rem; + } + + .\32xl\:mb-52{ + margin-bottom: 13rem; + } + + .\32xl\:mb-56{ + margin-bottom: 14rem; + } + + .\32xl\:mb-60{ + margin-bottom: 15rem; + } + + .\32xl\:mb-64{ + margin-bottom: 16rem; + } + + .\32xl\:mb-72{ + margin-bottom: 18rem; + } + + .\32xl\:mb-80{ + margin-bottom: 20rem; + } + + .\32xl\:mb-96{ + margin-bottom: 24rem; + } + + .\32xl\:mb-auto{ + margin-bottom: auto; + } + + .\32xl\:mb-px{ + margin-bottom: 1px; + } + + .\32xl\:mb-0\.5{ + margin-bottom: 0.125rem; + } + + .\32xl\:mb-1\.5{ + margin-bottom: 0.375rem; + } + + .\32xl\:mb-2\.5{ + margin-bottom: 0.625rem; + } + + .\32xl\:mb-3\.5{ + margin-bottom: 0.875rem; + } + + .\32xl\:-mb-0{ + margin-bottom: 0px; + } + + .\32xl\:-mb-1{ + margin-bottom: -0.25rem; + } + + .\32xl\:-mb-2{ + margin-bottom: -0.5rem; + } + + .\32xl\:-mb-3{ + margin-bottom: -0.75rem; + } + + .\32xl\:-mb-4{ + margin-bottom: -1rem; + } + + .\32xl\:-mb-5{ + margin-bottom: -1.25rem; + } + + .\32xl\:-mb-6{ + margin-bottom: -1.5rem; + } + + .\32xl\:-mb-7{ + margin-bottom: -1.75rem; + } + + .\32xl\:-mb-8{ + margin-bottom: -2rem; + } + + .\32xl\:-mb-9{ + margin-bottom: -2.25rem; + } + + .\32xl\:-mb-10{ + margin-bottom: -2.5rem; + } + + .\32xl\:-mb-11{ + margin-bottom: -2.75rem; + } + + .\32xl\:-mb-12{ + margin-bottom: -3rem; + } + + .\32xl\:-mb-14{ + margin-bottom: -3.5rem; + } + + .\32xl\:-mb-16{ + margin-bottom: -4rem; + } + + .\32xl\:-mb-20{ + margin-bottom: -5rem; + } + + .\32xl\:-mb-24{ + margin-bottom: -6rem; + } + + .\32xl\:-mb-28{ + margin-bottom: -7rem; + } + + .\32xl\:-mb-32{ + margin-bottom: -8rem; + } + + .\32xl\:-mb-36{ + margin-bottom: -9rem; + } + + .\32xl\:-mb-40{ + margin-bottom: -10rem; + } + + .\32xl\:-mb-44{ + margin-bottom: -11rem; + } + + .\32xl\:-mb-48{ + margin-bottom: -12rem; + } + + .\32xl\:-mb-52{ + margin-bottom: -13rem; + } + + .\32xl\:-mb-56{ + margin-bottom: -14rem; + } + + .\32xl\:-mb-60{ + margin-bottom: -15rem; + } + + .\32xl\:-mb-64{ + margin-bottom: -16rem; + } + + .\32xl\:-mb-72{ + margin-bottom: -18rem; + } + + .\32xl\:-mb-80{ + margin-bottom: -20rem; + } + + .\32xl\:-mb-96{ + margin-bottom: -24rem; + } + + .\32xl\:-mb-px{ + margin-bottom: -1px; + } + + .\32xl\:-mb-0\.5{ + margin-bottom: -0.125rem; + } + + .\32xl\:-mb-1\.5{ + margin-bottom: -0.375rem; + } + + .\32xl\:-mb-2\.5{ + margin-bottom: -0.625rem; + } + + .\32xl\:-mb-3\.5{ + margin-bottom: -0.875rem; + } + + .\32xl\:ml-0{ + margin-left: 0px; + } + + .\32xl\:ml-1{ + margin-left: 0.25rem; + } + + .\32xl\:ml-2{ + margin-left: 0.5rem; + } + + .\32xl\:ml-3{ + margin-left: 0.75rem; + } + + .\32xl\:ml-4{ + margin-left: 1rem; + } + + .\32xl\:ml-5{ + margin-left: 1.25rem; + } + + .\32xl\:ml-6{ + margin-left: 1.5rem; + } + + .\32xl\:ml-7{ + margin-left: 1.75rem; + } + + .\32xl\:ml-8{ + margin-left: 2rem; + } + + .\32xl\:ml-9{ + margin-left: 2.25rem; + } + + .\32xl\:ml-10{ + margin-left: 2.5rem; + } + + .\32xl\:ml-11{ + margin-left: 2.75rem; + } + + .\32xl\:ml-12{ + margin-left: 3rem; + } + + .\32xl\:ml-14{ + margin-left: 3.5rem; + } + + .\32xl\:ml-16{ + margin-left: 4rem; + } + + .\32xl\:ml-20{ + margin-left: 5rem; + } + + .\32xl\:ml-24{ + margin-left: 6rem; + } + + .\32xl\:ml-28{ + margin-left: 7rem; + } + + .\32xl\:ml-32{ + margin-left: 8rem; + } + + .\32xl\:ml-36{ + margin-left: 9rem; + } + + .\32xl\:ml-40{ + margin-left: 10rem; + } + + .\32xl\:ml-44{ + margin-left: 11rem; + } + + .\32xl\:ml-48{ + margin-left: 12rem; + } + + .\32xl\:ml-52{ + margin-left: 13rem; + } + + .\32xl\:ml-56{ + margin-left: 14rem; + } + + .\32xl\:ml-60{ + margin-left: 15rem; + } + + .\32xl\:ml-64{ + margin-left: 16rem; + } + + .\32xl\:ml-72{ + margin-left: 18rem; + } + + .\32xl\:ml-80{ + margin-left: 20rem; + } + + .\32xl\:ml-96{ + margin-left: 24rem; + } + + .\32xl\:ml-auto{ + margin-left: auto; + } + + .\32xl\:ml-px{ + margin-left: 1px; + } + + .\32xl\:ml-0\.5{ + margin-left: 0.125rem; + } + + .\32xl\:ml-1\.5{ + margin-left: 0.375rem; + } + + .\32xl\:ml-2\.5{ + margin-left: 0.625rem; + } + + .\32xl\:ml-3\.5{ + margin-left: 0.875rem; + } + + .\32xl\:-ml-0{ + margin-left: 0px; + } + + .\32xl\:-ml-1{ + margin-left: -0.25rem; + } + + .\32xl\:-ml-2{ + margin-left: -0.5rem; + } + + .\32xl\:-ml-3{ + margin-left: -0.75rem; + } + + .\32xl\:-ml-4{ + margin-left: -1rem; + } + + .\32xl\:-ml-5{ + margin-left: -1.25rem; + } + + .\32xl\:-ml-6{ + margin-left: -1.5rem; + } + + .\32xl\:-ml-7{ + margin-left: -1.75rem; + } + + .\32xl\:-ml-8{ + margin-left: -2rem; + } + + .\32xl\:-ml-9{ + margin-left: -2.25rem; + } + + .\32xl\:-ml-10{ + margin-left: -2.5rem; + } + + .\32xl\:-ml-11{ + margin-left: -2.75rem; + } + + .\32xl\:-ml-12{ + margin-left: -3rem; + } + + .\32xl\:-ml-14{ + margin-left: -3.5rem; + } + + .\32xl\:-ml-16{ + margin-left: -4rem; + } + + .\32xl\:-ml-20{ + margin-left: -5rem; + } + + .\32xl\:-ml-24{ + margin-left: -6rem; + } + + .\32xl\:-ml-28{ + margin-left: -7rem; + } + + .\32xl\:-ml-32{ + margin-left: -8rem; + } + + .\32xl\:-ml-36{ + margin-left: -9rem; + } + + .\32xl\:-ml-40{ + margin-left: -10rem; + } + + .\32xl\:-ml-44{ + margin-left: -11rem; + } + + .\32xl\:-ml-48{ + margin-left: -12rem; + } + + .\32xl\:-ml-52{ + margin-left: -13rem; + } + + .\32xl\:-ml-56{ + margin-left: -14rem; + } + + .\32xl\:-ml-60{ + margin-left: -15rem; + } + + .\32xl\:-ml-64{ + margin-left: -16rem; + } + + .\32xl\:-ml-72{ + margin-left: -18rem; + } + + .\32xl\:-ml-80{ + margin-left: -20rem; + } + + .\32xl\:-ml-96{ + margin-left: -24rem; + } + + .\32xl\:-ml-px{ + margin-left: -1px; + } + + .\32xl\:-ml-0\.5{ + margin-left: -0.125rem; + } + + .\32xl\:-ml-1\.5{ + margin-left: -0.375rem; + } + + .\32xl\:-ml-2\.5{ + margin-left: -0.625rem; + } + + .\32xl\:-ml-3\.5{ + margin-left: -0.875rem; + } + + .\32xl\:box-border{ + box-sizing: border-box; + } + + .\32xl\:box-content{ + box-sizing: content-box; + } + + .\32xl\:block{ + display: block; + } + + .\32xl\:inline-block{ + display: inline-block; + } + + .\32xl\:inline{ + display: inline; + } + + .\32xl\:flex{ + display: flex; + } + + .\32xl\:inline-flex{ + display: inline-flex; + } + + .\32xl\:table{ + display: table; + } + + .\32xl\:inline-table{ + display: inline-table; + } + + .\32xl\:table-caption{ + display: table-caption; + } + + .\32xl\:table-cell{ + display: table-cell; + } + + .\32xl\:table-column{ + display: table-column; + } + + .\32xl\:table-column-group{ + display: table-column-group; + } + + .\32xl\:table-footer-group{ + display: table-footer-group; + } + + .\32xl\:table-header-group{ + display: table-header-group; + } + + .\32xl\:table-row-group{ + display: table-row-group; + } + + .\32xl\:table-row{ + display: table-row; + } + + .\32xl\:flow-root{ + display: flow-root; + } + + .\32xl\:grid{ + display: grid; + } + + .\32xl\:inline-grid{ + display: inline-grid; + } + + .\32xl\:contents{ + display: contents; + } + + .\32xl\:list-item{ + display: list-item; + } + + .\32xl\:hidden{ + display: none; + } + + .\32xl\:h-0{ + height: 0px; + } + + .\32xl\:h-1{ + height: 0.25rem; + } + + .\32xl\:h-2{ + height: 0.5rem; + } + + .\32xl\:h-3{ + height: 0.75rem; + } + + .\32xl\:h-4{ + height: 1rem; + } + + .\32xl\:h-5{ + height: 1.25rem; + } + + .\32xl\:h-6{ + height: 1.5rem; + } + + .\32xl\:h-7{ + height: 1.75rem; + } + + .\32xl\:h-8{ + height: 2rem; + } + + .\32xl\:h-9{ + height: 2.25rem; + } + + .\32xl\:h-10{ + height: 2.5rem; + } + + .\32xl\:h-11{ + height: 2.75rem; + } + + .\32xl\:h-12{ + height: 3rem; + } + + .\32xl\:h-14{ + height: 3.5rem; + } + + .\32xl\:h-16{ + height: 4rem; + } + + .\32xl\:h-20{ + height: 5rem; + } + + .\32xl\:h-24{ + height: 6rem; + } + + .\32xl\:h-28{ + height: 7rem; + } + + .\32xl\:h-32{ + height: 8rem; + } + + .\32xl\:h-36{ + height: 9rem; + } + + .\32xl\:h-40{ + height: 10rem; + } + + .\32xl\:h-44{ + height: 11rem; + } + + .\32xl\:h-48{ + height: 12rem; + } + + .\32xl\:h-52{ + height: 13rem; + } + + .\32xl\:h-56{ + height: 14rem; + } + + .\32xl\:h-60{ + height: 15rem; + } + + .\32xl\:h-64{ + height: 16rem; + } + + .\32xl\:h-72{ + height: 18rem; + } + + .\32xl\:h-80{ + height: 20rem; + } + + .\32xl\:h-96{ + height: 24rem; + } + + .\32xl\:h-auto{ + height: auto; + } + + .\32xl\:h-px{ + height: 1px; + } + + .\32xl\:h-0\.5{ + height: 0.125rem; + } + + .\32xl\:h-1\.5{ + height: 0.375rem; + } + + .\32xl\:h-2\.5{ + height: 0.625rem; + } + + .\32xl\:h-3\.5{ + height: 0.875rem; + } + + .\32xl\:h-1\/2{ + height: 50%; + } + + .\32xl\:h-1\/3{ + height: 33.333333%; + } + + .\32xl\:h-2\/3{ + height: 66.666667%; + } + + .\32xl\:h-1\/4{ + height: 25%; + } + + .\32xl\:h-2\/4{ + height: 50%; + } + + .\32xl\:h-3\/4{ + height: 75%; + } + + .\32xl\:h-1\/5{ + height: 20%; + } + + .\32xl\:h-2\/5{ + height: 40%; + } + + .\32xl\:h-3\/5{ + height: 60%; + } + + .\32xl\:h-4\/5{ + height: 80%; + } + + .\32xl\:h-1\/6{ + height: 16.666667%; + } + + .\32xl\:h-2\/6{ + height: 33.333333%; + } + + .\32xl\:h-3\/6{ + height: 50%; + } + + .\32xl\:h-4\/6{ + height: 66.666667%; + } + + .\32xl\:h-5\/6{ + height: 83.333333%; + } + + .\32xl\:h-full{ + height: 100%; + } + + .\32xl\:h-screen{ + height: 100vh; + } + + .\32xl\:max-h-0{ + max-height: 0px; + } + + .\32xl\:max-h-1{ + max-height: 0.25rem; + } + + .\32xl\:max-h-2{ + max-height: 0.5rem; + } + + .\32xl\:max-h-3{ + max-height: 0.75rem; + } + + .\32xl\:max-h-4{ + max-height: 1rem; + } + + .\32xl\:max-h-5{ + max-height: 1.25rem; + } + + .\32xl\:max-h-6{ + max-height: 1.5rem; + } + + .\32xl\:max-h-7{ + max-height: 1.75rem; + } + + .\32xl\:max-h-8{ + max-height: 2rem; + } + + .\32xl\:max-h-9{ + max-height: 2.25rem; + } + + .\32xl\:max-h-10{ + max-height: 2.5rem; + } + + .\32xl\:max-h-11{ + max-height: 2.75rem; + } + + .\32xl\:max-h-12{ + max-height: 3rem; + } + + .\32xl\:max-h-14{ + max-height: 3.5rem; + } + + .\32xl\:max-h-16{ + max-height: 4rem; + } + + .\32xl\:max-h-20{ + max-height: 5rem; + } + + .\32xl\:max-h-24{ + max-height: 6rem; + } + + .\32xl\:max-h-28{ + max-height: 7rem; + } + + .\32xl\:max-h-32{ + max-height: 8rem; + } + + .\32xl\:max-h-36{ + max-height: 9rem; + } + + .\32xl\:max-h-40{ + max-height: 10rem; + } + + .\32xl\:max-h-44{ + max-height: 11rem; + } + + .\32xl\:max-h-48{ + max-height: 12rem; + } + + .\32xl\:max-h-52{ + max-height: 13rem; + } + + .\32xl\:max-h-56{ + max-height: 14rem; + } + + .\32xl\:max-h-60{ + max-height: 15rem; + } + + .\32xl\:max-h-64{ + max-height: 16rem; + } + + .\32xl\:max-h-72{ + max-height: 18rem; + } + + .\32xl\:max-h-80{ + max-height: 20rem; + } + + .\32xl\:max-h-96{ + max-height: 24rem; + } + + .\32xl\:max-h-px{ + max-height: 1px; + } + + .\32xl\:max-h-0\.5{ + max-height: 0.125rem; + } + + .\32xl\:max-h-1\.5{ + max-height: 0.375rem; + } + + .\32xl\:max-h-2\.5{ + max-height: 0.625rem; + } + + .\32xl\:max-h-3\.5{ + max-height: 0.875rem; + } + + .\32xl\:max-h-full{ + max-height: 100%; + } + + .\32xl\:max-h-screen{ + max-height: 100vh; + } + + .\32xl\:min-h-0{ + min-height: 0px; + } + + .\32xl\:min-h-full{ + min-height: 100%; + } + + .\32xl\:min-h-screen{ + min-height: 100vh; + } + + .\32xl\:w-0{ + width: 0px; + } + + .\32xl\:w-1{ + width: 0.25rem; + } + + .\32xl\:w-2{ + width: 0.5rem; + } + + .\32xl\:w-3{ + width: 0.75rem; + } + + .\32xl\:w-4{ + width: 1rem; + } + + .\32xl\:w-5{ + width: 1.25rem; + } + + .\32xl\:w-6{ + width: 1.5rem; + } + + .\32xl\:w-7{ + width: 1.75rem; + } + + .\32xl\:w-8{ + width: 2rem; + } + + .\32xl\:w-9{ + width: 2.25rem; + } + + .\32xl\:w-10{ + width: 2.5rem; + } + + .\32xl\:w-11{ + width: 2.75rem; + } + + .\32xl\:w-12{ + width: 3rem; + } + + .\32xl\:w-14{ + width: 3.5rem; + } + + .\32xl\:w-16{ + width: 4rem; + } + + .\32xl\:w-20{ + width: 5rem; + } + + .\32xl\:w-24{ + width: 6rem; + } + + .\32xl\:w-28{ + width: 7rem; + } + + .\32xl\:w-32{ + width: 8rem; + } + + .\32xl\:w-36{ + width: 9rem; + } + + .\32xl\:w-40{ + width: 10rem; + } + + .\32xl\:w-44{ + width: 11rem; + } + + .\32xl\:w-48{ + width: 12rem; + } + + .\32xl\:w-52{ + width: 13rem; + } + + .\32xl\:w-56{ + width: 14rem; + } + + .\32xl\:w-60{ + width: 15rem; + } + + .\32xl\:w-64{ + width: 16rem; + } + + .\32xl\:w-72{ + width: 18rem; + } + + .\32xl\:w-80{ + width: 20rem; + } + + .\32xl\:w-96{ + width: 24rem; + } + + .\32xl\:w-auto{ + width: auto; + } + + .\32xl\:w-px{ + width: 1px; + } + + .\32xl\:w-0\.5{ + width: 0.125rem; + } + + .\32xl\:w-1\.5{ + width: 0.375rem; + } + + .\32xl\:w-2\.5{ + width: 0.625rem; + } + + .\32xl\:w-3\.5{ + width: 0.875rem; + } + + .\32xl\:w-1\/2{ + width: 50%; + } + + .\32xl\:w-1\/3{ + width: 33.333333%; + } + + .\32xl\:w-2\/3{ + width: 66.666667%; + } + + .\32xl\:w-1\/4{ + width: 25%; + } + + .\32xl\:w-2\/4{ + width: 50%; + } + + .\32xl\:w-3\/4{ + width: 75%; + } + + .\32xl\:w-1\/5{ + width: 20%; + } + + .\32xl\:w-2\/5{ + width: 40%; + } + + .\32xl\:w-3\/5{ + width: 60%; + } + + .\32xl\:w-4\/5{ + width: 80%; + } + + .\32xl\:w-1\/6{ + width: 16.666667%; + } + + .\32xl\:w-2\/6{ + width: 33.333333%; + } + + .\32xl\:w-3\/6{ + width: 50%; + } + + .\32xl\:w-4\/6{ + width: 66.666667%; + } + + .\32xl\:w-5\/6{ + width: 83.333333%; + } + + .\32xl\:w-1\/12{ + width: 8.333333%; + } + + .\32xl\:w-2\/12{ + width: 16.666667%; + } + + .\32xl\:w-3\/12{ + width: 25%; + } + + .\32xl\:w-4\/12{ + width: 33.333333%; + } + + .\32xl\:w-5\/12{ + width: 41.666667%; + } + + .\32xl\:w-6\/12{ + width: 50%; + } + + .\32xl\:w-7\/12{ + width: 58.333333%; + } + + .\32xl\:w-8\/12{ + width: 66.666667%; + } + + .\32xl\:w-9\/12{ + width: 75%; + } + + .\32xl\:w-10\/12{ + width: 83.333333%; + } + + .\32xl\:w-11\/12{ + width: 91.666667%; + } + + .\32xl\:w-full{ + width: 100%; + } + + .\32xl\:w-screen{ + width: 100vw; + } + + .\32xl\:w-min{ + width: -webkit-min-content; + width: -moz-min-content; + width: min-content; + } + + .\32xl\:w-max{ + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + } + + .\32xl\:min-w-0{ + min-width: 0px; + } + + .\32xl\:min-w-full{ + min-width: 100%; + } + + .\32xl\:min-w-min{ + min-width: -webkit-min-content; + min-width: -moz-min-content; + min-width: min-content; + } + + .\32xl\:min-w-max{ + min-width: -webkit-max-content; + min-width: -moz-max-content; + min-width: max-content; + } + + .\32xl\:max-w-0{ + max-width: 0rem; + } + + .\32xl\:max-w-none{ + max-width: none; + } + + .\32xl\:max-w-xs{ + max-width: 20rem; + } + + .\32xl\:max-w-sm{ + max-width: 24rem; + } + + .\32xl\:max-w-md{ + max-width: 28rem; + } + + .\32xl\:max-w-lg{ + max-width: 32rem; + } + + .\32xl\:max-w-xl{ + max-width: 36rem; + } + + .\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-full{ + max-width: 100%; + } + + .\32xl\:max-w-min{ + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .\32xl\:max-w-max{ + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .\32xl\:max-w-prose{ + max-width: 65ch; + } + + .\32xl\:max-w-screen-sm{ + max-width: 640px; + } + + .\32xl\:max-w-screen-md{ + max-width: 768px; + } + + .\32xl\:max-w-screen-lg{ + max-width: 1024px; + } + + .\32xl\:max-w-screen-xl{ + max-width: 1280px; + } + + .\32xl\:max-w-screen-2xl{ + max-width: 1536px; + } + + .\32xl\:flex-1{ + flex: 1 1 0%; + } + + .\32xl\:flex-auto{ + flex: 1 1 auto; + } + + .\32xl\:flex-initial{ + flex: 0 1 auto; + } + + .\32xl\:flex-none{ + flex: none; + } + + .\32xl\:flex-shrink-0{ + flex-shrink: 0; + } + + .\32xl\:flex-shrink{ + flex-shrink: 1; + } + + .\32xl\:flex-grow-0{ + flex-grow: 0; + } + + .\32xl\:flex-grow{ + flex-grow: 1; + } + + .\32xl\:table-auto{ + table-layout: auto; + } + + .\32xl\:table-fixed{ + table-layout: fixed; + } + + .\32xl\:border-collapse{ + border-collapse: collapse; + } + + .\32xl\:border-separate{ + border-collapse: separate; + } + + .\32xl\:origin-center{ + transform-origin: center; + } + + .\32xl\:origin-top{ + transform-origin: top; + } + + .\32xl\:origin-top-right{ + transform-origin: top right; + } + + .\32xl\:origin-right{ + transform-origin: right; + } + + .\32xl\:origin-bottom-right{ + transform-origin: bottom right; + } + + .\32xl\:origin-bottom{ + transform-origin: bottom; + } + + .\32xl\:origin-bottom-left{ + transform-origin: bottom left; + } + + .\32xl\:origin-left{ + transform-origin: left; + } + + .\32xl\:origin-top-left{ + transform-origin: top left; + } + + .\32xl\:transform{ + --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; + transform: translateX(var(--tw-translate-x)) translateY(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)); + } + + .\32xl\:transform-gpu{ + --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; + 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)); + } + + .\32xl\:transform-none{ + transform: none; + } + + .\32xl\:translate-x-0{ + --tw-translate-x: 0px; + } + + .\32xl\:translate-x-1{ + --tw-translate-x: 0.25rem; + } + + .\32xl\:translate-x-2{ + --tw-translate-x: 0.5rem; + } + + .\32xl\:translate-x-3{ + --tw-translate-x: 0.75rem; + } + + .\32xl\:translate-x-4{ + --tw-translate-x: 1rem; + } + + .\32xl\:translate-x-5{ + --tw-translate-x: 1.25rem; + } + + .\32xl\:translate-x-6{ + --tw-translate-x: 1.5rem; + } + + .\32xl\:translate-x-7{ + --tw-translate-x: 1.75rem; + } + + .\32xl\:translate-x-8{ + --tw-translate-x: 2rem; + } + + .\32xl\:translate-x-9{ + --tw-translate-x: 2.25rem; + } + + .\32xl\:translate-x-10{ + --tw-translate-x: 2.5rem; + } + + .\32xl\:translate-x-11{ + --tw-translate-x: 2.75rem; + } + + .\32xl\:translate-x-12{ + --tw-translate-x: 3rem; + } + + .\32xl\:translate-x-14{ + --tw-translate-x: 3.5rem; + } + + .\32xl\:translate-x-16{ + --tw-translate-x: 4rem; + } + + .\32xl\:translate-x-20{ + --tw-translate-x: 5rem; + } + + .\32xl\:translate-x-24{ + --tw-translate-x: 6rem; + } + + .\32xl\:translate-x-28{ + --tw-translate-x: 7rem; + } + + .\32xl\:translate-x-32{ + --tw-translate-x: 8rem; + } + + .\32xl\:translate-x-36{ + --tw-translate-x: 9rem; + } + + .\32xl\:translate-x-40{ + --tw-translate-x: 10rem; + } + + .\32xl\:translate-x-44{ + --tw-translate-x: 11rem; + } + + .\32xl\:translate-x-48{ + --tw-translate-x: 12rem; + } + + .\32xl\:translate-x-52{ + --tw-translate-x: 13rem; + } + + .\32xl\:translate-x-56{ + --tw-translate-x: 14rem; + } + + .\32xl\:translate-x-60{ + --tw-translate-x: 15rem; + } + + .\32xl\:translate-x-64{ + --tw-translate-x: 16rem; + } + + .\32xl\:translate-x-72{ + --tw-translate-x: 18rem; + } + + .\32xl\:translate-x-80{ + --tw-translate-x: 20rem; + } + + .\32xl\:translate-x-96{ + --tw-translate-x: 24rem; + } + + .\32xl\:translate-x-px{ + --tw-translate-x: 1px; + } + + .\32xl\:translate-x-0\.5{ + --tw-translate-x: 0.125rem; + } + + .\32xl\:translate-x-1\.5{ + --tw-translate-x: 0.375rem; + } + + .\32xl\:translate-x-2\.5{ + --tw-translate-x: 0.625rem; + } + + .\32xl\:translate-x-3\.5{ + --tw-translate-x: 0.875rem; + } + + .\32xl\:-translate-x-0{ + --tw-translate-x: 0px; + } + + .\32xl\:-translate-x-1{ + --tw-translate-x: -0.25rem; + } + + .\32xl\:-translate-x-2{ + --tw-translate-x: -0.5rem; + } + + .\32xl\:-translate-x-3{ + --tw-translate-x: -0.75rem; + } + + .\32xl\:-translate-x-4{ + --tw-translate-x: -1rem; + } + + .\32xl\:-translate-x-5{ + --tw-translate-x: -1.25rem; + } + + .\32xl\:-translate-x-6{ + --tw-translate-x: -1.5rem; + } + + .\32xl\:-translate-x-7{ + --tw-translate-x: -1.75rem; + } + + .\32xl\:-translate-x-8{ + --tw-translate-x: -2rem; + } + + .\32xl\:-translate-x-9{ + --tw-translate-x: -2.25rem; + } + + .\32xl\:-translate-x-10{ + --tw-translate-x: -2.5rem; + } + + .\32xl\:-translate-x-11{ + --tw-translate-x: -2.75rem; + } + + .\32xl\:-translate-x-12{ + --tw-translate-x: -3rem; + } + + .\32xl\:-translate-x-14{ + --tw-translate-x: -3.5rem; + } + + .\32xl\:-translate-x-16{ + --tw-translate-x: -4rem; + } + + .\32xl\:-translate-x-20{ + --tw-translate-x: -5rem; + } + + .\32xl\:-translate-x-24{ + --tw-translate-x: -6rem; + } + + .\32xl\:-translate-x-28{ + --tw-translate-x: -7rem; + } + + .\32xl\:-translate-x-32{ + --tw-translate-x: -8rem; + } + + .\32xl\:-translate-x-36{ + --tw-translate-x: -9rem; + } + + .\32xl\:-translate-x-40{ + --tw-translate-x: -10rem; + } + + .\32xl\:-translate-x-44{ + --tw-translate-x: -11rem; + } + + .\32xl\:-translate-x-48{ + --tw-translate-x: -12rem; + } + + .\32xl\:-translate-x-52{ + --tw-translate-x: -13rem; + } + + .\32xl\:-translate-x-56{ + --tw-translate-x: -14rem; + } + + .\32xl\:-translate-x-60{ + --tw-translate-x: -15rem; + } + + .\32xl\:-translate-x-64{ + --tw-translate-x: -16rem; + } + + .\32xl\:-translate-x-72{ + --tw-translate-x: -18rem; + } + + .\32xl\:-translate-x-80{ + --tw-translate-x: -20rem; + } + + .\32xl\:-translate-x-96{ + --tw-translate-x: -24rem; + } + + .\32xl\:-translate-x-px{ + --tw-translate-x: -1px; + } + + .\32xl\:-translate-x-0\.5{ + --tw-translate-x: -0.125rem; + } + + .\32xl\:-translate-x-1\.5{ + --tw-translate-x: -0.375rem; + } + + .\32xl\:-translate-x-2\.5{ + --tw-translate-x: -0.625rem; + } + + .\32xl\:-translate-x-3\.5{ + --tw-translate-x: -0.875rem; + } + + .\32xl\:translate-x-1\/2{ + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-1\/3{ + --tw-translate-x: 33.333333%; + } + + .\32xl\:translate-x-2\/3{ + --tw-translate-x: 66.666667%; + } + + .\32xl\:translate-x-1\/4{ + --tw-translate-x: 25%; + } + + .\32xl\:translate-x-2\/4{ + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-3\/4{ + --tw-translate-x: 75%; + } + + .\32xl\:translate-x-full{ + --tw-translate-x: 100%; + } + + .\32xl\:-translate-x-1\/2{ + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-1\/3{ + --tw-translate-x: -33.333333%; + } + + .\32xl\:-translate-x-2\/3{ + --tw-translate-x: -66.666667%; + } + + .\32xl\:-translate-x-1\/4{ + --tw-translate-x: -25%; + } + + .\32xl\:-translate-x-2\/4{ + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-3\/4{ + --tw-translate-x: -75%; + } + + .\32xl\:-translate-x-full{ + --tw-translate-x: -100%; + } + + .\32xl\:translate-y-0{ + --tw-translate-y: 0px; + } + + .\32xl\:translate-y-1{ + --tw-translate-y: 0.25rem; + } + + .\32xl\:translate-y-2{ + --tw-translate-y: 0.5rem; + } + + .\32xl\:translate-y-3{ + --tw-translate-y: 0.75rem; + } + + .\32xl\:translate-y-4{ + --tw-translate-y: 1rem; + } + + .\32xl\:translate-y-5{ + --tw-translate-y: 1.25rem; + } + + .\32xl\:translate-y-6{ + --tw-translate-y: 1.5rem; + } + + .\32xl\:translate-y-7{ + --tw-translate-y: 1.75rem; + } + + .\32xl\:translate-y-8{ + --tw-translate-y: 2rem; + } + + .\32xl\:translate-y-9{ + --tw-translate-y: 2.25rem; + } + + .\32xl\:translate-y-10{ + --tw-translate-y: 2.5rem; + } + + .\32xl\:translate-y-11{ + --tw-translate-y: 2.75rem; + } + + .\32xl\:translate-y-12{ + --tw-translate-y: 3rem; + } + + .\32xl\:translate-y-14{ + --tw-translate-y: 3.5rem; + } + + .\32xl\:translate-y-16{ + --tw-translate-y: 4rem; + } + + .\32xl\:translate-y-20{ + --tw-translate-y: 5rem; + } + + .\32xl\:translate-y-24{ + --tw-translate-y: 6rem; + } + + .\32xl\:translate-y-28{ + --tw-translate-y: 7rem; + } + + .\32xl\:translate-y-32{ + --tw-translate-y: 8rem; + } + + .\32xl\:translate-y-36{ + --tw-translate-y: 9rem; + } + + .\32xl\:translate-y-40{ + --tw-translate-y: 10rem; + } + + .\32xl\:translate-y-44{ + --tw-translate-y: 11rem; + } + + .\32xl\:translate-y-48{ + --tw-translate-y: 12rem; + } + + .\32xl\:translate-y-52{ + --tw-translate-y: 13rem; + } + + .\32xl\:translate-y-56{ + --tw-translate-y: 14rem; + } + + .\32xl\:translate-y-60{ + --tw-translate-y: 15rem; + } + + .\32xl\:translate-y-64{ + --tw-translate-y: 16rem; + } + + .\32xl\:translate-y-72{ + --tw-translate-y: 18rem; + } + + .\32xl\:translate-y-80{ + --tw-translate-y: 20rem; + } + + .\32xl\:translate-y-96{ + --tw-translate-y: 24rem; + } + + .\32xl\:translate-y-px{ + --tw-translate-y: 1px; + } + + .\32xl\:translate-y-0\.5{ + --tw-translate-y: 0.125rem; + } + + .\32xl\:translate-y-1\.5{ + --tw-translate-y: 0.375rem; + } + + .\32xl\:translate-y-2\.5{ + --tw-translate-y: 0.625rem; + } + + .\32xl\:translate-y-3\.5{ + --tw-translate-y: 0.875rem; + } + + .\32xl\:-translate-y-0{ + --tw-translate-y: 0px; + } + + .\32xl\:-translate-y-1{ + --tw-translate-y: -0.25rem; + } + + .\32xl\:-translate-y-2{ + --tw-translate-y: -0.5rem; + } + + .\32xl\:-translate-y-3{ + --tw-translate-y: -0.75rem; + } + + .\32xl\:-translate-y-4{ + --tw-translate-y: -1rem; + } + + .\32xl\:-translate-y-5{ + --tw-translate-y: -1.25rem; + } + + .\32xl\:-translate-y-6{ + --tw-translate-y: -1.5rem; + } + + .\32xl\:-translate-y-7{ + --tw-translate-y: -1.75rem; + } + + .\32xl\:-translate-y-8{ + --tw-translate-y: -2rem; + } + + .\32xl\:-translate-y-9{ + --tw-translate-y: -2.25rem; + } + + .\32xl\:-translate-y-10{ + --tw-translate-y: -2.5rem; + } + + .\32xl\:-translate-y-11{ + --tw-translate-y: -2.75rem; + } + + .\32xl\:-translate-y-12{ + --tw-translate-y: -3rem; + } + + .\32xl\:-translate-y-14{ + --tw-translate-y: -3.5rem; + } + + .\32xl\:-translate-y-16{ + --tw-translate-y: -4rem; + } + + .\32xl\:-translate-y-20{ + --tw-translate-y: -5rem; + } + + .\32xl\:-translate-y-24{ + --tw-translate-y: -6rem; + } + + .\32xl\:-translate-y-28{ + --tw-translate-y: -7rem; + } + + .\32xl\:-translate-y-32{ + --tw-translate-y: -8rem; + } + + .\32xl\:-translate-y-36{ + --tw-translate-y: -9rem; + } + + .\32xl\:-translate-y-40{ + --tw-translate-y: -10rem; + } + + .\32xl\:-translate-y-44{ + --tw-translate-y: -11rem; + } + + .\32xl\:-translate-y-48{ + --tw-translate-y: -12rem; + } + + .\32xl\:-translate-y-52{ + --tw-translate-y: -13rem; + } + + .\32xl\:-translate-y-56{ + --tw-translate-y: -14rem; + } + + .\32xl\:-translate-y-60{ + --tw-translate-y: -15rem; + } + + .\32xl\:-translate-y-64{ + --tw-translate-y: -16rem; + } + + .\32xl\:-translate-y-72{ + --tw-translate-y: -18rem; + } + + .\32xl\:-translate-y-80{ + --tw-translate-y: -20rem; + } + + .\32xl\:-translate-y-96{ + --tw-translate-y: -24rem; + } + + .\32xl\:-translate-y-px{ + --tw-translate-y: -1px; + } + + .\32xl\:-translate-y-0\.5{ + --tw-translate-y: -0.125rem; + } + + .\32xl\:-translate-y-1\.5{ + --tw-translate-y: -0.375rem; + } + + .\32xl\:-translate-y-2\.5{ + --tw-translate-y: -0.625rem; + } + + .\32xl\:-translate-y-3\.5{ + --tw-translate-y: -0.875rem; + } + + .\32xl\:translate-y-1\/2{ + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-1\/3{ + --tw-translate-y: 33.333333%; + } + + .\32xl\:translate-y-2\/3{ + --tw-translate-y: 66.666667%; + } + + .\32xl\:translate-y-1\/4{ + --tw-translate-y: 25%; + } + + .\32xl\:translate-y-2\/4{ + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-3\/4{ + --tw-translate-y: 75%; + } + + .\32xl\:translate-y-full{ + --tw-translate-y: 100%; + } + + .\32xl\:-translate-y-1\/2{ + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-1\/3{ + --tw-translate-y: -33.333333%; + } + + .\32xl\:-translate-y-2\/3{ + --tw-translate-y: -66.666667%; + } + + .\32xl\:-translate-y-1\/4{ + --tw-translate-y: -25%; + } + + .\32xl\:-translate-y-2\/4{ + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-3\/4{ + --tw-translate-y: -75%; + } + + .\32xl\:-translate-y-full{ + --tw-translate-y: -100%; + } + + .\32xl\:hover\:translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .\32xl\:hover\:translate-x-1:hover{ + --tw-translate-x: 0.25rem; + } + + .\32xl\:hover\:translate-x-2:hover{ + --tw-translate-x: 0.5rem; + } + + .\32xl\:hover\:translate-x-3:hover{ + --tw-translate-x: 0.75rem; + } + + .\32xl\:hover\:translate-x-4:hover{ + --tw-translate-x: 1rem; + } + + .\32xl\:hover\:translate-x-5:hover{ + --tw-translate-x: 1.25rem; + } + + .\32xl\:hover\:translate-x-6:hover{ + --tw-translate-x: 1.5rem; + } + + .\32xl\:hover\:translate-x-7:hover{ + --tw-translate-x: 1.75rem; + } + + .\32xl\:hover\:translate-x-8:hover{ + --tw-translate-x: 2rem; + } + + .\32xl\:hover\:translate-x-9:hover{ + --tw-translate-x: 2.25rem; + } + + .\32xl\:hover\:translate-x-10:hover{ + --tw-translate-x: 2.5rem; + } + + .\32xl\:hover\:translate-x-11:hover{ + --tw-translate-x: 2.75rem; + } + + .\32xl\:hover\:translate-x-12:hover{ + --tw-translate-x: 3rem; + } + + .\32xl\:hover\:translate-x-14:hover{ + --tw-translate-x: 3.5rem; + } + + .\32xl\:hover\:translate-x-16:hover{ + --tw-translate-x: 4rem; + } + + .\32xl\:hover\:translate-x-20:hover{ + --tw-translate-x: 5rem; + } + + .\32xl\:hover\:translate-x-24:hover{ + --tw-translate-x: 6rem; + } + + .\32xl\:hover\:translate-x-28:hover{ + --tw-translate-x: 7rem; + } + + .\32xl\:hover\:translate-x-32:hover{ + --tw-translate-x: 8rem; + } + + .\32xl\:hover\:translate-x-36:hover{ + --tw-translate-x: 9rem; + } + + .\32xl\:hover\:translate-x-40:hover{ + --tw-translate-x: 10rem; + } + + .\32xl\:hover\:translate-x-44:hover{ + --tw-translate-x: 11rem; + } + + .\32xl\:hover\:translate-x-48:hover{ + --tw-translate-x: 12rem; + } + + .\32xl\:hover\:translate-x-52:hover{ + --tw-translate-x: 13rem; + } + + .\32xl\:hover\:translate-x-56:hover{ + --tw-translate-x: 14rem; + } + + .\32xl\:hover\:translate-x-60:hover{ + --tw-translate-x: 15rem; + } + + .\32xl\:hover\:translate-x-64:hover{ + --tw-translate-x: 16rem; + } + + .\32xl\:hover\:translate-x-72:hover{ + --tw-translate-x: 18rem; + } + + .\32xl\:hover\:translate-x-80:hover{ + --tw-translate-x: 20rem; + } + + .\32xl\:hover\:translate-x-96:hover{ + --tw-translate-x: 24rem; + } + + .\32xl\:hover\:translate-x-px:hover{ + --tw-translate-x: 1px; + } + + .\32xl\:hover\:translate-x-0\.5:hover{ + --tw-translate-x: 0.125rem; + } + + .\32xl\:hover\:translate-x-1\.5:hover{ + --tw-translate-x: 0.375rem; + } + + .\32xl\:hover\:translate-x-2\.5:hover{ + --tw-translate-x: 0.625rem; + } + + .\32xl\:hover\:translate-x-3\.5:hover{ + --tw-translate-x: 0.875rem; + } + + .\32xl\:hover\:-translate-x-0:hover{ + --tw-translate-x: 0px; + } + + .\32xl\:hover\:-translate-x-1:hover{ + --tw-translate-x: -0.25rem; + } + + .\32xl\:hover\:-translate-x-2:hover{ + --tw-translate-x: -0.5rem; + } + + .\32xl\:hover\:-translate-x-3:hover{ + --tw-translate-x: -0.75rem; + } + + .\32xl\:hover\:-translate-x-4:hover{ + --tw-translate-x: -1rem; + } + + .\32xl\:hover\:-translate-x-5:hover{ + --tw-translate-x: -1.25rem; + } + + .\32xl\:hover\:-translate-x-6:hover{ + --tw-translate-x: -1.5rem; + } + + .\32xl\:hover\:-translate-x-7:hover{ + --tw-translate-x: -1.75rem; + } + + .\32xl\:hover\:-translate-x-8:hover{ + --tw-translate-x: -2rem; + } + + .\32xl\:hover\:-translate-x-9:hover{ + --tw-translate-x: -2.25rem; + } + + .\32xl\:hover\:-translate-x-10:hover{ + --tw-translate-x: -2.5rem; + } + + .\32xl\:hover\:-translate-x-11:hover{ + --tw-translate-x: -2.75rem; + } + + .\32xl\:hover\:-translate-x-12:hover{ + --tw-translate-x: -3rem; + } + + .\32xl\:hover\:-translate-x-14:hover{ + --tw-translate-x: -3.5rem; + } + + .\32xl\:hover\:-translate-x-16:hover{ + --tw-translate-x: -4rem; + } + + .\32xl\:hover\:-translate-x-20:hover{ + --tw-translate-x: -5rem; + } + + .\32xl\:hover\:-translate-x-24:hover{ + --tw-translate-x: -6rem; + } + + .\32xl\:hover\:-translate-x-28:hover{ + --tw-translate-x: -7rem; + } + + .\32xl\:hover\:-translate-x-32:hover{ + --tw-translate-x: -8rem; + } + + .\32xl\:hover\:-translate-x-36:hover{ + --tw-translate-x: -9rem; + } + + .\32xl\:hover\:-translate-x-40:hover{ + --tw-translate-x: -10rem; + } + + .\32xl\:hover\:-translate-x-44:hover{ + --tw-translate-x: -11rem; + } + + .\32xl\:hover\:-translate-x-48:hover{ + --tw-translate-x: -12rem; + } + + .\32xl\:hover\:-translate-x-52:hover{ + --tw-translate-x: -13rem; + } + + .\32xl\:hover\:-translate-x-56:hover{ + --tw-translate-x: -14rem; + } + + .\32xl\:hover\:-translate-x-60:hover{ + --tw-translate-x: -15rem; + } + + .\32xl\:hover\:-translate-x-64:hover{ + --tw-translate-x: -16rem; + } + + .\32xl\:hover\:-translate-x-72:hover{ + --tw-translate-x: -18rem; + } + + .\32xl\:hover\:-translate-x-80:hover{ + --tw-translate-x: -20rem; + } + + .\32xl\:hover\:-translate-x-96:hover{ + --tw-translate-x: -24rem; + } + + .\32xl\:hover\:-translate-x-px:hover{ + --tw-translate-x: -1px; + } + + .\32xl\:hover\:-translate-x-0\.5:hover{ + --tw-translate-x: -0.125rem; + } + + .\32xl\:hover\:-translate-x-1\.5:hover{ + --tw-translate-x: -0.375rem; + } + + .\32xl\:hover\:-translate-x-2\.5:hover{ + --tw-translate-x: -0.625rem; + } + + .\32xl\:hover\:-translate-x-3\.5:hover{ + --tw-translate-x: -0.875rem; + } + + .\32xl\:hover\:translate-x-1\/2:hover{ + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-1\/3:hover{ + --tw-translate-x: 33.333333%; + } + + .\32xl\:hover\:translate-x-2\/3:hover{ + --tw-translate-x: 66.666667%; + } + + .\32xl\:hover\:translate-x-1\/4:hover{ + --tw-translate-x: 25%; + } + + .\32xl\:hover\:translate-x-2\/4:hover{ + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-3\/4:hover{ + --tw-translate-x: 75%; + } + + .\32xl\:hover\:translate-x-full:hover{ + --tw-translate-x: 100%; + } + + .\32xl\:hover\:-translate-x-1\/2:hover{ + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-1\/3:hover{ + --tw-translate-x: -33.333333%; + } + + .\32xl\:hover\:-translate-x-2\/3:hover{ + --tw-translate-x: -66.666667%; + } + + .\32xl\:hover\:-translate-x-1\/4:hover{ + --tw-translate-x: -25%; + } + + .\32xl\:hover\:-translate-x-2\/4:hover{ + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-3\/4:hover{ + --tw-translate-x: -75%; + } + + .\32xl\:hover\:-translate-x-full:hover{ + --tw-translate-x: -100%; + } + + .\32xl\:hover\:translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .\32xl\:hover\:translate-y-1:hover{ + --tw-translate-y: 0.25rem; + } + + .\32xl\:hover\:translate-y-2:hover{ + --tw-translate-y: 0.5rem; + } + + .\32xl\:hover\:translate-y-3:hover{ + --tw-translate-y: 0.75rem; + } + + .\32xl\:hover\:translate-y-4:hover{ + --tw-translate-y: 1rem; + } + + .\32xl\:hover\:translate-y-5:hover{ + --tw-translate-y: 1.25rem; + } + + .\32xl\:hover\:translate-y-6:hover{ + --tw-translate-y: 1.5rem; + } + + .\32xl\:hover\:translate-y-7:hover{ + --tw-translate-y: 1.75rem; + } + + .\32xl\:hover\:translate-y-8:hover{ + --tw-translate-y: 2rem; + } + + .\32xl\:hover\:translate-y-9:hover{ + --tw-translate-y: 2.25rem; + } + + .\32xl\:hover\:translate-y-10:hover{ + --tw-translate-y: 2.5rem; + } + + .\32xl\:hover\:translate-y-11:hover{ + --tw-translate-y: 2.75rem; + } + + .\32xl\:hover\:translate-y-12:hover{ + --tw-translate-y: 3rem; + } + + .\32xl\:hover\:translate-y-14:hover{ + --tw-translate-y: 3.5rem; + } + + .\32xl\:hover\:translate-y-16:hover{ + --tw-translate-y: 4rem; + } + + .\32xl\:hover\:translate-y-20:hover{ + --tw-translate-y: 5rem; + } + + .\32xl\:hover\:translate-y-24:hover{ + --tw-translate-y: 6rem; + } + + .\32xl\:hover\:translate-y-28:hover{ + --tw-translate-y: 7rem; + } + + .\32xl\:hover\:translate-y-32:hover{ + --tw-translate-y: 8rem; + } + + .\32xl\:hover\:translate-y-36:hover{ + --tw-translate-y: 9rem; + } + + .\32xl\:hover\:translate-y-40:hover{ + --tw-translate-y: 10rem; + } + + .\32xl\:hover\:translate-y-44:hover{ + --tw-translate-y: 11rem; + } + + .\32xl\:hover\:translate-y-48:hover{ + --tw-translate-y: 12rem; + } + + .\32xl\:hover\:translate-y-52:hover{ + --tw-translate-y: 13rem; + } + + .\32xl\:hover\:translate-y-56:hover{ + --tw-translate-y: 14rem; + } + + .\32xl\:hover\:translate-y-60:hover{ + --tw-translate-y: 15rem; + } + + .\32xl\:hover\:translate-y-64:hover{ + --tw-translate-y: 16rem; + } + + .\32xl\:hover\:translate-y-72:hover{ + --tw-translate-y: 18rem; + } + + .\32xl\:hover\:translate-y-80:hover{ + --tw-translate-y: 20rem; + } + + .\32xl\:hover\:translate-y-96:hover{ + --tw-translate-y: 24rem; + } + + .\32xl\:hover\:translate-y-px:hover{ + --tw-translate-y: 1px; + } + + .\32xl\:hover\:translate-y-0\.5:hover{ + --tw-translate-y: 0.125rem; + } + + .\32xl\:hover\:translate-y-1\.5:hover{ + --tw-translate-y: 0.375rem; + } + + .\32xl\:hover\:translate-y-2\.5:hover{ + --tw-translate-y: 0.625rem; + } + + .\32xl\:hover\:translate-y-3\.5:hover{ + --tw-translate-y: 0.875rem; + } + + .\32xl\:hover\:-translate-y-0:hover{ + --tw-translate-y: 0px; + } + + .\32xl\:hover\:-translate-y-1:hover{ + --tw-translate-y: -0.25rem; + } + + .\32xl\:hover\:-translate-y-2:hover{ + --tw-translate-y: -0.5rem; + } + + .\32xl\:hover\:-translate-y-3:hover{ + --tw-translate-y: -0.75rem; + } + + .\32xl\:hover\:-translate-y-4:hover{ + --tw-translate-y: -1rem; + } + + .\32xl\:hover\:-translate-y-5:hover{ + --tw-translate-y: -1.25rem; + } + + .\32xl\:hover\:-translate-y-6:hover{ + --tw-translate-y: -1.5rem; + } + + .\32xl\:hover\:-translate-y-7:hover{ + --tw-translate-y: -1.75rem; + } + + .\32xl\:hover\:-translate-y-8:hover{ + --tw-translate-y: -2rem; + } + + .\32xl\:hover\:-translate-y-9:hover{ + --tw-translate-y: -2.25rem; + } + + .\32xl\:hover\:-translate-y-10:hover{ + --tw-translate-y: -2.5rem; + } + + .\32xl\:hover\:-translate-y-11:hover{ + --tw-translate-y: -2.75rem; + } + + .\32xl\:hover\:-translate-y-12:hover{ + --tw-translate-y: -3rem; + } + + .\32xl\:hover\:-translate-y-14:hover{ + --tw-translate-y: -3.5rem; + } + + .\32xl\:hover\:-translate-y-16:hover{ + --tw-translate-y: -4rem; + } + + .\32xl\:hover\:-translate-y-20:hover{ + --tw-translate-y: -5rem; + } + + .\32xl\:hover\:-translate-y-24:hover{ + --tw-translate-y: -6rem; + } + + .\32xl\:hover\:-translate-y-28:hover{ + --tw-translate-y: -7rem; + } + + .\32xl\:hover\:-translate-y-32:hover{ + --tw-translate-y: -8rem; + } + + .\32xl\:hover\:-translate-y-36:hover{ + --tw-translate-y: -9rem; + } + + .\32xl\:hover\:-translate-y-40:hover{ + --tw-translate-y: -10rem; + } + + .\32xl\:hover\:-translate-y-44:hover{ + --tw-translate-y: -11rem; + } + + .\32xl\:hover\:-translate-y-48:hover{ + --tw-translate-y: -12rem; + } + + .\32xl\:hover\:-translate-y-52:hover{ + --tw-translate-y: -13rem; + } + + .\32xl\:hover\:-translate-y-56:hover{ + --tw-translate-y: -14rem; + } + + .\32xl\:hover\:-translate-y-60:hover{ + --tw-translate-y: -15rem; + } + + .\32xl\:hover\:-translate-y-64:hover{ + --tw-translate-y: -16rem; + } + + .\32xl\:hover\:-translate-y-72:hover{ + --tw-translate-y: -18rem; + } + + .\32xl\:hover\:-translate-y-80:hover{ + --tw-translate-y: -20rem; + } + + .\32xl\:hover\:-translate-y-96:hover{ + --tw-translate-y: -24rem; + } + + .\32xl\:hover\:-translate-y-px:hover{ + --tw-translate-y: -1px; + } + + .\32xl\:hover\:-translate-y-0\.5:hover{ + --tw-translate-y: -0.125rem; + } + + .\32xl\:hover\:-translate-y-1\.5:hover{ + --tw-translate-y: -0.375rem; + } + + .\32xl\:hover\:-translate-y-2\.5:hover{ + --tw-translate-y: -0.625rem; + } + + .\32xl\:hover\:-translate-y-3\.5:hover{ + --tw-translate-y: -0.875rem; + } + + .\32xl\:hover\:translate-y-1\/2:hover{ + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-1\/3:hover{ + --tw-translate-y: 33.333333%; + } + + .\32xl\:hover\:translate-y-2\/3:hover{ + --tw-translate-y: 66.666667%; + } + + .\32xl\:hover\:translate-y-1\/4:hover{ + --tw-translate-y: 25%; + } + + .\32xl\:hover\:translate-y-2\/4:hover{ + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-3\/4:hover{ + --tw-translate-y: 75%; + } + + .\32xl\:hover\:translate-y-full:hover{ + --tw-translate-y: 100%; + } + + .\32xl\:hover\:-translate-y-1\/2:hover{ + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-1\/3:hover{ + --tw-translate-y: -33.333333%; + } + + .\32xl\:hover\:-translate-y-2\/3:hover{ + --tw-translate-y: -66.666667%; + } + + .\32xl\:hover\:-translate-y-1\/4:hover{ + --tw-translate-y: -25%; + } + + .\32xl\:hover\:-translate-y-2\/4:hover{ + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-3\/4:hover{ + --tw-translate-y: -75%; + } + + .\32xl\:hover\:-translate-y-full:hover{ + --tw-translate-y: -100%; + } + + .\32xl\:focus\:translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .\32xl\:focus\:translate-x-1:focus{ + --tw-translate-x: 0.25rem; + } + + .\32xl\:focus\:translate-x-2:focus{ + --tw-translate-x: 0.5rem; + } + + .\32xl\:focus\:translate-x-3:focus{ + --tw-translate-x: 0.75rem; + } + + .\32xl\:focus\:translate-x-4:focus{ + --tw-translate-x: 1rem; + } + + .\32xl\:focus\:translate-x-5:focus{ + --tw-translate-x: 1.25rem; + } + + .\32xl\:focus\:translate-x-6:focus{ + --tw-translate-x: 1.5rem; + } + + .\32xl\:focus\:translate-x-7:focus{ + --tw-translate-x: 1.75rem; + } + + .\32xl\:focus\:translate-x-8:focus{ + --tw-translate-x: 2rem; + } + + .\32xl\:focus\:translate-x-9:focus{ + --tw-translate-x: 2.25rem; + } + + .\32xl\:focus\:translate-x-10:focus{ + --tw-translate-x: 2.5rem; + } + + .\32xl\:focus\:translate-x-11:focus{ + --tw-translate-x: 2.75rem; + } + + .\32xl\:focus\:translate-x-12:focus{ + --tw-translate-x: 3rem; + } + + .\32xl\:focus\:translate-x-14:focus{ + --tw-translate-x: 3.5rem; + } + + .\32xl\:focus\:translate-x-16:focus{ + --tw-translate-x: 4rem; + } + + .\32xl\:focus\:translate-x-20:focus{ + --tw-translate-x: 5rem; + } + + .\32xl\:focus\:translate-x-24:focus{ + --tw-translate-x: 6rem; + } + + .\32xl\:focus\:translate-x-28:focus{ + --tw-translate-x: 7rem; + } + + .\32xl\:focus\:translate-x-32:focus{ + --tw-translate-x: 8rem; + } + + .\32xl\:focus\:translate-x-36:focus{ + --tw-translate-x: 9rem; + } + + .\32xl\:focus\:translate-x-40:focus{ + --tw-translate-x: 10rem; + } + + .\32xl\:focus\:translate-x-44:focus{ + --tw-translate-x: 11rem; + } + + .\32xl\:focus\:translate-x-48:focus{ + --tw-translate-x: 12rem; + } + + .\32xl\:focus\:translate-x-52:focus{ + --tw-translate-x: 13rem; + } + + .\32xl\:focus\:translate-x-56:focus{ + --tw-translate-x: 14rem; + } + + .\32xl\:focus\:translate-x-60:focus{ + --tw-translate-x: 15rem; + } + + .\32xl\:focus\:translate-x-64:focus{ + --tw-translate-x: 16rem; + } + + .\32xl\:focus\:translate-x-72:focus{ + --tw-translate-x: 18rem; + } + + .\32xl\:focus\:translate-x-80:focus{ + --tw-translate-x: 20rem; + } + + .\32xl\:focus\:translate-x-96:focus{ + --tw-translate-x: 24rem; + } + + .\32xl\:focus\:translate-x-px:focus{ + --tw-translate-x: 1px; + } + + .\32xl\:focus\:translate-x-0\.5:focus{ + --tw-translate-x: 0.125rem; + } + + .\32xl\:focus\:translate-x-1\.5:focus{ + --tw-translate-x: 0.375rem; + } + + .\32xl\:focus\:translate-x-2\.5:focus{ + --tw-translate-x: 0.625rem; + } + + .\32xl\:focus\:translate-x-3\.5:focus{ + --tw-translate-x: 0.875rem; + } + + .\32xl\:focus\:-translate-x-0:focus{ + --tw-translate-x: 0px; + } + + .\32xl\:focus\:-translate-x-1:focus{ + --tw-translate-x: -0.25rem; + } + + .\32xl\:focus\:-translate-x-2:focus{ + --tw-translate-x: -0.5rem; + } + + .\32xl\:focus\:-translate-x-3:focus{ + --tw-translate-x: -0.75rem; + } + + .\32xl\:focus\:-translate-x-4:focus{ + --tw-translate-x: -1rem; + } + + .\32xl\:focus\:-translate-x-5:focus{ + --tw-translate-x: -1.25rem; + } + + .\32xl\:focus\:-translate-x-6:focus{ + --tw-translate-x: -1.5rem; + } + + .\32xl\:focus\:-translate-x-7:focus{ + --tw-translate-x: -1.75rem; + } + + .\32xl\:focus\:-translate-x-8:focus{ + --tw-translate-x: -2rem; + } + + .\32xl\:focus\:-translate-x-9:focus{ + --tw-translate-x: -2.25rem; + } + + .\32xl\:focus\:-translate-x-10:focus{ + --tw-translate-x: -2.5rem; + } + + .\32xl\:focus\:-translate-x-11:focus{ + --tw-translate-x: -2.75rem; + } + + .\32xl\:focus\:-translate-x-12:focus{ + --tw-translate-x: -3rem; + } + + .\32xl\:focus\:-translate-x-14:focus{ + --tw-translate-x: -3.5rem; + } + + .\32xl\:focus\:-translate-x-16:focus{ + --tw-translate-x: -4rem; + } + + .\32xl\:focus\:-translate-x-20:focus{ + --tw-translate-x: -5rem; + } + + .\32xl\:focus\:-translate-x-24:focus{ + --tw-translate-x: -6rem; + } + + .\32xl\:focus\:-translate-x-28:focus{ + --tw-translate-x: -7rem; + } + + .\32xl\:focus\:-translate-x-32:focus{ + --tw-translate-x: -8rem; + } + + .\32xl\:focus\:-translate-x-36:focus{ + --tw-translate-x: -9rem; + } + + .\32xl\:focus\:-translate-x-40:focus{ + --tw-translate-x: -10rem; + } + + .\32xl\:focus\:-translate-x-44:focus{ + --tw-translate-x: -11rem; + } + + .\32xl\:focus\:-translate-x-48:focus{ + --tw-translate-x: -12rem; + } + + .\32xl\:focus\:-translate-x-52:focus{ + --tw-translate-x: -13rem; + } + + .\32xl\:focus\:-translate-x-56:focus{ + --tw-translate-x: -14rem; + } + + .\32xl\:focus\:-translate-x-60:focus{ + --tw-translate-x: -15rem; + } + + .\32xl\:focus\:-translate-x-64:focus{ + --tw-translate-x: -16rem; + } + + .\32xl\:focus\:-translate-x-72:focus{ + --tw-translate-x: -18rem; + } + + .\32xl\:focus\:-translate-x-80:focus{ + --tw-translate-x: -20rem; + } + + .\32xl\:focus\:-translate-x-96:focus{ + --tw-translate-x: -24rem; + } + + .\32xl\:focus\:-translate-x-px:focus{ + --tw-translate-x: -1px; + } + + .\32xl\:focus\:-translate-x-0\.5:focus{ + --tw-translate-x: -0.125rem; + } + + .\32xl\:focus\:-translate-x-1\.5:focus{ + --tw-translate-x: -0.375rem; + } + + .\32xl\:focus\:-translate-x-2\.5:focus{ + --tw-translate-x: -0.625rem; + } + + .\32xl\:focus\:-translate-x-3\.5:focus{ + --tw-translate-x: -0.875rem; + } + + .\32xl\:focus\:translate-x-1\/2:focus{ + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-1\/3:focus{ + --tw-translate-x: 33.333333%; + } + + .\32xl\:focus\:translate-x-2\/3:focus{ + --tw-translate-x: 66.666667%; + } + + .\32xl\:focus\:translate-x-1\/4:focus{ + --tw-translate-x: 25%; + } + + .\32xl\:focus\:translate-x-2\/4:focus{ + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-3\/4:focus{ + --tw-translate-x: 75%; + } + + .\32xl\:focus\:translate-x-full:focus{ + --tw-translate-x: 100%; + } + + .\32xl\:focus\:-translate-x-1\/2:focus{ + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-1\/3:focus{ + --tw-translate-x: -33.333333%; + } + + .\32xl\:focus\:-translate-x-2\/3:focus{ + --tw-translate-x: -66.666667%; + } + + .\32xl\:focus\:-translate-x-1\/4:focus{ + --tw-translate-x: -25%; + } + + .\32xl\:focus\:-translate-x-2\/4:focus{ + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-3\/4:focus{ + --tw-translate-x: -75%; + } + + .\32xl\:focus\:-translate-x-full:focus{ + --tw-translate-x: -100%; + } + + .\32xl\:focus\:translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .\32xl\:focus\:translate-y-1:focus{ + --tw-translate-y: 0.25rem; + } + + .\32xl\:focus\:translate-y-2:focus{ + --tw-translate-y: 0.5rem; + } + + .\32xl\:focus\:translate-y-3:focus{ + --tw-translate-y: 0.75rem; + } + + .\32xl\:focus\:translate-y-4:focus{ + --tw-translate-y: 1rem; + } + + .\32xl\:focus\:translate-y-5:focus{ + --tw-translate-y: 1.25rem; + } + + .\32xl\:focus\:translate-y-6:focus{ + --tw-translate-y: 1.5rem; + } + + .\32xl\:focus\:translate-y-7:focus{ + --tw-translate-y: 1.75rem; + } + + .\32xl\:focus\:translate-y-8:focus{ + --tw-translate-y: 2rem; + } + + .\32xl\:focus\:translate-y-9:focus{ + --tw-translate-y: 2.25rem; + } + + .\32xl\:focus\:translate-y-10:focus{ + --tw-translate-y: 2.5rem; + } + + .\32xl\:focus\:translate-y-11:focus{ + --tw-translate-y: 2.75rem; + } + + .\32xl\:focus\:translate-y-12:focus{ + --tw-translate-y: 3rem; + } + + .\32xl\:focus\:translate-y-14:focus{ + --tw-translate-y: 3.5rem; + } + + .\32xl\:focus\:translate-y-16:focus{ + --tw-translate-y: 4rem; + } + + .\32xl\:focus\:translate-y-20:focus{ + --tw-translate-y: 5rem; + } + + .\32xl\:focus\:translate-y-24:focus{ + --tw-translate-y: 6rem; + } + + .\32xl\:focus\:translate-y-28:focus{ + --tw-translate-y: 7rem; + } + + .\32xl\:focus\:translate-y-32:focus{ + --tw-translate-y: 8rem; + } + + .\32xl\:focus\:translate-y-36:focus{ + --tw-translate-y: 9rem; + } + + .\32xl\:focus\:translate-y-40:focus{ + --tw-translate-y: 10rem; + } + + .\32xl\:focus\:translate-y-44:focus{ + --tw-translate-y: 11rem; + } + + .\32xl\:focus\:translate-y-48:focus{ + --tw-translate-y: 12rem; + } + + .\32xl\:focus\:translate-y-52:focus{ + --tw-translate-y: 13rem; + } + + .\32xl\:focus\:translate-y-56:focus{ + --tw-translate-y: 14rem; + } + + .\32xl\:focus\:translate-y-60:focus{ + --tw-translate-y: 15rem; + } + + .\32xl\:focus\:translate-y-64:focus{ + --tw-translate-y: 16rem; + } + + .\32xl\:focus\:translate-y-72:focus{ + --tw-translate-y: 18rem; + } + + .\32xl\:focus\:translate-y-80:focus{ + --tw-translate-y: 20rem; + } + + .\32xl\:focus\:translate-y-96:focus{ + --tw-translate-y: 24rem; + } + + .\32xl\:focus\:translate-y-px:focus{ + --tw-translate-y: 1px; + } + + .\32xl\:focus\:translate-y-0\.5:focus{ + --tw-translate-y: 0.125rem; + } + + .\32xl\:focus\:translate-y-1\.5:focus{ + --tw-translate-y: 0.375rem; + } + + .\32xl\:focus\:translate-y-2\.5:focus{ + --tw-translate-y: 0.625rem; + } + + .\32xl\:focus\:translate-y-3\.5:focus{ + --tw-translate-y: 0.875rem; + } + + .\32xl\:focus\:-translate-y-0:focus{ + --tw-translate-y: 0px; + } + + .\32xl\:focus\:-translate-y-1:focus{ + --tw-translate-y: -0.25rem; + } + + .\32xl\:focus\:-translate-y-2:focus{ + --tw-translate-y: -0.5rem; + } + + .\32xl\:focus\:-translate-y-3:focus{ + --tw-translate-y: -0.75rem; + } + + .\32xl\:focus\:-translate-y-4:focus{ + --tw-translate-y: -1rem; + } + + .\32xl\:focus\:-translate-y-5:focus{ + --tw-translate-y: -1.25rem; + } + + .\32xl\:focus\:-translate-y-6:focus{ + --tw-translate-y: -1.5rem; + } + + .\32xl\:focus\:-translate-y-7:focus{ + --tw-translate-y: -1.75rem; + } + + .\32xl\:focus\:-translate-y-8:focus{ + --tw-translate-y: -2rem; + } + + .\32xl\:focus\:-translate-y-9:focus{ + --tw-translate-y: -2.25rem; + } + + .\32xl\:focus\:-translate-y-10:focus{ + --tw-translate-y: -2.5rem; + } + + .\32xl\:focus\:-translate-y-11:focus{ + --tw-translate-y: -2.75rem; + } + + .\32xl\:focus\:-translate-y-12:focus{ + --tw-translate-y: -3rem; + } + + .\32xl\:focus\:-translate-y-14:focus{ + --tw-translate-y: -3.5rem; + } + + .\32xl\:focus\:-translate-y-16:focus{ + --tw-translate-y: -4rem; + } + + .\32xl\:focus\:-translate-y-20:focus{ + --tw-translate-y: -5rem; + } + + .\32xl\:focus\:-translate-y-24:focus{ + --tw-translate-y: -6rem; + } + + .\32xl\:focus\:-translate-y-28:focus{ + --tw-translate-y: -7rem; + } + + .\32xl\:focus\:-translate-y-32:focus{ + --tw-translate-y: -8rem; + } + + .\32xl\:focus\:-translate-y-36:focus{ + --tw-translate-y: -9rem; + } + + .\32xl\:focus\:-translate-y-40:focus{ + --tw-translate-y: -10rem; + } + + .\32xl\:focus\:-translate-y-44:focus{ + --tw-translate-y: -11rem; + } + + .\32xl\:focus\:-translate-y-48:focus{ + --tw-translate-y: -12rem; + } + + .\32xl\:focus\:-translate-y-52:focus{ + --tw-translate-y: -13rem; + } + + .\32xl\:focus\:-translate-y-56:focus{ + --tw-translate-y: -14rem; + } + + .\32xl\:focus\:-translate-y-60:focus{ + --tw-translate-y: -15rem; + } + + .\32xl\:focus\:-translate-y-64:focus{ + --tw-translate-y: -16rem; + } + + .\32xl\:focus\:-translate-y-72:focus{ + --tw-translate-y: -18rem; + } + + .\32xl\:focus\:-translate-y-80:focus{ + --tw-translate-y: -20rem; + } + + .\32xl\:focus\:-translate-y-96:focus{ + --tw-translate-y: -24rem; + } + + .\32xl\:focus\:-translate-y-px:focus{ + --tw-translate-y: -1px; + } + + .\32xl\:focus\:-translate-y-0\.5:focus{ + --tw-translate-y: -0.125rem; + } + + .\32xl\:focus\:-translate-y-1\.5:focus{ + --tw-translate-y: -0.375rem; + } + + .\32xl\:focus\:-translate-y-2\.5:focus{ + --tw-translate-y: -0.625rem; + } + + .\32xl\:focus\:-translate-y-3\.5:focus{ + --tw-translate-y: -0.875rem; + } + + .\32xl\:focus\:translate-y-1\/2:focus{ + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-1\/3:focus{ + --tw-translate-y: 33.333333%; + } + + .\32xl\:focus\:translate-y-2\/3:focus{ + --tw-translate-y: 66.666667%; + } + + .\32xl\:focus\:translate-y-1\/4:focus{ + --tw-translate-y: 25%; + } + + .\32xl\:focus\:translate-y-2\/4:focus{ + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-3\/4:focus{ + --tw-translate-y: 75%; + } + + .\32xl\:focus\:translate-y-full:focus{ + --tw-translate-y: 100%; + } + + .\32xl\:focus\:-translate-y-1\/2:focus{ + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-1\/3:focus{ + --tw-translate-y: -33.333333%; + } + + .\32xl\:focus\:-translate-y-2\/3:focus{ + --tw-translate-y: -66.666667%; + } + + .\32xl\:focus\:-translate-y-1\/4:focus{ + --tw-translate-y: -25%; + } + + .\32xl\:focus\:-translate-y-2\/4:focus{ + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-3\/4:focus{ + --tw-translate-y: -75%; + } + + .\32xl\:focus\:-translate-y-full:focus{ + --tw-translate-y: -100%; + } + + .\32xl\:rotate-0{ + --tw-rotate: 0deg; + } + + .\32xl\:rotate-1{ + --tw-rotate: 1deg; + } + + .\32xl\:rotate-2{ + --tw-rotate: 2deg; + } + + .\32xl\:rotate-3{ + --tw-rotate: 3deg; + } + + .\32xl\:rotate-6{ + --tw-rotate: 6deg; + } + + .\32xl\:rotate-12{ + --tw-rotate: 12deg; + } + + .\32xl\:rotate-45{ + --tw-rotate: 45deg; + } + + .\32xl\:rotate-90{ + --tw-rotate: 90deg; + } + + .\32xl\:rotate-180{ + --tw-rotate: 180deg; + } + + .\32xl\:-rotate-180{ + --tw-rotate: -180deg; + } + + .\32xl\:-rotate-90{ + --tw-rotate: -90deg; + } + + .\32xl\:-rotate-45{ + --tw-rotate: -45deg; + } + + .\32xl\:-rotate-12{ + --tw-rotate: -12deg; + } + + .\32xl\:-rotate-6{ + --tw-rotate: -6deg; + } + + .\32xl\:-rotate-3{ + --tw-rotate: -3deg; + } + + .\32xl\:-rotate-2{ + --tw-rotate: -2deg; + } + + .\32xl\:-rotate-1{ + --tw-rotate: -1deg; + } + + .\32xl\:hover\:rotate-0:hover{ + --tw-rotate: 0deg; + } + + .\32xl\:hover\:rotate-1:hover{ + --tw-rotate: 1deg; + } + + .\32xl\:hover\:rotate-2:hover{ + --tw-rotate: 2deg; + } + + .\32xl\:hover\:rotate-3:hover{ + --tw-rotate: 3deg; + } + + .\32xl\:hover\:rotate-6:hover{ + --tw-rotate: 6deg; + } + + .\32xl\:hover\:rotate-12:hover{ + --tw-rotate: 12deg; + } + + .\32xl\:hover\:rotate-45:hover{ + --tw-rotate: 45deg; + } + + .\32xl\:hover\:rotate-90:hover{ + --tw-rotate: 90deg; + } + + .\32xl\:hover\:rotate-180:hover{ + --tw-rotate: 180deg; + } + + .\32xl\:hover\:-rotate-180:hover{ + --tw-rotate: -180deg; + } + + .\32xl\:hover\:-rotate-90:hover{ + --tw-rotate: -90deg; + } + + .\32xl\:hover\:-rotate-45:hover{ + --tw-rotate: -45deg; + } + + .\32xl\:hover\:-rotate-12:hover{ + --tw-rotate: -12deg; + } + + .\32xl\:hover\:-rotate-6:hover{ + --tw-rotate: -6deg; + } + + .\32xl\:hover\:-rotate-3:hover{ + --tw-rotate: -3deg; + } + + .\32xl\:hover\:-rotate-2:hover{ + --tw-rotate: -2deg; + } + + .\32xl\:hover\:-rotate-1:hover{ + --tw-rotate: -1deg; + } + + .\32xl\:focus\:rotate-0:focus{ + --tw-rotate: 0deg; + } + + .\32xl\:focus\:rotate-1:focus{ + --tw-rotate: 1deg; + } + + .\32xl\:focus\:rotate-2:focus{ + --tw-rotate: 2deg; + } + + .\32xl\:focus\:rotate-3:focus{ + --tw-rotate: 3deg; + } + + .\32xl\:focus\:rotate-6:focus{ + --tw-rotate: 6deg; + } + + .\32xl\:focus\:rotate-12:focus{ + --tw-rotate: 12deg; + } + + .\32xl\:focus\:rotate-45:focus{ + --tw-rotate: 45deg; + } + + .\32xl\:focus\:rotate-90:focus{ + --tw-rotate: 90deg; + } + + .\32xl\:focus\:rotate-180:focus{ + --tw-rotate: 180deg; + } + + .\32xl\:focus\:-rotate-180:focus{ + --tw-rotate: -180deg; + } + + .\32xl\:focus\:-rotate-90:focus{ + --tw-rotate: -90deg; + } + + .\32xl\:focus\:-rotate-45:focus{ + --tw-rotate: -45deg; + } + + .\32xl\:focus\:-rotate-12:focus{ + --tw-rotate: -12deg; + } + + .\32xl\:focus\:-rotate-6:focus{ + --tw-rotate: -6deg; + } + + .\32xl\:focus\:-rotate-3:focus{ + --tw-rotate: -3deg; + } + + .\32xl\:focus\:-rotate-2:focus{ + --tw-rotate: -2deg; + } + + .\32xl\:focus\:-rotate-1:focus{ + --tw-rotate: -1deg; + } + + .\32xl\:skew-x-0{ + --tw-skew-x: 0deg; + } + + .\32xl\:skew-x-1{ + --tw-skew-x: 1deg; + } + + .\32xl\:skew-x-2{ + --tw-skew-x: 2deg; + } + + .\32xl\:skew-x-3{ + --tw-skew-x: 3deg; + } + + .\32xl\:skew-x-6{ + --tw-skew-x: 6deg; + } + + .\32xl\:skew-x-12{ + --tw-skew-x: 12deg; + } + + .\32xl\:-skew-x-12{ + --tw-skew-x: -12deg; + } + + .\32xl\:-skew-x-6{ + --tw-skew-x: -6deg; + } + + .\32xl\:-skew-x-3{ + --tw-skew-x: -3deg; + } + + .\32xl\:-skew-x-2{ + --tw-skew-x: -2deg; + } + + .\32xl\:-skew-x-1{ + --tw-skew-x: -1deg; + } + + .\32xl\:skew-y-0{ + --tw-skew-y: 0deg; + } + + .\32xl\:skew-y-1{ + --tw-skew-y: 1deg; + } + + .\32xl\:skew-y-2{ + --tw-skew-y: 2deg; + } + + .\32xl\:skew-y-3{ + --tw-skew-y: 3deg; + } + + .\32xl\:skew-y-6{ + --tw-skew-y: 6deg; + } + + .\32xl\:skew-y-12{ + --tw-skew-y: 12deg; + } + + .\32xl\:-skew-y-12{ + --tw-skew-y: -12deg; + } + + .\32xl\:-skew-y-6{ + --tw-skew-y: -6deg; + } + + .\32xl\:-skew-y-3{ + --tw-skew-y: -3deg; + } + + .\32xl\:-skew-y-2{ + --tw-skew-y: -2deg; + } + + .\32xl\:-skew-y-1{ + --tw-skew-y: -1deg; + } + + .\32xl\:hover\:skew-x-0:hover{ + --tw-skew-x: 0deg; + } + + .\32xl\:hover\:skew-x-1:hover{ + --tw-skew-x: 1deg; + } + + .\32xl\:hover\:skew-x-2:hover{ + --tw-skew-x: 2deg; + } + + .\32xl\:hover\:skew-x-3:hover{ + --tw-skew-x: 3deg; + } + + .\32xl\:hover\:skew-x-6:hover{ + --tw-skew-x: 6deg; + } + + .\32xl\:hover\:skew-x-12:hover{ + --tw-skew-x: 12deg; + } + + .\32xl\:hover\:-skew-x-12:hover{ + --tw-skew-x: -12deg; + } + + .\32xl\:hover\:-skew-x-6:hover{ + --tw-skew-x: -6deg; + } + + .\32xl\:hover\:-skew-x-3:hover{ + --tw-skew-x: -3deg; + } + + .\32xl\:hover\:-skew-x-2:hover{ + --tw-skew-x: -2deg; + } + + .\32xl\:hover\:-skew-x-1:hover{ + --tw-skew-x: -1deg; + } + + .\32xl\:hover\:skew-y-0:hover{ + --tw-skew-y: 0deg; + } + + .\32xl\:hover\:skew-y-1:hover{ + --tw-skew-y: 1deg; + } + + .\32xl\:hover\:skew-y-2:hover{ + --tw-skew-y: 2deg; + } + + .\32xl\:hover\:skew-y-3:hover{ + --tw-skew-y: 3deg; + } + + .\32xl\:hover\:skew-y-6:hover{ + --tw-skew-y: 6deg; + } + + .\32xl\:hover\:skew-y-12:hover{ + --tw-skew-y: 12deg; + } + + .\32xl\:hover\:-skew-y-12:hover{ + --tw-skew-y: -12deg; + } + + .\32xl\:hover\:-skew-y-6:hover{ + --tw-skew-y: -6deg; + } + + .\32xl\:hover\:-skew-y-3:hover{ + --tw-skew-y: -3deg; + } + + .\32xl\:hover\:-skew-y-2:hover{ + --tw-skew-y: -2deg; + } + + .\32xl\:hover\:-skew-y-1:hover{ + --tw-skew-y: -1deg; + } + + .\32xl\:focus\:skew-x-0:focus{ + --tw-skew-x: 0deg; + } + + .\32xl\:focus\:skew-x-1:focus{ + --tw-skew-x: 1deg; + } + + .\32xl\:focus\:skew-x-2:focus{ + --tw-skew-x: 2deg; + } + + .\32xl\:focus\:skew-x-3:focus{ + --tw-skew-x: 3deg; + } + + .\32xl\:focus\:skew-x-6:focus{ + --tw-skew-x: 6deg; + } + + .\32xl\:focus\:skew-x-12:focus{ + --tw-skew-x: 12deg; + } + + .\32xl\:focus\:-skew-x-12:focus{ + --tw-skew-x: -12deg; + } + + .\32xl\:focus\:-skew-x-6:focus{ + --tw-skew-x: -6deg; + } + + .\32xl\:focus\:-skew-x-3:focus{ + --tw-skew-x: -3deg; + } + + .\32xl\:focus\:-skew-x-2:focus{ + --tw-skew-x: -2deg; + } + + .\32xl\:focus\:-skew-x-1:focus{ + --tw-skew-x: -1deg; + } + + .\32xl\:focus\:skew-y-0:focus{ + --tw-skew-y: 0deg; + } + + .\32xl\:focus\:skew-y-1:focus{ + --tw-skew-y: 1deg; + } + + .\32xl\:focus\:skew-y-2:focus{ + --tw-skew-y: 2deg; + } + + .\32xl\:focus\:skew-y-3:focus{ + --tw-skew-y: 3deg; + } + + .\32xl\:focus\:skew-y-6:focus{ + --tw-skew-y: 6deg; + } + + .\32xl\:focus\:skew-y-12:focus{ + --tw-skew-y: 12deg; + } + + .\32xl\:focus\:-skew-y-12:focus{ + --tw-skew-y: -12deg; + } + + .\32xl\:focus\:-skew-y-6:focus{ + --tw-skew-y: -6deg; + } + + .\32xl\:focus\:-skew-y-3:focus{ + --tw-skew-y: -3deg; + } + + .\32xl\:focus\:-skew-y-2:focus{ + --tw-skew-y: -2deg; + } + + .\32xl\:focus\:-skew-y-1:focus{ + --tw-skew-y: -1deg; + } + + .\32xl\:scale-0{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:scale-50{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:scale-75{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:scale-90{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:scale-105{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:scale-110{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:scale-125{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:scale-150{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-0:hover{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-50:hover{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-75:hover{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-90:hover{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-95:hover{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-100:hover{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-105:hover{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-110:hover{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-125:hover{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-150:hover{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-0:focus{ + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-50:focus{ + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-75:focus{ + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-90:focus{ + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-95:focus{ + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-100:focus{ + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-105:focus{ + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-110:focus{ + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-125:focus{ + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-150:focus{ + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:scale-x-0{ + --tw-scale-x: 0; + } + + .\32xl\:scale-x-50{ + --tw-scale-x: .5; + } + + .\32xl\:scale-x-75{ + --tw-scale-x: .75; + } + + .\32xl\:scale-x-90{ + --tw-scale-x: .9; + } + + .\32xl\:scale-x-95{ + --tw-scale-x: .95; + } + + .\32xl\:scale-x-100{ + --tw-scale-x: 1; + } + + .\32xl\:scale-x-105{ + --tw-scale-x: 1.05; + } + + .\32xl\:scale-x-110{ + --tw-scale-x: 1.1; + } + + .\32xl\:scale-x-125{ + --tw-scale-x: 1.25; + } + + .\32xl\:scale-x-150{ + --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0{ + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50{ + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75{ + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90{ + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95{ + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100{ + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105{ + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110{ + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125{ + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150{ + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-x-0:hover{ + --tw-scale-x: 0; + } + + .\32xl\:hover\:scale-x-50:hover{ + --tw-scale-x: .5; + } + + .\32xl\:hover\:scale-x-75:hover{ + --tw-scale-x: .75; + } + + .\32xl\:hover\:scale-x-90:hover{ + --tw-scale-x: .9; + } + + .\32xl\:hover\:scale-x-95:hover{ + --tw-scale-x: .95; + } + + .\32xl\:hover\:scale-x-100:hover{ + --tw-scale-x: 1; + } + + .\32xl\:hover\:scale-x-105:hover{ + --tw-scale-x: 1.05; + } + + .\32xl\:hover\:scale-x-110:hover{ + --tw-scale-x: 1.1; + } + + .\32xl\:hover\:scale-x-125:hover{ + --tw-scale-x: 1.25; + } + + .\32xl\:hover\:scale-x-150:hover{ + --tw-scale-x: 1.5; + } + + .\32xl\:hover\:scale-y-0:hover{ + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-y-50:hover{ + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-y-75:hover{ + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-y-90:hover{ + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-y-95:hover{ + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-y-100:hover{ + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-y-105:hover{ + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-y-110:hover{ + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-y-125:hover{ + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-y-150:hover{ + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-x-0:focus{ + --tw-scale-x: 0; + } + + .\32xl\:focus\:scale-x-50:focus{ + --tw-scale-x: .5; + } + + .\32xl\:focus\:scale-x-75:focus{ + --tw-scale-x: .75; + } + + .\32xl\:focus\:scale-x-90:focus{ + --tw-scale-x: .9; + } + + .\32xl\:focus\:scale-x-95:focus{ + --tw-scale-x: .95; + } + + .\32xl\:focus\:scale-x-100:focus{ + --tw-scale-x: 1; + } + + .\32xl\:focus\:scale-x-105:focus{ + --tw-scale-x: 1.05; + } + + .\32xl\:focus\:scale-x-110:focus{ + --tw-scale-x: 1.1; + } + + .\32xl\:focus\:scale-x-125:focus{ + --tw-scale-x: 1.25; + } + + .\32xl\:focus\:scale-x-150:focus{ + --tw-scale-x: 1.5; + } + + .\32xl\:focus\:scale-y-0:focus{ + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-y-50:focus{ + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-y-75:focus{ + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-y-90:focus{ + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-y-95:focus{ + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-y-100:focus{ + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-y-105:focus{ + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-y-110:focus{ + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-y-125:focus{ + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-y-150:focus{ + --tw-scale-y: 1.5; + } + + .\32xl\:animate-none{ + -webkit-animation: none; + animation: none; + } + + .\32xl\:animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .\32xl\:animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .\32xl\:animate-pulse{ + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .\32xl\:animate-bounce{ + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } + + .\32xl\:cursor-auto{ + cursor: auto; + } + + .\32xl\:cursor-default{ + cursor: default; + } + + .\32xl\:cursor-pointer{ + cursor: pointer; + } + + .\32xl\:cursor-wait{ + cursor: wait; + } + + .\32xl\:cursor-text{ + cursor: text; + } + + .\32xl\:cursor-move{ + cursor: move; + } + + .\32xl\:cursor-help{ + cursor: help; + } + + .\32xl\:cursor-not-allowed{ + cursor: not-allowed; + } + + .\32xl\:select-none{ + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .\32xl\:select-text{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .\32xl\:select-all{ + -webkit-user-select: all; + -moz-user-select: all; + user-select: all; + } + + .\32xl\:select-auto{ + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .\32xl\:resize-none{ + resize: none; + } + + .\32xl\:resize-y{ + resize: vertical; + } + + .\32xl\:resize-x{ + resize: horizontal; + } + + .\32xl\:resize{ + resize: both; + } + + .\32xl\:list-inside{ + list-style-position: inside; + } + + .\32xl\:list-outside{ + list-style-position: outside; + } + + .\32xl\:list-none{ + list-style-type: none; + } + + .\32xl\:list-disc{ + list-style-type: disc; + } + + .\32xl\:list-decimal{ + list-style-type: decimal; + } + + .\32xl\:appearance-none{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .\32xl\:auto-cols-auto{ + grid-auto-columns: auto; + } + + .\32xl\:auto-cols-min{ + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .\32xl\:auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .\32xl\:auto-cols-fr{ + grid-auto-columns: minmax(0, 1fr); + } + + .\32xl\:grid-flow-row{ + grid-auto-flow: row; + } + + .\32xl\:grid-flow-col{ + grid-auto-flow: column; + } + + .\32xl\:grid-flow-row-dense{ + grid-auto-flow: row dense; + } + + .\32xl\:grid-flow-col-dense{ + grid-auto-flow: column dense; + } + + .\32xl\:auto-rows-auto{ + grid-auto-rows: auto; + } + + .\32xl\:auto-rows-min{ + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .\32xl\:auto-rows-max{ + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .\32xl\:auto-rows-fr{ + grid-auto-rows: minmax(0, 1fr); + } + + .\32xl\:grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-3{ + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-5{ + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-6{ + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-7{ + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-8{ + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-9{ + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-10{ + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-11{ + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-12{ + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-none{ + grid-template-columns: none; + } + + .\32xl\:grid-rows-1{ + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-2{ + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-3{ + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-4{ + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-5{ + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-6{ + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-none{ + grid-template-rows: none; + } + + .\32xl\:flex-row{ + flex-direction: row; + } + + .\32xl\:flex-row-reverse{ + flex-direction: row-reverse; + } + + .\32xl\:flex-col{ + flex-direction: column; + } + + .\32xl\:flex-col-reverse{ + flex-direction: column-reverse; + } + + .\32xl\:flex-wrap{ + flex-wrap: wrap; + } + + .\32xl\:flex-wrap-reverse{ + flex-wrap: wrap-reverse; + } + + .\32xl\:flex-nowrap{ + flex-wrap: nowrap; + } + + .\32xl\:place-content-center{ + place-content: center; + } + + .\32xl\:place-content-start{ + place-content: start; + } + + .\32xl\:place-content-end{ + place-content: end; + } + + .\32xl\:place-content-between{ + place-content: space-between; + } + + .\32xl\:place-content-around{ + place-content: space-around; + } + + .\32xl\:place-content-evenly{ + place-content: space-evenly; + } + + .\32xl\:place-content-stretch{ + place-content: stretch; + } + + .\32xl\:place-items-start{ + place-items: start; + } + + .\32xl\:place-items-end{ + place-items: end; + } + + .\32xl\:place-items-center{ + place-items: center; + } + + .\32xl\:place-items-stretch{ + place-items: stretch; + } + + .\32xl\:content-center{ + align-content: center; + } + + .\32xl\:content-start{ + align-content: flex-start; + } + + .\32xl\:content-end{ + align-content: flex-end; + } + + .\32xl\:content-between{ + align-content: space-between; + } + + .\32xl\:content-around{ + align-content: space-around; + } + + .\32xl\:content-evenly{ + align-content: space-evenly; + } + + .\32xl\:items-start{ + align-items: flex-start; + } + + .\32xl\:items-end{ + align-items: flex-end; + } + + .\32xl\:items-center{ + align-items: center; + } + + .\32xl\:items-baseline{ + align-items: baseline; + } + + .\32xl\:items-stretch{ + align-items: stretch; + } + + .\32xl\:justify-start{ + justify-content: flex-start; + } + + .\32xl\:justify-end{ + justify-content: flex-end; + } + + .\32xl\:justify-center{ + justify-content: center; + } + + .\32xl\:justify-between{ + justify-content: space-between; + } + + .\32xl\:justify-around{ + justify-content: space-around; + } + + .\32xl\:justify-evenly{ + justify-content: space-evenly; + } + + .\32xl\:justify-items-start{ + justify-items: start; + } + + .\32xl\:justify-items-end{ + justify-items: end; + } + + .\32xl\:justify-items-center{ + justify-items: center; + } + + .\32xl\:justify-items-stretch{ + justify-items: stretch; + } + + .\32xl\:gap-0{ + gap: 0px; + } + + .\32xl\:gap-1{ + gap: 0.25rem; + } + + .\32xl\:gap-2{ + gap: 0.5rem; + } + + .\32xl\:gap-3{ + gap: 0.75rem; + } + + .\32xl\:gap-4{ + gap: 1rem; + } + + .\32xl\:gap-5{ + gap: 1.25rem; + } + + .\32xl\:gap-6{ + gap: 1.5rem; + } + + .\32xl\:gap-7{ + gap: 1.75rem; + } + + .\32xl\:gap-8{ + gap: 2rem; + } + + .\32xl\:gap-9{ + gap: 2.25rem; + } + + .\32xl\:gap-10{ + gap: 2.5rem; + } + + .\32xl\:gap-11{ + gap: 2.75rem; + } + + .\32xl\:gap-12{ + gap: 3rem; + } + + .\32xl\:gap-14{ + gap: 3.5rem; + } + + .\32xl\:gap-16{ + gap: 4rem; + } + + .\32xl\:gap-20{ + gap: 5rem; + } + + .\32xl\:gap-24{ + gap: 6rem; + } + + .\32xl\:gap-28{ + gap: 7rem; + } + + .\32xl\:gap-32{ + gap: 8rem; + } + + .\32xl\:gap-36{ + gap: 9rem; + } + + .\32xl\:gap-40{ + gap: 10rem; + } + + .\32xl\:gap-44{ + gap: 11rem; + } + + .\32xl\:gap-48{ + gap: 12rem; + } + + .\32xl\:gap-52{ + gap: 13rem; + } + + .\32xl\:gap-56{ + gap: 14rem; + } + + .\32xl\:gap-60{ + gap: 15rem; + } + + .\32xl\:gap-64{ + gap: 16rem; + } + + .\32xl\:gap-72{ + gap: 18rem; + } + + .\32xl\:gap-80{ + gap: 20rem; + } + + .\32xl\:gap-96{ + gap: 24rem; + } + + .\32xl\:gap-px{ + gap: 1px; + } + + .\32xl\:gap-0\.5{ + gap: 0.125rem; + } + + .\32xl\:gap-1\.5{ + gap: 0.375rem; + } + + .\32xl\:gap-2\.5{ + gap: 0.625rem; + } + + .\32xl\:gap-3\.5{ + gap: 0.875rem; + } + + .\32xl\:gap-x-0{ + -moz-column-gap: 0px; + column-gap: 0px; + } + + .\32xl\:gap-x-1{ + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .\32xl\:gap-x-2{ + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .\32xl\:gap-x-3{ + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .\32xl\:gap-x-4{ + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .\32xl\:gap-x-5{ + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .\32xl\:gap-x-6{ + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .\32xl\:gap-x-7{ + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .\32xl\:gap-x-8{ + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .\32xl\:gap-x-9{ + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .\32xl\:gap-x-10{ + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .\32xl\:gap-x-11{ + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .\32xl\:gap-x-12{ + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .\32xl\:gap-x-14{ + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .\32xl\:gap-x-16{ + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .\32xl\:gap-x-20{ + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .\32xl\:gap-x-24{ + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .\32xl\:gap-x-28{ + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .\32xl\:gap-x-32{ + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .\32xl\:gap-x-36{ + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .\32xl\:gap-x-40{ + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .\32xl\:gap-x-44{ + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .\32xl\:gap-x-48{ + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .\32xl\:gap-x-52{ + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .\32xl\:gap-x-56{ + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .\32xl\:gap-x-60{ + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .\32xl\:gap-x-64{ + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .\32xl\:gap-x-72{ + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .\32xl\:gap-x-80{ + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .\32xl\:gap-x-96{ + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .\32xl\:gap-x-px{ + -moz-column-gap: 1px; + column-gap: 1px; + } + + .\32xl\:gap-x-0\.5{ + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .\32xl\:gap-x-1\.5{ + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .\32xl\:gap-x-2\.5{ + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .\32xl\:gap-x-3\.5{ + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .\32xl\:gap-y-0{ + row-gap: 0px; + } + + .\32xl\:gap-y-1{ + row-gap: 0.25rem; + } + + .\32xl\:gap-y-2{ + row-gap: 0.5rem; + } + + .\32xl\:gap-y-3{ + row-gap: 0.75rem; + } + + .\32xl\:gap-y-4{ + row-gap: 1rem; + } + + .\32xl\:gap-y-5{ + row-gap: 1.25rem; + } + + .\32xl\:gap-y-6{ + row-gap: 1.5rem; + } + + .\32xl\:gap-y-7{ + row-gap: 1.75rem; + } + + .\32xl\:gap-y-8{ + row-gap: 2rem; + } + + .\32xl\:gap-y-9{ + row-gap: 2.25rem; + } + + .\32xl\:gap-y-10{ + row-gap: 2.5rem; + } + + .\32xl\:gap-y-11{ + row-gap: 2.75rem; + } + + .\32xl\:gap-y-12{ + row-gap: 3rem; + } + + .\32xl\:gap-y-14{ + row-gap: 3.5rem; + } + + .\32xl\:gap-y-16{ + row-gap: 4rem; + } + + .\32xl\:gap-y-20{ + row-gap: 5rem; + } + + .\32xl\:gap-y-24{ + row-gap: 6rem; + } + + .\32xl\:gap-y-28{ + row-gap: 7rem; + } + + .\32xl\:gap-y-32{ + row-gap: 8rem; + } + + .\32xl\:gap-y-36{ + row-gap: 9rem; + } + + .\32xl\:gap-y-40{ + row-gap: 10rem; + } + + .\32xl\:gap-y-44{ + row-gap: 11rem; + } + + .\32xl\:gap-y-48{ + row-gap: 12rem; + } + + .\32xl\:gap-y-52{ + row-gap: 13rem; + } + + .\32xl\:gap-y-56{ + row-gap: 14rem; + } + + .\32xl\:gap-y-60{ + row-gap: 15rem; + } + + .\32xl\:gap-y-64{ + row-gap: 16rem; + } + + .\32xl\:gap-y-72{ + row-gap: 18rem; + } + + .\32xl\:gap-y-80{ + row-gap: 20rem; + } + + .\32xl\:gap-y-96{ + row-gap: 24rem; + } + + .\32xl\:gap-y-px{ + row-gap: 1px; + } + + .\32xl\:gap-y-0\.5{ + row-gap: 0.125rem; + } + + .\32xl\:gap-y-1\.5{ + row-gap: 0.375rem; + } + + .\32xl\:gap-y-2\.5{ + row-gap: 0.625rem; + } + + .\32xl\:gap-y-3\.5{ + row-gap: 0.875rem; + } + + .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\: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))); + } + + .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-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))); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\: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)); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\: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)); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\: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)); + } + + .\32xl\: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)); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-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)); + } + + .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-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)); + } + + .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-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)); + } + + .\32xl\:-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)); + } + + .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 1; + } + + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 1; + } + + .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\: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))); + } + + .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\: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))); + } + + .\32xl\: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)); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\: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)); + } + + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 1; + } + + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 1; + } + + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]){ + border-style: solid; + } + + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]){ + border-style: dashed; + } + + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]){ + border-style: dotted; + } + + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]){ + border-style: double; + } + + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]){ + border-style: none; + } + + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]){ + border-color: transparent; + } + + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]){ + border-color: currentColor; + } + + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-divide-opacity)); + } + + .\32xl\:divide-orange-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-divide-opacity)); + } + + .\32xl\:divide-teal-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-divide-opacity)); + } + + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-divide-opacity)); + } + + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-divide-opacity)); + } + + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0; + } + + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.05; + } + + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.1; + } + + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.2; + } + + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.25; + } + + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.3; + } + + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.4; + } + + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.5; + } + + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.6; + } + + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.7; + } + + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.75; + } + + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.8; + } + + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.9; + } + + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 0.95; + } + + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + } + + .\32xl\:place-self-auto{ + place-self: auto; + } + + .\32xl\:place-self-start{ + place-self: start; + } + + .\32xl\:place-self-end{ + place-self: end; + } + + .\32xl\:place-self-center{ + place-self: center; + } + + .\32xl\:place-self-stretch{ + place-self: stretch; + } + + .\32xl\:self-auto{ + align-self: auto; + } + + .\32xl\:self-start{ + align-self: flex-start; + } + + .\32xl\:self-end{ + align-self: flex-end; + } + + .\32xl\:self-center{ + align-self: center; + } + + .\32xl\:self-stretch{ + align-self: stretch; + } + + .\32xl\:self-baseline{ + align-self: baseline; + } + + .\32xl\:justify-self-auto{ + justify-self: auto; + } + + .\32xl\:justify-self-start{ + justify-self: start; + } + + .\32xl\:justify-self-end{ + justify-self: end; + } + + .\32xl\:justify-self-center{ + justify-self: center; + } + + .\32xl\:justify-self-stretch{ + justify-self: stretch; + } + + .\32xl\:overflow-auto{ + overflow: auto; + } + + .\32xl\:overflow-hidden{ + overflow: hidden; + } + + .\32xl\:overflow-visible{ + overflow: visible; + } + + .\32xl\:overflow-scroll{ + overflow: scroll; + } + + .\32xl\:overflow-x-auto{ + overflow-x: auto; + } + + .\32xl\:overflow-y-auto{ + overflow-y: auto; + } + + .\32xl\:overflow-x-hidden{ + overflow-x: hidden; + } + + .\32xl\:overflow-y-hidden{ + overflow-y: hidden; + } + + .\32xl\:overflow-x-visible{ + overflow-x: visible; + } + + .\32xl\:overflow-y-visible{ + overflow-y: visible; + } + + .\32xl\:overflow-x-scroll{ + overflow-x: scroll; + } + + .\32xl\:overflow-y-scroll{ + overflow-y: scroll; + } + + .\32xl\:overscroll-auto{ + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .\32xl\:overscroll-contain{ + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .\32xl\:overscroll-none{ + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .\32xl\:overscroll-y-auto{ + overscroll-behavior-y: auto; + } + + .\32xl\:overscroll-y-contain{ + overscroll-behavior-y: contain; + } + + .\32xl\:overscroll-y-none{ + overscroll-behavior-y: none; + } + + .\32xl\:overscroll-x-auto{ + overscroll-behavior-x: auto; + } + + .\32xl\:overscroll-x-contain{ + overscroll-behavior-x: contain; + } + + .\32xl\:overscroll-x-none{ + overscroll-behavior-x: none; + } + + .\32xl\:truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .\32xl\:overflow-ellipsis{ + text-overflow: ellipsis; + } + + .\32xl\:overflow-clip{ + text-overflow: clip; + } + + .\32xl\:whitespace-normal{ + white-space: normal; + } + + .\32xl\:whitespace-nowrap{ + white-space: nowrap; + } + + .\32xl\:whitespace-pre{ + white-space: pre; + } + + .\32xl\:whitespace-pre-line{ + white-space: pre-line; + } + + .\32xl\:whitespace-pre-wrap{ + white-space: pre-wrap; + } + + .\32xl\:break-normal{ + overflow-wrap: normal; + word-break: normal; + } + + .\32xl\:break-words{ + overflow-wrap: break-word; + } + + .\32xl\:break-all{ + word-break: break-all; + } + + .\32xl\:rounded-none{ + border-radius: 0px; + } + + .\32xl\:rounded-sm{ + border-radius: 0.125rem; + } + + .\32xl\:rounded{ + border-radius: 0.25rem; + } + + .\32xl\:rounded-md{ + border-radius: 0.375rem; + } + + .\32xl\:rounded-lg{ + border-radius: 0.5rem; + } + + .\32xl\:rounded-xl{ + border-radius: 0.75rem; + } + + .\32xl\:rounded-2xl{ + border-radius: 1rem; + } + + .\32xl\:rounded-3xl{ + border-radius: 1.5rem; + } + + .\32xl\:rounded-full{ + border-radius: 9999px; + } + + .\32xl\:rounded-t-none{ + border-top-left-radius: 0px; + border-top-right-radius: 0px; + } + + .\32xl\:rounded-t-sm{ + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-t{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-t-md{ + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-t-lg{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-t-xl{ + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-t-2xl{ + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-t-3xl{ + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-t-full{ + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-r-none{ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + } + + .\32xl\:rounded-r-sm{ + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-r{ + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-r-md{ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-r-lg{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-r-xl{ + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-r-2xl{ + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-r-3xl{ + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-r-full{ + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-b-none{ + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; + } + + .\32xl\:rounded-b-sm{ + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-b{ + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-b-lg{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-b-xl{ + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-b-2xl{ + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-b-3xl{ + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-b-full{ + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + } + + .\32xl\:rounded-l-sm{ + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-l-lg{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-l-xl{ + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-l-2xl{ + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-l-3xl{ + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-l-full{ + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-tl-none{ + border-top-left-radius: 0px; + } + + .\32xl\:rounded-tl-sm{ + border-top-left-radius: 0.125rem; + } + + .\32xl\:rounded-tl{ + border-top-left-radius: 0.25rem; + } + + .\32xl\:rounded-tl-md{ + border-top-left-radius: 0.375rem; + } + + .\32xl\:rounded-tl-lg{ + border-top-left-radius: 0.5rem; + } + + .\32xl\:rounded-tl-xl{ + border-top-left-radius: 0.75rem; + } + + .\32xl\:rounded-tl-2xl{ + border-top-left-radius: 1rem; + } + + .\32xl\:rounded-tl-3xl{ + border-top-left-radius: 1.5rem; + } + + .\32xl\:rounded-tl-full{ + border-top-left-radius: 9999px; + } + + .\32xl\:rounded-tr-none{ + border-top-right-radius: 0px; + } + + .\32xl\:rounded-tr-sm{ + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-tr{ + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-tr-md{ + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-tr-lg{ + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-tr-xl{ + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-tr-2xl{ + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-tr-3xl{ + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-tr-full{ + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-br-none{ + border-bottom-right-radius: 0px; + } + + .\32xl\:rounded-br-sm{ + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-br{ + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-br-md{ + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-br-lg{ + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-br-xl{ + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-br-2xl{ + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-br-3xl{ + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-br-full{ + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-bl-none{ + border-bottom-left-radius: 0px; + } + + .\32xl\:rounded-bl-sm{ + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-bl{ + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-bl-md{ + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-bl-lg{ + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-bl-xl{ + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-bl-2xl{ + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-bl-3xl{ + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-bl-full{ + border-bottom-left-radius: 9999px; + } + + .\32xl\:border-0{ + border-width: 0px; + } + + .\32xl\:border-2{ + border-width: 2px; + } + + .\32xl\:border-4{ + border-width: 4px; + } + + .\32xl\:border-8{ + border-width: 8px; + } + + .\32xl\:border{ + border-width: 1px; + } + + .\32xl\:border-t-0{ + border-top-width: 0px; + } + + .\32xl\:border-t-2{ + border-top-width: 2px; + } + + .\32xl\:border-t-4{ + border-top-width: 4px; + } + + .\32xl\:border-t-8{ + border-top-width: 8px; + } + + .\32xl\:border-t{ + border-top-width: 1px; + } + + .\32xl\:border-r-0{ + border-right-width: 0px; + } + + .\32xl\:border-r-2{ + border-right-width: 2px; + } + + .\32xl\:border-r-4{ + border-right-width: 4px; + } + + .\32xl\:border-r-8{ + border-right-width: 8px; + } + + .\32xl\:border-r{ + border-right-width: 1px; + } + + .\32xl\:border-b-0{ + border-bottom-width: 0px; + } + + .\32xl\:border-b-2{ + border-bottom-width: 2px; + } + + .\32xl\:border-b-4{ + border-bottom-width: 4px; + } + + .\32xl\:border-b-8{ + border-bottom-width: 8px; + } + + .\32xl\:border-b{ + border-bottom-width: 1px; + } + + .\32xl\:border-l-0{ + border-left-width: 0px; + } + + .\32xl\:border-l-2{ + border-left-width: 2px; + } + + .\32xl\:border-l-4{ + border-left-width: 4px; + } + + .\32xl\:border-l-8{ + border-left-width: 8px; + } + + .\32xl\:border-l{ + border-left-width: 1px; + } + + .\32xl\:border-solid{ + border-style: solid; + } + + .\32xl\:border-dashed{ + border-style: dashed; + } + + .\32xl\:border-dotted{ + border-style: dotted; + } + + .\32xl\:border-double{ + border-style: double; + } + + .\32xl\:border-none{ + border-style: none; + } + + .\32xl\:border-transparent{ + border-color: transparent; + } + + .\32xl\:border-current{ + border-color: currentColor; + } + + .\32xl\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .\32xl\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .\32xl\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .\32xl\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .\32xl\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .\32xl\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .\32xl\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .\32xl\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .\32xl\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .\32xl\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .\32xl\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .\32xl\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .\32xl\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .\32xl\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .\32xl\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .\32xl\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .\32xl\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .\32xl\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .\32xl\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .\32xl\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .\32xl\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .\32xl\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-transparent{ + border-color: transparent; + } + + .group:hover .\32xl\:group-hover\:border-current{ + border-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-white{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-100{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-300{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-400{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-500{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-600{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-700{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-800{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-900{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-300{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-400{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-500{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-600{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-700{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-800{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-600{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-700{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-800{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-orange-900{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-300{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-500{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-600{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-700{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-900{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-100{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-200{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-300{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-400{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-500{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-600{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-700{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-800{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-900{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-100{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-200{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-300{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-400{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-500{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-700{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-800{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-teal-900{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-200{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-300{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-400{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-500{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-600{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-700{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-800{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-900{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-100{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-200{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-300{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-400{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-500{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-600{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-700{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-800{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-900{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-100{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-200{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-300{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-400{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-500{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-600{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-700{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-800{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-purple-900{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-100{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-200{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-300{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-400{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-500{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-600{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-700{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-800{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-pink-900{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-transparent:focus-within{ + border-color: transparent; + } + + .\32xl\:focus-within\:border-current:focus-within{ + border-color: currentColor; + } + + .\32xl\:focus-within\:border-black:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-white:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-orange-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-teal-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-purple-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-100:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-200:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-300:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-400:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-500:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-600:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-700:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-800:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-pink-900:focus-within{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-transparent:hover{ + border-color: transparent; + } + + .\32xl\:hover\:border-current:hover{ + border-color: currentColor; + } + + .\32xl\:hover\:border-black:hover{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-white:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-orange-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-teal-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-purple-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-100:hover{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-200:hover{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-300:hover{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-400:hover{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-500:hover{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-600:hover{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-700:hover{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-800:hover{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-pink-900:hover{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-transparent:focus{ + border-color: transparent; + } + + .\32xl\:focus\:border-current:focus{ + border-color: currentColor; + } + + .\32xl\:focus\:border-black:focus{ + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-white:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(247, 250, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 242, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(226, 232, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(203, 213, 224, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(160, 174, 192, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(113, 128, 150, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(74, 85, 104, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(45, 55, 72, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(26, 32, 44, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 245, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 215, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 178, 178, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(252, 129, 129, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(245, 101, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(229, 62, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(197, 48, 48, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(155, 44, 44, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 42, 42, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 235, 200, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 211, 141, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 173, 85, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 137, 54, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(221, 107, 32, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(192, 86, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(156, 66, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-orange-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(123, 52, 30, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 255, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 252, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 240, 137, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 224, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(236, 201, 75, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 158, 46, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 121, 31, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 90, 22, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(116, 66, 16, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(240, 255, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(198, 246, 213, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(154, 230, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(104, 211, 145, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(72, 187, 120, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 161, 105, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(47, 133, 90, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(39, 103, 73, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(34, 84, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(230, 255, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(178, 245, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(129, 230, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(79, 209, 197, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(56, 178, 172, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 151, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 122, 123, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(40, 94, 97, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-teal-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(35, 78, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 248, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(190, 227, 248, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(144, 205, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(99, 179, 237, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(66, 153, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(49, 130, 206, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(43, 108, 176, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(44, 82, 130, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(42, 67, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(235, 244, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(195, 218, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(163, 191, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(127, 156, 245, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(102, 126, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(90, 103, 216, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(76, 81, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(67, 65, 144, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(60, 54, 107, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(250, 245, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(233, 216, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(214, 188, 250, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(183, 148, 244, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(159, 122, 234, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(128, 90, 213, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(107, 70, 193, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(85, 60, 154, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-purple-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(68, 51, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-100:focus{ + --tw-border-opacity: 1; + border-color: rgba(255, 245, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-200:focus{ + --tw-border-opacity: 1; + border-color: rgba(254, 215, 226, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-300:focus{ + --tw-border-opacity: 1; + border-color: rgba(251, 182, 206, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-400:focus{ + --tw-border-opacity: 1; + border-color: rgba(246, 135, 179, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-500:focus{ + --tw-border-opacity: 1; + border-color: rgba(237, 100, 166, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-600:focus{ + --tw-border-opacity: 1; + border-color: rgba(213, 63, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-700:focus{ + --tw-border-opacity: 1; + border-color: rgba(184, 50, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-800:focus{ + --tw-border-opacity: 1; + border-color: rgba(151, 38, 109, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-pink-900:focus{ + --tw-border-opacity: 1; + border-color: rgba(112, 36, 89, var(--tw-border-opacity)); + } + + .\32xl\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .\32xl\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .\32xl\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .\32xl\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .\32xl\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .\32xl\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .\32xl\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .\32xl\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .\32xl\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .\32xl\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .\32xl\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .\32xl\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .\32xl\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .\32xl\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .\32xl\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-0{ + --tw-border-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:border-opacity-5{ + --tw-border-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:border-opacity-10{ + --tw-border-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-20{ + --tw-border-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:border-opacity-25{ + --tw-border-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:border-opacity-30{ + --tw-border-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:border-opacity-40{ + --tw-border-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:border-opacity-50{ + --tw-border-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:border-opacity-60{ + --tw-border-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:border-opacity-70{ + --tw-border-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:border-opacity-75{ + --tw-border-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:border-opacity-80{ + --tw-border-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:border-opacity-90{ + --tw-border-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:border-opacity-95{ + --tw-border-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:border-opacity-100{ + --tw-border-opacity: 1; + } + + .\32xl\:focus-within\:border-opacity-0:focus-within{ + --tw-border-opacity: 0; + } + + .\32xl\:focus-within\:border-opacity-5:focus-within{ + --tw-border-opacity: 0.05; + } + + .\32xl\:focus-within\:border-opacity-10:focus-within{ + --tw-border-opacity: 0.1; + } + + .\32xl\:focus-within\:border-opacity-20:focus-within{ + --tw-border-opacity: 0.2; + } + + .\32xl\:focus-within\:border-opacity-25:focus-within{ + --tw-border-opacity: 0.25; + } + + .\32xl\:focus-within\:border-opacity-30:focus-within{ + --tw-border-opacity: 0.3; + } + + .\32xl\:focus-within\:border-opacity-40:focus-within{ + --tw-border-opacity: 0.4; + } + + .\32xl\:focus-within\:border-opacity-50:focus-within{ + --tw-border-opacity: 0.5; + } + + .\32xl\:focus-within\:border-opacity-60:focus-within{ + --tw-border-opacity: 0.6; + } + + .\32xl\:focus-within\:border-opacity-70:focus-within{ + --tw-border-opacity: 0.7; + } + + .\32xl\:focus-within\:border-opacity-75:focus-within{ + --tw-border-opacity: 0.75; + } + + .\32xl\:focus-within\:border-opacity-80:focus-within{ + --tw-border-opacity: 0.8; + } + + .\32xl\:focus-within\:border-opacity-90:focus-within{ + --tw-border-opacity: 0.9; + } + + .\32xl\:focus-within\:border-opacity-95:focus-within{ + --tw-border-opacity: 0.95; + } + + .\32xl\:focus-within\:border-opacity-100:focus-within{ + --tw-border-opacity: 1; + } + + .\32xl\:hover\:border-opacity-0:hover{ + --tw-border-opacity: 0; + } + + .\32xl\:hover\:border-opacity-5:hover{ + --tw-border-opacity: 0.05; + } + + .\32xl\:hover\:border-opacity-10:hover{ + --tw-border-opacity: 0.1; + } + + .\32xl\:hover\:border-opacity-20:hover{ + --tw-border-opacity: 0.2; + } + + .\32xl\:hover\:border-opacity-25:hover{ + --tw-border-opacity: 0.25; + } + + .\32xl\:hover\:border-opacity-30:hover{ + --tw-border-opacity: 0.3; + } + + .\32xl\:hover\:border-opacity-40:hover{ + --tw-border-opacity: 0.4; + } + + .\32xl\:hover\:border-opacity-50:hover{ + --tw-border-opacity: 0.5; + } + + .\32xl\:hover\:border-opacity-60:hover{ + --tw-border-opacity: 0.6; + } + + .\32xl\:hover\:border-opacity-70:hover{ + --tw-border-opacity: 0.7; + } + + .\32xl\:hover\:border-opacity-75:hover{ + --tw-border-opacity: 0.75; + } + + .\32xl\:hover\:border-opacity-80:hover{ + --tw-border-opacity: 0.8; + } + + .\32xl\:hover\:border-opacity-90:hover{ + --tw-border-opacity: 0.9; + } + + .\32xl\:hover\:border-opacity-95:hover{ + --tw-border-opacity: 0.95; + } + + .\32xl\:hover\:border-opacity-100:hover{ + --tw-border-opacity: 1; + } + + .\32xl\:focus\:border-opacity-0:focus{ + --tw-border-opacity: 0; + } + + .\32xl\:focus\:border-opacity-5:focus{ + --tw-border-opacity: 0.05; + } + + .\32xl\:focus\:border-opacity-10:focus{ + --tw-border-opacity: 0.1; + } + + .\32xl\:focus\:border-opacity-20:focus{ + --tw-border-opacity: 0.2; + } + + .\32xl\:focus\:border-opacity-25:focus{ + --tw-border-opacity: 0.25; + } + + .\32xl\:focus\:border-opacity-30:focus{ + --tw-border-opacity: 0.3; + } + + .\32xl\:focus\:border-opacity-40:focus{ + --tw-border-opacity: 0.4; + } + + .\32xl\:focus\:border-opacity-50:focus{ + --tw-border-opacity: 0.5; + } + + .\32xl\:focus\:border-opacity-60:focus{ + --tw-border-opacity: 0.6; + } + + .\32xl\:focus\:border-opacity-70:focus{ + --tw-border-opacity: 0.7; + } + + .\32xl\:focus\:border-opacity-75:focus{ + --tw-border-opacity: 0.75; + } + + .\32xl\:focus\:border-opacity-80:focus{ + --tw-border-opacity: 0.8; + } + + .\32xl\:focus\:border-opacity-90:focus{ + --tw-border-opacity: 0.9; + } + + .\32xl\:focus\:border-opacity-95:focus{ + --tw-border-opacity: 0.95; + } + + .\32xl\:focus\:border-opacity-100:focus{ + --tw-border-opacity: 1; + } + + .\32xl\:bg-transparent{ + background-color: transparent; + } + + .\32xl\:bg-current{ + background-color: currentColor; + } + + .\32xl\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .\32xl\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .\32xl\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .\32xl\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .\32xl\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-transparent{ + background-color: transparent; + } + + .group:hover .\32xl\:group-hover\:bg-current{ + background-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:bg-black{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-300{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-400{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-500{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-700{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-800{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-300{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-400{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-600{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-700{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-800{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-600{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-700{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-800{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-orange-900{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-300{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-600{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-700{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-900{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-100{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-200{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-300{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-400{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-500{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-600{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-700{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-800{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-900{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-100{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-200{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-300{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-400{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-500{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-700{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-800{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-teal-900{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-200{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-300{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-400{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-700{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-800{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-900{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-100{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-200{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-300{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-400{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-500{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-600{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-700{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-800{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-900{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-100{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-200{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-300{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-400{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-500{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-600{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-700{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-800{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-purple-900{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-100{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-200{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-300{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-400{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-500{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-600{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-700{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-800{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-pink-900{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-transparent:focus-within{ + background-color: transparent; + } + + .\32xl\:focus-within\:bg-current:focus-within{ + background-color: currentColor; + } + + .\32xl\:focus-within\:bg-black:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-white:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-orange-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-teal-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-purple-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-100:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-200:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-300:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-400:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-500:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-600:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-700:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-800:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-pink-900:focus-within{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-transparent:hover{ + background-color: transparent; + } + + .\32xl\:hover\:bg-current:hover{ + background-color: currentColor; + } + + .\32xl\:hover\:bg-black:hover{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-white:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-orange-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-teal-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-purple-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-100:hover{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-200:hover{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-300:hover{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-400:hover{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-500:hover{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-600:hover{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-700:hover{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-800:hover{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-pink-900:hover{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-transparent:focus{ + background-color: transparent; + } + + .\32xl\:focus\:bg-current:focus{ + background-color: currentColor; + } + + .\32xl\:focus\:bg-black:focus{ + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-white:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(247, 250, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 242, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(226, 232, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(203, 213, 224, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(160, 174, 192, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(113, 128, 150, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(74, 85, 104, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(45, 55, 72, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(26, 32, 44, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 245, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 215, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 178, 178, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(252, 129, 129, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(245, 101, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(229, 62, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(197, 48, 48, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(155, 44, 44, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 42, 42, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 235, 200, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 211, 141, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 173, 85, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 137, 54, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(221, 107, 32, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(192, 86, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(156, 66, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-orange-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(123, 52, 30, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 252, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 240, 137, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 224, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(236, 201, 75, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 158, 46, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 121, 31, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 90, 22, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(116, 66, 16, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(240, 255, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(198, 246, 213, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(154, 230, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(104, 211, 145, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(72, 187, 120, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 161, 105, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(47, 133, 90, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(39, 103, 73, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(34, 84, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(230, 255, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(178, 245, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(129, 230, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(79, 209, 197, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(56, 178, 172, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 151, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 122, 123, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(40, 94, 97, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-teal-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 248, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(190, 227, 248, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(144, 205, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(99, 179, 237, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(66, 153, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(49, 130, 206, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(43, 108, 176, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(44, 82, 130, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(42, 67, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(235, 244, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(195, 218, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(163, 191, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(127, 156, 245, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(102, 126, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(90, 103, 216, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(76, 81, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(67, 65, 144, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(60, 54, 107, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(250, 245, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(233, 216, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(214, 188, 250, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(183, 148, 244, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(159, 122, 234, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(128, 90, 213, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(107, 70, 193, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(85, 60, 154, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-purple-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(68, 51, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-100:focus{ + --tw-bg-opacity: 1; + background-color: rgba(255, 245, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-200:focus{ + --tw-bg-opacity: 1; + background-color: rgba(254, 215, 226, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-300:focus{ + --tw-bg-opacity: 1; + background-color: rgba(251, 182, 206, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-400:focus{ + --tw-bg-opacity: 1; + background-color: rgba(246, 135, 179, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-500:focus{ + --tw-bg-opacity: 1; + background-color: rgba(237, 100, 166, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-600:focus{ + --tw-bg-opacity: 1; + background-color: rgba(213, 63, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-700:focus{ + --tw-bg-opacity: 1; + background-color: rgba(184, 50, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-800:focus{ + --tw-bg-opacity: 1; + background-color: rgba(151, 38, 109, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-pink-900:focus{ + --tw-bg-opacity: 1; + background-color: rgba(112, 36, 89, var(--tw-bg-opacity)); + } + + .\32xl\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .\32xl\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .\32xl\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .\32xl\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .\32xl\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .\32xl\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .\32xl\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .\32xl\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .\32xl\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .\32xl\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .\32xl\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .\32xl\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .\32xl\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .\32xl\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .\32xl\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-0{ + --tw-bg-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-5{ + --tw-bg-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-10{ + --tw-bg-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-20{ + --tw-bg-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-25{ + --tw-bg-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-30{ + --tw-bg-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-40{ + --tw-bg-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-50{ + --tw-bg-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-60{ + --tw-bg-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-70{ + --tw-bg-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-75{ + --tw-bg-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-80{ + --tw-bg-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-90{ + --tw-bg-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-95{ + --tw-bg-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-100{ + --tw-bg-opacity: 1; + } + + .\32xl\:focus-within\:bg-opacity-0:focus-within{ + --tw-bg-opacity: 0; + } + + .\32xl\:focus-within\:bg-opacity-5:focus-within{ + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus-within\:bg-opacity-10:focus-within{ + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus-within\:bg-opacity-20:focus-within{ + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus-within\:bg-opacity-25:focus-within{ + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus-within\:bg-opacity-30:focus-within{ + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus-within\:bg-opacity-40:focus-within{ + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus-within\:bg-opacity-50:focus-within{ + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus-within\:bg-opacity-60:focus-within{ + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus-within\:bg-opacity-70:focus-within{ + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus-within\:bg-opacity-75:focus-within{ + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus-within\:bg-opacity-80:focus-within{ + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus-within\:bg-opacity-90:focus-within{ + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus-within\:bg-opacity-95:focus-within{ + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus-within\:bg-opacity-100:focus-within{ + --tw-bg-opacity: 1; + } + + .\32xl\:hover\:bg-opacity-0:hover{ + --tw-bg-opacity: 0; + } + + .\32xl\:hover\:bg-opacity-5:hover{ + --tw-bg-opacity: 0.05; + } + + .\32xl\:hover\:bg-opacity-10:hover{ + --tw-bg-opacity: 0.1; + } + + .\32xl\:hover\:bg-opacity-20:hover{ + --tw-bg-opacity: 0.2; + } + + .\32xl\:hover\:bg-opacity-25:hover{ + --tw-bg-opacity: 0.25; + } + + .\32xl\:hover\:bg-opacity-30:hover{ + --tw-bg-opacity: 0.3; + } + + .\32xl\:hover\:bg-opacity-40:hover{ + --tw-bg-opacity: 0.4; + } + + .\32xl\:hover\:bg-opacity-50:hover{ + --tw-bg-opacity: 0.5; + } + + .\32xl\:hover\:bg-opacity-60:hover{ + --tw-bg-opacity: 0.6; + } + + .\32xl\:hover\:bg-opacity-70:hover{ + --tw-bg-opacity: 0.7; + } + + .\32xl\:hover\:bg-opacity-75:hover{ + --tw-bg-opacity: 0.75; + } + + .\32xl\:hover\:bg-opacity-80:hover{ + --tw-bg-opacity: 0.8; + } + + .\32xl\:hover\:bg-opacity-90:hover{ + --tw-bg-opacity: 0.9; + } + + .\32xl\:hover\:bg-opacity-95:hover{ + --tw-bg-opacity: 0.95; + } + + .\32xl\:hover\:bg-opacity-100:hover{ + --tw-bg-opacity: 1; + } + + .\32xl\:focus\:bg-opacity-0:focus{ + --tw-bg-opacity: 0; + } + + .\32xl\:focus\:bg-opacity-5:focus{ + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus\:bg-opacity-10:focus{ + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus\:bg-opacity-20:focus{ + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus\:bg-opacity-25:focus{ + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus\:bg-opacity-30:focus{ + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus\:bg-opacity-40:focus{ + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus\:bg-opacity-50:focus{ + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus\:bg-opacity-60:focus{ + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus\:bg-opacity-70:focus{ + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus\:bg-opacity-75:focus{ + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus\:bg-opacity-80:focus{ + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus\:bg-opacity-90:focus{ + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus\:bg-opacity-95:focus{ + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus\:bg-opacity-100:focus{ + --tw-bg-opacity: 1; + } + + .\32xl\:bg-none{ + background-image: none; + } + + .\32xl\:bg-gradient-to-t{ + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tr{ + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-r{ + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-br{ + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-b{ + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-bl{ + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-l{ + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tl{ + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .\32xl\:from-transparent{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-current{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-black{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-white{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-gray-100{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:from-gray-200{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:from-gray-300{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:from-gray-400{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:from-gray-500{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:from-gray-600{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:from-gray-700{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:from-gray-800{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:from-gray-900{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:from-red-100{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:from-red-200{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:from-red-300{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:from-red-400{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:from-red-500{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:from-red-600{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:from-red-700{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:from-red-800{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:from-red-900{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:from-orange-100{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:from-orange-200{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:from-orange-300{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:from-orange-400{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:from-orange-500{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:from-orange-600{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:from-orange-700{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:from-orange-800{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:from-orange-900{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:from-yellow-100{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:from-yellow-200{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:from-yellow-300{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:from-yellow-400{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:from-yellow-500{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:from-yellow-600{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:from-yellow-700{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:from-yellow-800{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:from-yellow-900{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:from-green-100{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:from-green-200{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:from-green-300{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:from-green-400{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:from-green-500{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:from-green-600{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:from-green-700{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:from-green-800{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:from-green-900{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:from-teal-100{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:from-teal-200{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:from-teal-300{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:from-teal-400{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:from-teal-500{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:from-teal-600{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:from-teal-700{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:from-teal-800{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:from-teal-900{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:from-blue-100{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:from-blue-200{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:from-blue-300{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:from-blue-400{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:from-blue-500{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:from-blue-600{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:from-blue-700{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:from-blue-800{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:from-blue-900{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:from-indigo-100{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:from-indigo-200{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:from-indigo-300{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:from-indigo-400{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:from-indigo-500{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:from-indigo-600{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:from-indigo-700{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:from-indigo-800{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:from-indigo-900{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:from-purple-100{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:from-purple-200{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:from-purple-300{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:from-purple-400{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:from-purple-500{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:from-purple-600{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:from-purple-700{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:from-purple-800{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:from-purple-900{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:from-pink-100{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:from-pink-200{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:from-pink-300{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:from-pink-400{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:from-pink-500{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:from-pink-600{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:from-pink-700{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:from-pink-800{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:from-pink-900{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:hover\:from-transparent:hover{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-current:hover{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-black:hover{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-white:hover{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-gray-100:hover{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:hover\:from-gray-200:hover{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:hover\:from-gray-300:hover{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:hover\:from-gray-400:hover{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:hover\:from-gray-500:hover{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:hover\:from-gray-600:hover{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:hover\:from-gray-700:hover{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:hover\:from-gray-800:hover{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:hover\:from-gray-900:hover{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:hover\:from-red-100:hover{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:hover\:from-red-200:hover{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:hover\:from-red-300:hover{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:hover\:from-red-400:hover{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:hover\:from-red-500:hover{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:hover\:from-red-600:hover{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:hover\:from-red-700:hover{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:hover\:from-red-800:hover{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:hover\:from-red-900:hover{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:hover\:from-orange-100:hover{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:hover\:from-orange-200:hover{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:hover\:from-orange-300:hover{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:hover\:from-orange-400:hover{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:hover\:from-orange-500:hover{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:hover\:from-orange-600:hover{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:hover\:from-orange-700:hover{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:hover\:from-orange-800:hover{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:hover\:from-orange-900:hover{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:hover\:from-yellow-100:hover{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:hover\:from-yellow-200:hover{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:hover\:from-yellow-300:hover{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:hover\:from-yellow-400:hover{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:hover\:from-yellow-500:hover{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:hover\:from-yellow-600:hover{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:hover\:from-yellow-700:hover{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:hover\:from-yellow-800:hover{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:hover\:from-yellow-900:hover{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:hover\:from-green-100:hover{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:hover\:from-green-200:hover{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:hover\:from-green-300:hover{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:hover\:from-green-400:hover{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:hover\:from-green-500:hover{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:hover\:from-green-600:hover{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:hover\:from-green-700:hover{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:hover\:from-green-800:hover{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:hover\:from-green-900:hover{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:hover\:from-teal-100:hover{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:hover\:from-teal-200:hover{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:hover\:from-teal-300:hover{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:hover\:from-teal-400:hover{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:hover\:from-teal-500:hover{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:hover\:from-teal-600:hover{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:hover\:from-teal-700:hover{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:hover\:from-teal-800:hover{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:hover\:from-teal-900:hover{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:hover\:from-blue-100:hover{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:hover\:from-blue-200:hover{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:hover\:from-blue-300:hover{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:hover\:from-blue-400:hover{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:hover\:from-blue-500:hover{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:hover\:from-blue-600:hover{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:hover\:from-blue-700:hover{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:hover\:from-blue-800:hover{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:hover\:from-blue-900:hover{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:hover\:from-indigo-100:hover{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:hover\:from-indigo-200:hover{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:hover\:from-indigo-300:hover{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:hover\:from-indigo-400:hover{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:hover\:from-indigo-500:hover{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:hover\:from-indigo-600:hover{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:hover\:from-indigo-700:hover{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:hover\:from-indigo-800:hover{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:hover\:from-indigo-900:hover{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:hover\:from-purple-100:hover{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:hover\:from-purple-200:hover{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:hover\:from-purple-300:hover{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:hover\:from-purple-400:hover{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:hover\:from-purple-500:hover{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:hover\:from-purple-600:hover{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:hover\:from-purple-700:hover{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:hover\:from-purple-800:hover{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:hover\:from-purple-900:hover{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:hover\:from-pink-100:hover{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:hover\:from-pink-200:hover{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:hover\:from-pink-300:hover{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:hover\:from-pink-400:hover{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:hover\:from-pink-500:hover{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:hover\:from-pink-600:hover{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:hover\:from-pink-700:hover{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:hover\:from-pink-800:hover{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:hover\:from-pink-900:hover{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:focus\:from-transparent:focus{ + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-current:focus{ + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-black:focus{ + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-white:focus{ + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-gray-100:focus{ + --tw-gradient-from: #f7fafc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:focus\:from-gray-200:focus{ + --tw-gradient-from: #edf2f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:focus\:from-gray-300:focus{ + --tw-gradient-from: #e2e8f0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:focus\:from-gray-400:focus{ + --tw-gradient-from: #cbd5e0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:focus\:from-gray-500:focus{ + --tw-gradient-from: #a0aec0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:focus\:from-gray-600:focus{ + --tw-gradient-from: #718096; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:focus\:from-gray-700:focus{ + --tw-gradient-from: #4a5568; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:focus\:from-gray-800:focus{ + --tw-gradient-from: #2d3748; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:focus\:from-gray-900:focus{ + --tw-gradient-from: #1a202c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:focus\:from-red-100:focus{ + --tw-gradient-from: #fff5f5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:focus\:from-red-200:focus{ + --tw-gradient-from: #fed7d7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:focus\:from-red-300:focus{ + --tw-gradient-from: #feb2b2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:focus\:from-red-400:focus{ + --tw-gradient-from: #fc8181; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:focus\:from-red-500:focus{ + --tw-gradient-from: #f56565; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:focus\:from-red-600:focus{ + --tw-gradient-from: #e53e3e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:focus\:from-red-700:focus{ + --tw-gradient-from: #c53030; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:focus\:from-red-800:focus{ + --tw-gradient-from: #9b2c2c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:focus\:from-red-900:focus{ + --tw-gradient-from: #742a2a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:focus\:from-orange-100:focus{ + --tw-gradient-from: #fffaf0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:focus\:from-orange-200:focus{ + --tw-gradient-from: #feebc8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:focus\:from-orange-300:focus{ + --tw-gradient-from: #fbd38d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:focus\:from-orange-400:focus{ + --tw-gradient-from: #f6ad55; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:focus\:from-orange-500:focus{ + --tw-gradient-from: #ed8936; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:focus\:from-orange-600:focus{ + --tw-gradient-from: #dd6b20; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:focus\:from-orange-700:focus{ + --tw-gradient-from: #c05621; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:focus\:from-orange-800:focus{ + --tw-gradient-from: #9c4221; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:focus\:from-orange-900:focus{ + --tw-gradient-from: #7b341e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:focus\:from-yellow-100:focus{ + --tw-gradient-from: #fffff0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:focus\:from-yellow-200:focus{ + --tw-gradient-from: #fefcbf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:focus\:from-yellow-300:focus{ + --tw-gradient-from: #faf089; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:focus\:from-yellow-400:focus{ + --tw-gradient-from: #f6e05e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:focus\:from-yellow-500:focus{ + --tw-gradient-from: #ecc94b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:focus\:from-yellow-600:focus{ + --tw-gradient-from: #d69e2e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:focus\:from-yellow-700:focus{ + --tw-gradient-from: #b7791f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:focus\:from-yellow-800:focus{ + --tw-gradient-from: #975a16; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:focus\:from-yellow-900:focus{ + --tw-gradient-from: #744210; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:focus\:from-green-100:focus{ + --tw-gradient-from: #f0fff4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:focus\:from-green-200:focus{ + --tw-gradient-from: #c6f6d5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:focus\:from-green-300:focus{ + --tw-gradient-from: #9ae6b4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:focus\:from-green-400:focus{ + --tw-gradient-from: #68d391; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:focus\:from-green-500:focus{ + --tw-gradient-from: #48bb78; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:focus\:from-green-600:focus{ + --tw-gradient-from: #38a169; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:focus\:from-green-700:focus{ + --tw-gradient-from: #2f855a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:focus\:from-green-800:focus{ + --tw-gradient-from: #276749; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:focus\:from-green-900:focus{ + --tw-gradient-from: #22543d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:focus\:from-teal-100:focus{ + --tw-gradient-from: #e6fffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:focus\:from-teal-200:focus{ + --tw-gradient-from: #b2f5ea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:focus\:from-teal-300:focus{ + --tw-gradient-from: #81e6d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:focus\:from-teal-400:focus{ + --tw-gradient-from: #4fd1c5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:focus\:from-teal-500:focus{ + --tw-gradient-from: #38b2ac; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:focus\:from-teal-600:focus{ + --tw-gradient-from: #319795; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:focus\:from-teal-700:focus{ + --tw-gradient-from: #2c7a7b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:focus\:from-teal-800:focus{ + --tw-gradient-from: #285e61; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:focus\:from-teal-900:focus{ + --tw-gradient-from: #234e52; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:focus\:from-blue-100:focus{ + --tw-gradient-from: #ebf8ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:focus\:from-blue-200:focus{ + --tw-gradient-from: #bee3f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:focus\:from-blue-300:focus{ + --tw-gradient-from: #90cdf4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:focus\:from-blue-400:focus{ + --tw-gradient-from: #63b3ed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:focus\:from-blue-500:focus{ + --tw-gradient-from: #4299e1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:focus\:from-blue-600:focus{ + --tw-gradient-from: #3182ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:focus\:from-blue-700:focus{ + --tw-gradient-from: #2b6cb0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:focus\:from-blue-800:focus{ + --tw-gradient-from: #2c5282; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:focus\:from-blue-900:focus{ + --tw-gradient-from: #2a4365; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:focus\:from-indigo-100:focus{ + --tw-gradient-from: #ebf4ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:focus\:from-indigo-200:focus{ + --tw-gradient-from: #c3dafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:focus\:from-indigo-300:focus{ + --tw-gradient-from: #a3bffa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:focus\:from-indigo-400:focus{ + --tw-gradient-from: #7f9cf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:focus\:from-indigo-500:focus{ + --tw-gradient-from: #667eea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:focus\:from-indigo-600:focus{ + --tw-gradient-from: #5a67d8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:focus\:from-indigo-700:focus{ + --tw-gradient-from: #4c51bf; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:focus\:from-indigo-800:focus{ + --tw-gradient-from: #434190; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:focus\:from-indigo-900:focus{ + --tw-gradient-from: #3c366b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:focus\:from-purple-100:focus{ + --tw-gradient-from: #faf5ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:focus\:from-purple-200:focus{ + --tw-gradient-from: #e9d8fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:focus\:from-purple-300:focus{ + --tw-gradient-from: #d6bcfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:focus\:from-purple-400:focus{ + --tw-gradient-from: #b794f4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:focus\:from-purple-500:focus{ + --tw-gradient-from: #9f7aea; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:focus\:from-purple-600:focus{ + --tw-gradient-from: #805ad5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:focus\:from-purple-700:focus{ + --tw-gradient-from: #6b46c1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:focus\:from-purple-800:focus{ + --tw-gradient-from: #553c9a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:focus\:from-purple-900:focus{ + --tw-gradient-from: #44337a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:focus\:from-pink-100:focus{ + --tw-gradient-from: #fff5f7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:focus\:from-pink-200:focus{ + --tw-gradient-from: #fed7e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:focus\:from-pink-300:focus{ + --tw-gradient-from: #fbb6ce; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:focus\:from-pink-400:focus{ + --tw-gradient-from: #f687b3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:focus\:from-pink-500:focus{ + --tw-gradient-from: #ed64a6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:focus\:from-pink-600:focus{ + --tw-gradient-from: #d53f8c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:focus\:from-pink-700:focus{ + --tw-gradient-from: #b83280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:focus\:from-pink-800:focus{ + --tw-gradient-from: #97266d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:focus\:from-pink-900:focus{ + --tw-gradient-from: #702459; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:via-transparent{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-current{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-black{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-gray-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:via-gray-200{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:via-gray-300{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:via-gray-400{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:via-gray-500{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:via-gray-600{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:via-gray-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:via-gray-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:via-gray-900{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:via-red-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:via-red-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:via-red-300{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:via-red-400{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:via-red-500{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:via-red-600{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:via-red-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:via-red-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:via-red-900{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:via-orange-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:via-orange-200{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:via-orange-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:via-orange-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:via-orange-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:via-orange-600{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:via-orange-700{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:via-orange-800{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:via-orange-900{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:via-yellow-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:via-yellow-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:via-yellow-300{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:via-yellow-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:via-yellow-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:via-yellow-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:via-yellow-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:via-yellow-800{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:via-yellow-900{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:via-green-100{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:via-green-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:via-green-300{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:via-green-400{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:via-green-500{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:via-green-600{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:via-green-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:via-green-800{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:via-green-900{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:via-teal-100{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:via-teal-200{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:via-teal-300{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:via-teal-400{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:via-teal-500{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:via-teal-600{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:via-teal-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:via-teal-800{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:via-teal-900{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:via-blue-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:via-blue-200{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:via-blue-300{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:via-blue-400{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:via-blue-500{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:via-blue-600{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:via-blue-700{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:via-blue-800{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:via-blue-900{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:via-indigo-100{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:via-indigo-200{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:via-indigo-300{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:via-indigo-400{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:via-indigo-500{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:via-indigo-600{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:via-indigo-700{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:via-indigo-800{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:via-indigo-900{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:via-purple-100{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:via-purple-200{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:via-purple-300{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:via-purple-400{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:via-purple-500{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:via-purple-600{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:via-purple-700{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:via-purple-800{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:via-purple-900{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:via-pink-100{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:via-pink-200{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:via-pink-300{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:via-pink-400{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:via-pink-500{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:via-pink-600{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:via-pink-700{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:via-pink-800{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:via-pink-900{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:hover\:via-transparent:hover{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-current:hover{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-black:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-white:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-gray-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:hover\:via-gray-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:hover\:via-gray-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:hover\:via-gray-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:hover\:via-gray-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:hover\:via-gray-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:hover\:via-gray-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:hover\:via-gray-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:hover\:via-gray-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:hover\:via-red-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:hover\:via-red-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:hover\:via-red-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:hover\:via-red-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:hover\:via-red-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:hover\:via-red-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:hover\:via-red-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:hover\:via-red-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:hover\:via-red-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:hover\:via-orange-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:hover\:via-orange-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:hover\:via-orange-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:hover\:via-orange-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:hover\:via-orange-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:hover\:via-orange-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:hover\:via-orange-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:hover\:via-orange-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:hover\:via-orange-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:hover\:via-yellow-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:hover\:via-yellow-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:hover\:via-yellow-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:hover\:via-yellow-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:hover\:via-yellow-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:hover\:via-yellow-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:hover\:via-yellow-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:hover\:via-yellow-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:hover\:via-yellow-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:hover\:via-green-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:hover\:via-green-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:hover\:via-green-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:hover\:via-green-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:hover\:via-green-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:hover\:via-green-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:hover\:via-green-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:hover\:via-green-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:hover\:via-green-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:hover\:via-teal-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:hover\:via-teal-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:hover\:via-teal-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:hover\:via-teal-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:hover\:via-teal-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:hover\:via-teal-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:hover\:via-teal-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:hover\:via-teal-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:hover\:via-teal-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:hover\:via-blue-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:hover\:via-blue-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:hover\:via-blue-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:hover\:via-blue-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:hover\:via-blue-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:hover\:via-blue-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:hover\:via-blue-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:hover\:via-blue-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:hover\:via-blue-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:hover\:via-indigo-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:hover\:via-indigo-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:hover\:via-indigo-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:hover\:via-indigo-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:hover\:via-indigo-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:hover\:via-indigo-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:hover\:via-indigo-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:hover\:via-indigo-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:hover\:via-indigo-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:hover\:via-purple-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:hover\:via-purple-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:hover\:via-purple-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:hover\:via-purple-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:hover\:via-purple-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:hover\:via-purple-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:hover\:via-purple-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:hover\:via-purple-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:hover\:via-purple-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:hover\:via-pink-100:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:hover\:via-pink-200:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:hover\:via-pink-300:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:hover\:via-pink-400:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:hover\:via-pink-500:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:hover\:via-pink-600:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:hover\:via-pink-700:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:hover\:via-pink-800:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:hover\:via-pink-900:hover{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:focus\:via-transparent:focus{ + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-current:focus{ + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-black:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-white:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-gray-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f7fafc, var(--tw-gradient-to, rgba(247, 250, 252, 0)); + } + + .\32xl\:focus\:via-gray-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #edf2f7, var(--tw-gradient-to, rgba(237, 242, 247, 0)); + } + + .\32xl\:focus\:via-gray-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226, 232, 240, 0)); + } + + .\32xl\:focus\:via-gray-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #cbd5e0, var(--tw-gradient-to, rgba(203, 213, 224, 0)); + } + + .\32xl\:focus\:via-gray-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a0aec0, var(--tw-gradient-to, rgba(160, 174, 192, 0)); + } + + .\32xl\:focus\:via-gray-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #718096, var(--tw-gradient-to, rgba(113, 128, 150, 0)); + } + + .\32xl\:focus\:via-gray-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4a5568, var(--tw-gradient-to, rgba(74, 85, 104, 0)); + } + + .\32xl\:focus\:via-gray-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2d3748, var(--tw-gradient-to, rgba(45, 55, 72, 0)); + } + + .\32xl\:focus\:via-gray-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #1a202c, var(--tw-gradient-to, rgba(26, 32, 44, 0)); + } + + .\32xl\:focus\:via-red-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f5, var(--tw-gradient-to, rgba(255, 245, 245, 0)); + } + + .\32xl\:focus\:via-red-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7d7, var(--tw-gradient-to, rgba(254, 215, 215, 0)); + } + + .\32xl\:focus\:via-red-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feb2b2, var(--tw-gradient-to, rgba(254, 178, 178, 0)); + } + + .\32xl\:focus\:via-red-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fc8181, var(--tw-gradient-to, rgba(252, 129, 129, 0)); + } + + .\32xl\:focus\:via-red-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f56565, var(--tw-gradient-to, rgba(245, 101, 101, 0)); + } + + .\32xl\:focus\:via-red-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e53e3e, var(--tw-gradient-to, rgba(229, 62, 62, 0)); + } + + .\32xl\:focus\:via-red-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c53030, var(--tw-gradient-to, rgba(197, 48, 48, 0)); + } + + .\32xl\:focus\:via-red-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9b2c2c, var(--tw-gradient-to, rgba(155, 44, 44, 0)); + } + + .\32xl\:focus\:via-red-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #742a2a, var(--tw-gradient-to, rgba(116, 42, 42, 0)); + } + + .\32xl\:focus\:via-orange-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffaf0, var(--tw-gradient-to, rgba(255, 250, 240, 0)); + } + + .\32xl\:focus\:via-orange-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #feebc8, var(--tw-gradient-to, rgba(254, 235, 200, 0)); + } + + .\32xl\:focus\:via-orange-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbd38d, var(--tw-gradient-to, rgba(251, 211, 141, 0)); + } + + .\32xl\:focus\:via-orange-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6ad55, var(--tw-gradient-to, rgba(246, 173, 85, 0)); + } + + .\32xl\:focus\:via-orange-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed8936, var(--tw-gradient-to, rgba(237, 137, 54, 0)); + } + + .\32xl\:focus\:via-orange-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #dd6b20, var(--tw-gradient-to, rgba(221, 107, 32, 0)); + } + + .\32xl\:focus\:via-orange-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c05621, var(--tw-gradient-to, rgba(192, 86, 33, 0)); + } + + .\32xl\:focus\:via-orange-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9c4221, var(--tw-gradient-to, rgba(156, 66, 33, 0)); + } + + .\32xl\:focus\:via-orange-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7b341e, var(--tw-gradient-to, rgba(123, 52, 30, 0)); + } + + .\32xl\:focus\:via-yellow-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fffff0, var(--tw-gradient-to, rgba(255, 255, 240, 0)); + } + + .\32xl\:focus\:via-yellow-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fefcbf, var(--tw-gradient-to, rgba(254, 252, 191, 0)); + } + + .\32xl\:focus\:via-yellow-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf089, var(--tw-gradient-to, rgba(250, 240, 137, 0)); + } + + .\32xl\:focus\:via-yellow-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f6e05e, var(--tw-gradient-to, rgba(246, 224, 94, 0)); + } + + .\32xl\:focus\:via-yellow-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ecc94b, var(--tw-gradient-to, rgba(236, 201, 75, 0)); + } + + .\32xl\:focus\:via-yellow-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d69e2e, var(--tw-gradient-to, rgba(214, 158, 46, 0)); + } + + .\32xl\:focus\:via-yellow-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b7791f, var(--tw-gradient-to, rgba(183, 121, 31, 0)); + } + + .\32xl\:focus\:via-yellow-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #975a16, var(--tw-gradient-to, rgba(151, 90, 22, 0)); + } + + .\32xl\:focus\:via-yellow-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #744210, var(--tw-gradient-to, rgba(116, 66, 16, 0)); + } + + .\32xl\:focus\:via-green-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f0fff4, var(--tw-gradient-to, rgba(240, 255, 244, 0)); + } + + .\32xl\:focus\:via-green-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c6f6d5, var(--tw-gradient-to, rgba(198, 246, 213, 0)); + } + + .\32xl\:focus\:via-green-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9ae6b4, var(--tw-gradient-to, rgba(154, 230, 180, 0)); + } + + .\32xl\:focus\:via-green-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #68d391, var(--tw-gradient-to, rgba(104, 211, 145, 0)); + } + + .\32xl\:focus\:via-green-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #48bb78, var(--tw-gradient-to, rgba(72, 187, 120, 0)); + } + + .\32xl\:focus\:via-green-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38a169, var(--tw-gradient-to, rgba(56, 161, 105, 0)); + } + + .\32xl\:focus\:via-green-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2f855a, var(--tw-gradient-to, rgba(47, 133, 90, 0)); + } + + .\32xl\:focus\:via-green-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #276749, var(--tw-gradient-to, rgba(39, 103, 73, 0)); + } + + .\32xl\:focus\:via-green-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #22543d, var(--tw-gradient-to, rgba(34, 84, 61, 0)); + } + + .\32xl\:focus\:via-teal-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e6fffa, var(--tw-gradient-to, rgba(230, 255, 250, 0)); + } + + .\32xl\:focus\:via-teal-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b2f5ea, var(--tw-gradient-to, rgba(178, 245, 234, 0)); + } + + .\32xl\:focus\:via-teal-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #81e6d9, var(--tw-gradient-to, rgba(129, 230, 217, 0)); + } + + .\32xl\:focus\:via-teal-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4fd1c5, var(--tw-gradient-to, rgba(79, 209, 197, 0)); + } + + .\32xl\:focus\:via-teal-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #38b2ac, var(--tw-gradient-to, rgba(56, 178, 172, 0)); + } + + .\32xl\:focus\:via-teal-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #319795, var(--tw-gradient-to, rgba(49, 151, 149, 0)); + } + + .\32xl\:focus\:via-teal-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c7a7b, var(--tw-gradient-to, rgba(44, 122, 123, 0)); + } + + .\32xl\:focus\:via-teal-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #285e61, var(--tw-gradient-to, rgba(40, 94, 97, 0)); + } + + .\32xl\:focus\:via-teal-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #234e52, var(--tw-gradient-to, rgba(35, 78, 82, 0)); + } + + .\32xl\:focus\:via-blue-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf8ff, var(--tw-gradient-to, rgba(235, 248, 255, 0)); + } + + .\32xl\:focus\:via-blue-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #bee3f8, var(--tw-gradient-to, rgba(190, 227, 248, 0)); + } + + .\32xl\:focus\:via-blue-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #90cdf4, var(--tw-gradient-to, rgba(144, 205, 244, 0)); + } + + .\32xl\:focus\:via-blue-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #63b3ed, var(--tw-gradient-to, rgba(99, 179, 237, 0)); + } + + .\32xl\:focus\:via-blue-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4299e1, var(--tw-gradient-to, rgba(66, 153, 225, 0)); + } + + .\32xl\:focus\:via-blue-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3182ce, var(--tw-gradient-to, rgba(49, 130, 206, 0)); + } + + .\32xl\:focus\:via-blue-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2b6cb0, var(--tw-gradient-to, rgba(43, 108, 176, 0)); + } + + .\32xl\:focus\:via-blue-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2c5282, var(--tw-gradient-to, rgba(44, 82, 130, 0)); + } + + .\32xl\:focus\:via-blue-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #2a4365, var(--tw-gradient-to, rgba(42, 67, 101, 0)); + } + + .\32xl\:focus\:via-indigo-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ebf4ff, var(--tw-gradient-to, rgba(235, 244, 255, 0)); + } + + .\32xl\:focus\:via-indigo-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #c3dafe, var(--tw-gradient-to, rgba(195, 218, 254, 0)); + } + + .\32xl\:focus\:via-indigo-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #a3bffa, var(--tw-gradient-to, rgba(163, 191, 250, 0)); + } + + .\32xl\:focus\:via-indigo-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #7f9cf5, var(--tw-gradient-to, rgba(127, 156, 245, 0)); + } + + .\32xl\:focus\:via-indigo-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #667eea, var(--tw-gradient-to, rgba(102, 126, 234, 0)); + } + + .\32xl\:focus\:via-indigo-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #5a67d8, var(--tw-gradient-to, rgba(90, 103, 216, 0)); + } + + .\32xl\:focus\:via-indigo-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #4c51bf, var(--tw-gradient-to, rgba(76, 81, 191, 0)); + } + + .\32xl\:focus\:via-indigo-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #434190, var(--tw-gradient-to, rgba(67, 65, 144, 0)); + } + + .\32xl\:focus\:via-indigo-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #3c366b, var(--tw-gradient-to, rgba(60, 54, 107, 0)); + } + + .\32xl\:focus\:via-purple-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0)); + } + + .\32xl\:focus\:via-purple-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #e9d8fd, var(--tw-gradient-to, rgba(233, 216, 253, 0)); + } + + .\32xl\:focus\:via-purple-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d6bcfa, var(--tw-gradient-to, rgba(214, 188, 250, 0)); + } + + .\32xl\:focus\:via-purple-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b794f4, var(--tw-gradient-to, rgba(183, 148, 244, 0)); + } + + .\32xl\:focus\:via-purple-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #9f7aea, var(--tw-gradient-to, rgba(159, 122, 234, 0)); + } + + .\32xl\:focus\:via-purple-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #805ad5, var(--tw-gradient-to, rgba(128, 90, 213, 0)); + } + + .\32xl\:focus\:via-purple-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #6b46c1, var(--tw-gradient-to, rgba(107, 70, 193, 0)); + } + + .\32xl\:focus\:via-purple-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #553c9a, var(--tw-gradient-to, rgba(85, 60, 154, 0)); + } + + .\32xl\:focus\:via-purple-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #44337a, var(--tw-gradient-to, rgba(68, 51, 122, 0)); + } + + .\32xl\:focus\:via-pink-100:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fff5f7, var(--tw-gradient-to, rgba(255, 245, 247, 0)); + } + + .\32xl\:focus\:via-pink-200:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fed7e2, var(--tw-gradient-to, rgba(254, 215, 226, 0)); + } + + .\32xl\:focus\:via-pink-300:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #fbb6ce, var(--tw-gradient-to, rgba(251, 182, 206, 0)); + } + + .\32xl\:focus\:via-pink-400:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #f687b3, var(--tw-gradient-to, rgba(246, 135, 179, 0)); + } + + .\32xl\:focus\:via-pink-500:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #ed64a6, var(--tw-gradient-to, rgba(237, 100, 166, 0)); + } + + .\32xl\:focus\:via-pink-600:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #d53f8c, var(--tw-gradient-to, rgba(213, 63, 140, 0)); + } + + .\32xl\:focus\:via-pink-700:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #b83280, var(--tw-gradient-to, rgba(184, 50, 128, 0)); + } + + .\32xl\:focus\:via-pink-800:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #97266d, var(--tw-gradient-to, rgba(151, 38, 109, 0)); + } + + .\32xl\:focus\:via-pink-900:focus{ + --tw-gradient-stops: var(--tw-gradient-from), #702459, var(--tw-gradient-to, rgba(112, 36, 89, 0)); + } + + .\32xl\:to-transparent{ + --tw-gradient-to: transparent; + } + + .\32xl\:to-current{ + --tw-gradient-to: currentColor; + } + + .\32xl\:to-black{ + --tw-gradient-to: #000; + } + + .\32xl\:to-white{ + --tw-gradient-to: #fff; + } + + .\32xl\:to-gray-100{ + --tw-gradient-to: #f7fafc; + } + + .\32xl\:to-gray-200{ + --tw-gradient-to: #edf2f7; + } + + .\32xl\:to-gray-300{ + --tw-gradient-to: #e2e8f0; + } + + .\32xl\:to-gray-400{ + --tw-gradient-to: #cbd5e0; + } + + .\32xl\:to-gray-500{ + --tw-gradient-to: #a0aec0; + } + + .\32xl\:to-gray-600{ + --tw-gradient-to: #718096; + } + + .\32xl\:to-gray-700{ + --tw-gradient-to: #4a5568; + } + + .\32xl\:to-gray-800{ + --tw-gradient-to: #2d3748; + } + + .\32xl\:to-gray-900{ + --tw-gradient-to: #1a202c; + } + + .\32xl\:to-red-100{ + --tw-gradient-to: #fff5f5; + } + + .\32xl\:to-red-200{ + --tw-gradient-to: #fed7d7; + } + + .\32xl\:to-red-300{ + --tw-gradient-to: #feb2b2; + } + + .\32xl\:to-red-400{ + --tw-gradient-to: #fc8181; + } + + .\32xl\:to-red-500{ + --tw-gradient-to: #f56565; + } + + .\32xl\:to-red-600{ + --tw-gradient-to: #e53e3e; + } + + .\32xl\:to-red-700{ + --tw-gradient-to: #c53030; + } + + .\32xl\:to-red-800{ + --tw-gradient-to: #9b2c2c; + } + + .\32xl\:to-red-900{ + --tw-gradient-to: #742a2a; + } + + .\32xl\:to-orange-100{ + --tw-gradient-to: #fffaf0; + } + + .\32xl\:to-orange-200{ + --tw-gradient-to: #feebc8; + } + + .\32xl\:to-orange-300{ + --tw-gradient-to: #fbd38d; + } + + .\32xl\:to-orange-400{ + --tw-gradient-to: #f6ad55; + } + + .\32xl\:to-orange-500{ + --tw-gradient-to: #ed8936; + } + + .\32xl\:to-orange-600{ + --tw-gradient-to: #dd6b20; + } + + .\32xl\:to-orange-700{ + --tw-gradient-to: #c05621; + } + + .\32xl\:to-orange-800{ + --tw-gradient-to: #9c4221; + } + + .\32xl\:to-orange-900{ + --tw-gradient-to: #7b341e; + } + + .\32xl\:to-yellow-100{ + --tw-gradient-to: #fffff0; + } + + .\32xl\:to-yellow-200{ + --tw-gradient-to: #fefcbf; + } + + .\32xl\:to-yellow-300{ + --tw-gradient-to: #faf089; + } + + .\32xl\:to-yellow-400{ + --tw-gradient-to: #f6e05e; + } + + .\32xl\:to-yellow-500{ + --tw-gradient-to: #ecc94b; + } + + .\32xl\:to-yellow-600{ + --tw-gradient-to: #d69e2e; + } + + .\32xl\:to-yellow-700{ + --tw-gradient-to: #b7791f; + } + + .\32xl\:to-yellow-800{ + --tw-gradient-to: #975a16; + } + + .\32xl\:to-yellow-900{ + --tw-gradient-to: #744210; + } + + .\32xl\:to-green-100{ + --tw-gradient-to: #f0fff4; + } + + .\32xl\:to-green-200{ + --tw-gradient-to: #c6f6d5; + } + + .\32xl\:to-green-300{ + --tw-gradient-to: #9ae6b4; + } + + .\32xl\:to-green-400{ + --tw-gradient-to: #68d391; + } + + .\32xl\:to-green-500{ + --tw-gradient-to: #48bb78; + } + + .\32xl\:to-green-600{ + --tw-gradient-to: #38a169; + } + + .\32xl\:to-green-700{ + --tw-gradient-to: #2f855a; + } + + .\32xl\:to-green-800{ + --tw-gradient-to: #276749; + } + + .\32xl\:to-green-900{ + --tw-gradient-to: #22543d; + } + + .\32xl\:to-teal-100{ + --tw-gradient-to: #e6fffa; + } + + .\32xl\:to-teal-200{ + --tw-gradient-to: #b2f5ea; + } + + .\32xl\:to-teal-300{ + --tw-gradient-to: #81e6d9; + } + + .\32xl\:to-teal-400{ + --tw-gradient-to: #4fd1c5; + } + + .\32xl\:to-teal-500{ + --tw-gradient-to: #38b2ac; + } + + .\32xl\:to-teal-600{ + --tw-gradient-to: #319795; + } + + .\32xl\:to-teal-700{ + --tw-gradient-to: #2c7a7b; + } + + .\32xl\:to-teal-800{ + --tw-gradient-to: #285e61; + } + + .\32xl\:to-teal-900{ + --tw-gradient-to: #234e52; + } + + .\32xl\:to-blue-100{ + --tw-gradient-to: #ebf8ff; + } + + .\32xl\:to-blue-200{ + --tw-gradient-to: #bee3f8; + } + + .\32xl\:to-blue-300{ + --tw-gradient-to: #90cdf4; + } + + .\32xl\:to-blue-400{ + --tw-gradient-to: #63b3ed; + } + + .\32xl\:to-blue-500{ + --tw-gradient-to: #4299e1; + } + + .\32xl\:to-blue-600{ + --tw-gradient-to: #3182ce; + } + + .\32xl\:to-blue-700{ + --tw-gradient-to: #2b6cb0; + } + + .\32xl\:to-blue-800{ + --tw-gradient-to: #2c5282; + } + + .\32xl\:to-blue-900{ + --tw-gradient-to: #2a4365; + } + + .\32xl\:to-indigo-100{ + --tw-gradient-to: #ebf4ff; + } + + .\32xl\:to-indigo-200{ + --tw-gradient-to: #c3dafe; + } + + .\32xl\:to-indigo-300{ + --tw-gradient-to: #a3bffa; + } + + .\32xl\:to-indigo-400{ + --tw-gradient-to: #7f9cf5; + } + + .\32xl\:to-indigo-500{ + --tw-gradient-to: #667eea; + } + + .\32xl\:to-indigo-600{ + --tw-gradient-to: #5a67d8; + } + + .\32xl\:to-indigo-700{ + --tw-gradient-to: #4c51bf; + } + + .\32xl\:to-indigo-800{ + --tw-gradient-to: #434190; + } + + .\32xl\:to-indigo-900{ + --tw-gradient-to: #3c366b; + } + + .\32xl\:to-purple-100{ + --tw-gradient-to: #faf5ff; + } + + .\32xl\:to-purple-200{ + --tw-gradient-to: #e9d8fd; + } + + .\32xl\:to-purple-300{ + --tw-gradient-to: #d6bcfa; + } + + .\32xl\:to-purple-400{ + --tw-gradient-to: #b794f4; + } + + .\32xl\:to-purple-500{ + --tw-gradient-to: #9f7aea; + } + + .\32xl\:to-purple-600{ + --tw-gradient-to: #805ad5; + } + + .\32xl\:to-purple-700{ + --tw-gradient-to: #6b46c1; + } + + .\32xl\:to-purple-800{ + --tw-gradient-to: #553c9a; + } + + .\32xl\:to-purple-900{ + --tw-gradient-to: #44337a; + } + + .\32xl\:to-pink-100{ + --tw-gradient-to: #fff5f7; + } + + .\32xl\:to-pink-200{ + --tw-gradient-to: #fed7e2; + } + + .\32xl\:to-pink-300{ + --tw-gradient-to: #fbb6ce; + } + + .\32xl\:to-pink-400{ + --tw-gradient-to: #f687b3; + } + + .\32xl\:to-pink-500{ + --tw-gradient-to: #ed64a6; + } + + .\32xl\:to-pink-600{ + --tw-gradient-to: #d53f8c; + } + + .\32xl\:to-pink-700{ + --tw-gradient-to: #b83280; + } + + .\32xl\:to-pink-800{ + --tw-gradient-to: #97266d; + } + + .\32xl\:to-pink-900{ + --tw-gradient-to: #702459; + } + + .\32xl\:hover\:to-transparent:hover{ + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-current:hover{ + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-black:hover{ + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover{ + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-gray-100:hover{ + --tw-gradient-to: #f7fafc; + } + + .\32xl\:hover\:to-gray-200:hover{ + --tw-gradient-to: #edf2f7; + } + + .\32xl\:hover\:to-gray-300:hover{ + --tw-gradient-to: #e2e8f0; + } + + .\32xl\:hover\:to-gray-400:hover{ + --tw-gradient-to: #cbd5e0; + } + + .\32xl\:hover\:to-gray-500:hover{ + --tw-gradient-to: #a0aec0; + } + + .\32xl\:hover\:to-gray-600:hover{ + --tw-gradient-to: #718096; + } + + .\32xl\:hover\:to-gray-700:hover{ + --tw-gradient-to: #4a5568; + } + + .\32xl\:hover\:to-gray-800:hover{ + --tw-gradient-to: #2d3748; + } + + .\32xl\:hover\:to-gray-900:hover{ + --tw-gradient-to: #1a202c; + } + + .\32xl\:hover\:to-red-100:hover{ + --tw-gradient-to: #fff5f5; + } + + .\32xl\:hover\:to-red-200:hover{ + --tw-gradient-to: #fed7d7; + } + + .\32xl\:hover\:to-red-300:hover{ + --tw-gradient-to: #feb2b2; + } + + .\32xl\:hover\:to-red-400:hover{ + --tw-gradient-to: #fc8181; + } + + .\32xl\:hover\:to-red-500:hover{ + --tw-gradient-to: #f56565; + } + + .\32xl\:hover\:to-red-600:hover{ + --tw-gradient-to: #e53e3e; + } + + .\32xl\:hover\:to-red-700:hover{ + --tw-gradient-to: #c53030; + } + + .\32xl\:hover\:to-red-800:hover{ + --tw-gradient-to: #9b2c2c; + } + + .\32xl\:hover\:to-red-900:hover{ + --tw-gradient-to: #742a2a; + } + + .\32xl\:hover\:to-orange-100:hover{ + --tw-gradient-to: #fffaf0; + } + + .\32xl\:hover\:to-orange-200:hover{ + --tw-gradient-to: #feebc8; + } + + .\32xl\:hover\:to-orange-300:hover{ + --tw-gradient-to: #fbd38d; + } + + .\32xl\:hover\:to-orange-400:hover{ + --tw-gradient-to: #f6ad55; + } + + .\32xl\:hover\:to-orange-500:hover{ + --tw-gradient-to: #ed8936; + } + + .\32xl\:hover\:to-orange-600:hover{ + --tw-gradient-to: #dd6b20; + } + + .\32xl\:hover\:to-orange-700:hover{ + --tw-gradient-to: #c05621; + } + + .\32xl\:hover\:to-orange-800:hover{ + --tw-gradient-to: #9c4221; + } + + .\32xl\:hover\:to-orange-900:hover{ + --tw-gradient-to: #7b341e; + } + + .\32xl\:hover\:to-yellow-100:hover{ + --tw-gradient-to: #fffff0; + } + + .\32xl\:hover\:to-yellow-200:hover{ + --tw-gradient-to: #fefcbf; + } + + .\32xl\:hover\:to-yellow-300:hover{ + --tw-gradient-to: #faf089; + } + + .\32xl\:hover\:to-yellow-400:hover{ + --tw-gradient-to: #f6e05e; + } + + .\32xl\:hover\:to-yellow-500:hover{ + --tw-gradient-to: #ecc94b; + } + + .\32xl\:hover\:to-yellow-600:hover{ + --tw-gradient-to: #d69e2e; + } + + .\32xl\:hover\:to-yellow-700:hover{ + --tw-gradient-to: #b7791f; + } + + .\32xl\:hover\:to-yellow-800:hover{ + --tw-gradient-to: #975a16; + } + + .\32xl\:hover\:to-yellow-900:hover{ + --tw-gradient-to: #744210; + } + + .\32xl\:hover\:to-green-100:hover{ + --tw-gradient-to: #f0fff4; + } + + .\32xl\:hover\:to-green-200:hover{ + --tw-gradient-to: #c6f6d5; + } + + .\32xl\:hover\:to-green-300:hover{ + --tw-gradient-to: #9ae6b4; + } + + .\32xl\:hover\:to-green-400:hover{ + --tw-gradient-to: #68d391; + } + + .\32xl\:hover\:to-green-500:hover{ + --tw-gradient-to: #48bb78; + } + + .\32xl\:hover\:to-green-600:hover{ + --tw-gradient-to: #38a169; + } + + .\32xl\:hover\:to-green-700:hover{ + --tw-gradient-to: #2f855a; + } + + .\32xl\:hover\:to-green-800:hover{ + --tw-gradient-to: #276749; + } + + .\32xl\:hover\:to-green-900:hover{ + --tw-gradient-to: #22543d; + } + + .\32xl\:hover\:to-teal-100:hover{ + --tw-gradient-to: #e6fffa; + } + + .\32xl\:hover\:to-teal-200:hover{ + --tw-gradient-to: #b2f5ea; + } + + .\32xl\:hover\:to-teal-300:hover{ + --tw-gradient-to: #81e6d9; + } + + .\32xl\:hover\:to-teal-400:hover{ + --tw-gradient-to: #4fd1c5; + } + + .\32xl\:hover\:to-teal-500:hover{ + --tw-gradient-to: #38b2ac; + } + + .\32xl\:hover\:to-teal-600:hover{ + --tw-gradient-to: #319795; + } + + .\32xl\:hover\:to-teal-700:hover{ + --tw-gradient-to: #2c7a7b; + } + + .\32xl\:hover\:to-teal-800:hover{ + --tw-gradient-to: #285e61; + } + + .\32xl\:hover\:to-teal-900:hover{ + --tw-gradient-to: #234e52; + } + + .\32xl\:hover\:to-blue-100:hover{ + --tw-gradient-to: #ebf8ff; + } + + .\32xl\:hover\:to-blue-200:hover{ + --tw-gradient-to: #bee3f8; + } + + .\32xl\:hover\:to-blue-300:hover{ + --tw-gradient-to: #90cdf4; + } + + .\32xl\:hover\:to-blue-400:hover{ + --tw-gradient-to: #63b3ed; + } + + .\32xl\:hover\:to-blue-500:hover{ + --tw-gradient-to: #4299e1; + } + + .\32xl\:hover\:to-blue-600:hover{ + --tw-gradient-to: #3182ce; + } + + .\32xl\:hover\:to-blue-700:hover{ + --tw-gradient-to: #2b6cb0; + } + + .\32xl\:hover\:to-blue-800:hover{ + --tw-gradient-to: #2c5282; + } + + .\32xl\:hover\:to-blue-900:hover{ + --tw-gradient-to: #2a4365; + } + + .\32xl\:hover\:to-indigo-100:hover{ + --tw-gradient-to: #ebf4ff; + } + + .\32xl\:hover\:to-indigo-200:hover{ + --tw-gradient-to: #c3dafe; + } + + .\32xl\:hover\:to-indigo-300:hover{ + --tw-gradient-to: #a3bffa; + } + + .\32xl\:hover\:to-indigo-400:hover{ + --tw-gradient-to: #7f9cf5; + } + + .\32xl\:hover\:to-indigo-500:hover{ + --tw-gradient-to: #667eea; + } + + .\32xl\:hover\:to-indigo-600:hover{ + --tw-gradient-to: #5a67d8; + } + + .\32xl\:hover\:to-indigo-700:hover{ + --tw-gradient-to: #4c51bf; + } + + .\32xl\:hover\:to-indigo-800:hover{ + --tw-gradient-to: #434190; + } + + .\32xl\:hover\:to-indigo-900:hover{ + --tw-gradient-to: #3c366b; + } + + .\32xl\:hover\:to-purple-100:hover{ + --tw-gradient-to: #faf5ff; + } + + .\32xl\:hover\:to-purple-200:hover{ + --tw-gradient-to: #e9d8fd; + } + + .\32xl\:hover\:to-purple-300:hover{ + --tw-gradient-to: #d6bcfa; + } + + .\32xl\:hover\:to-purple-400:hover{ + --tw-gradient-to: #b794f4; + } + + .\32xl\:hover\:to-purple-500:hover{ + --tw-gradient-to: #9f7aea; + } + + .\32xl\:hover\:to-purple-600:hover{ + --tw-gradient-to: #805ad5; + } + + .\32xl\:hover\:to-purple-700:hover{ + --tw-gradient-to: #6b46c1; + } + + .\32xl\:hover\:to-purple-800:hover{ + --tw-gradient-to: #553c9a; + } + + .\32xl\:hover\:to-purple-900:hover{ + --tw-gradient-to: #44337a; + } + + .\32xl\:hover\:to-pink-100:hover{ + --tw-gradient-to: #fff5f7; + } + + .\32xl\:hover\:to-pink-200:hover{ + --tw-gradient-to: #fed7e2; + } + + .\32xl\:hover\:to-pink-300:hover{ + --tw-gradient-to: #fbb6ce; + } + + .\32xl\:hover\:to-pink-400:hover{ + --tw-gradient-to: #f687b3; + } + + .\32xl\:hover\:to-pink-500:hover{ + --tw-gradient-to: #ed64a6; + } + + .\32xl\:hover\:to-pink-600:hover{ + --tw-gradient-to: #d53f8c; + } + + .\32xl\:hover\:to-pink-700:hover{ + --tw-gradient-to: #b83280; + } + + .\32xl\:hover\:to-pink-800:hover{ + --tw-gradient-to: #97266d; + } + + .\32xl\:hover\:to-pink-900:hover{ + --tw-gradient-to: #702459; + } + + .\32xl\:focus\:to-transparent:focus{ + --tw-gradient-to: transparent; + } + + .\32xl\:focus\:to-current:focus{ + --tw-gradient-to: currentColor; + } + + .\32xl\:focus\:to-black:focus{ + --tw-gradient-to: #000; + } + + .\32xl\:focus\:to-white:focus{ + --tw-gradient-to: #fff; + } + + .\32xl\:focus\:to-gray-100:focus{ + --tw-gradient-to: #f7fafc; + } + + .\32xl\:focus\:to-gray-200:focus{ + --tw-gradient-to: #edf2f7; + } + + .\32xl\:focus\:to-gray-300:focus{ + --tw-gradient-to: #e2e8f0; + } + + .\32xl\:focus\:to-gray-400:focus{ + --tw-gradient-to: #cbd5e0; + } + + .\32xl\:focus\:to-gray-500:focus{ + --tw-gradient-to: #a0aec0; + } + + .\32xl\:focus\:to-gray-600:focus{ + --tw-gradient-to: #718096; + } + + .\32xl\:focus\:to-gray-700:focus{ + --tw-gradient-to: #4a5568; + } + + .\32xl\:focus\:to-gray-800:focus{ + --tw-gradient-to: #2d3748; + } + + .\32xl\:focus\:to-gray-900:focus{ + --tw-gradient-to: #1a202c; + } + + .\32xl\:focus\:to-red-100:focus{ + --tw-gradient-to: #fff5f5; + } + + .\32xl\:focus\:to-red-200:focus{ + --tw-gradient-to: #fed7d7; + } + + .\32xl\:focus\:to-red-300:focus{ + --tw-gradient-to: #feb2b2; + } + + .\32xl\:focus\:to-red-400:focus{ + --tw-gradient-to: #fc8181; + } + + .\32xl\:focus\:to-red-500:focus{ + --tw-gradient-to: #f56565; + } + + .\32xl\:focus\:to-red-600:focus{ + --tw-gradient-to: #e53e3e; + } + + .\32xl\:focus\:to-red-700:focus{ + --tw-gradient-to: #c53030; + } + + .\32xl\:focus\:to-red-800:focus{ + --tw-gradient-to: #9b2c2c; + } + + .\32xl\:focus\:to-red-900:focus{ + --tw-gradient-to: #742a2a; + } + + .\32xl\:focus\:to-orange-100:focus{ + --tw-gradient-to: #fffaf0; + } + + .\32xl\:focus\:to-orange-200:focus{ + --tw-gradient-to: #feebc8; + } + + .\32xl\:focus\:to-orange-300:focus{ + --tw-gradient-to: #fbd38d; + } + + .\32xl\:focus\:to-orange-400:focus{ + --tw-gradient-to: #f6ad55; + } + + .\32xl\:focus\:to-orange-500:focus{ + --tw-gradient-to: #ed8936; + } + + .\32xl\:focus\:to-orange-600:focus{ + --tw-gradient-to: #dd6b20; + } + + .\32xl\:focus\:to-orange-700:focus{ + --tw-gradient-to: #c05621; + } + + .\32xl\:focus\:to-orange-800:focus{ + --tw-gradient-to: #9c4221; + } + + .\32xl\:focus\:to-orange-900:focus{ + --tw-gradient-to: #7b341e; + } + + .\32xl\:focus\:to-yellow-100:focus{ + --tw-gradient-to: #fffff0; + } + + .\32xl\:focus\:to-yellow-200:focus{ + --tw-gradient-to: #fefcbf; + } + + .\32xl\:focus\:to-yellow-300:focus{ + --tw-gradient-to: #faf089; + } + + .\32xl\:focus\:to-yellow-400:focus{ + --tw-gradient-to: #f6e05e; + } + + .\32xl\:focus\:to-yellow-500:focus{ + --tw-gradient-to: #ecc94b; + } + + .\32xl\:focus\:to-yellow-600:focus{ + --tw-gradient-to: #d69e2e; + } + + .\32xl\:focus\:to-yellow-700:focus{ + --tw-gradient-to: #b7791f; + } + + .\32xl\:focus\:to-yellow-800:focus{ + --tw-gradient-to: #975a16; + } + + .\32xl\:focus\:to-yellow-900:focus{ + --tw-gradient-to: #744210; + } + + .\32xl\:focus\:to-green-100:focus{ + --tw-gradient-to: #f0fff4; + } + + .\32xl\:focus\:to-green-200:focus{ + --tw-gradient-to: #c6f6d5; + } + + .\32xl\:focus\:to-green-300:focus{ + --tw-gradient-to: #9ae6b4; + } + + .\32xl\:focus\:to-green-400:focus{ + --tw-gradient-to: #68d391; + } + + .\32xl\:focus\:to-green-500:focus{ + --tw-gradient-to: #48bb78; + } + + .\32xl\:focus\:to-green-600:focus{ + --tw-gradient-to: #38a169; + } + + .\32xl\:focus\:to-green-700:focus{ + --tw-gradient-to: #2f855a; + } + + .\32xl\:focus\:to-green-800:focus{ + --tw-gradient-to: #276749; + } + + .\32xl\:focus\:to-green-900:focus{ + --tw-gradient-to: #22543d; + } + + .\32xl\:focus\:to-teal-100:focus{ + --tw-gradient-to: #e6fffa; + } + + .\32xl\:focus\:to-teal-200:focus{ + --tw-gradient-to: #b2f5ea; + } + + .\32xl\:focus\:to-teal-300:focus{ + --tw-gradient-to: #81e6d9; + } + + .\32xl\:focus\:to-teal-400:focus{ + --tw-gradient-to: #4fd1c5; + } + + .\32xl\:focus\:to-teal-500:focus{ + --tw-gradient-to: #38b2ac; + } + + .\32xl\:focus\:to-teal-600:focus{ + --tw-gradient-to: #319795; + } + + .\32xl\:focus\:to-teal-700:focus{ + --tw-gradient-to: #2c7a7b; + } + + .\32xl\:focus\:to-teal-800:focus{ + --tw-gradient-to: #285e61; + } + + .\32xl\:focus\:to-teal-900:focus{ + --tw-gradient-to: #234e52; + } + + .\32xl\:focus\:to-blue-100:focus{ + --tw-gradient-to: #ebf8ff; + } + + .\32xl\:focus\:to-blue-200:focus{ + --tw-gradient-to: #bee3f8; + } + + .\32xl\:focus\:to-blue-300:focus{ + --tw-gradient-to: #90cdf4; + } + + .\32xl\:focus\:to-blue-400:focus{ + --tw-gradient-to: #63b3ed; + } + + .\32xl\:focus\:to-blue-500:focus{ + --tw-gradient-to: #4299e1; + } + + .\32xl\:focus\:to-blue-600:focus{ + --tw-gradient-to: #3182ce; + } + + .\32xl\:focus\:to-blue-700:focus{ + --tw-gradient-to: #2b6cb0; + } + + .\32xl\:focus\:to-blue-800:focus{ + --tw-gradient-to: #2c5282; + } + + .\32xl\:focus\:to-blue-900:focus{ + --tw-gradient-to: #2a4365; + } + + .\32xl\:focus\:to-indigo-100:focus{ + --tw-gradient-to: #ebf4ff; + } + + .\32xl\:focus\:to-indigo-200:focus{ + --tw-gradient-to: #c3dafe; + } + + .\32xl\:focus\:to-indigo-300:focus{ + --tw-gradient-to: #a3bffa; + } + + .\32xl\:focus\:to-indigo-400:focus{ + --tw-gradient-to: #7f9cf5; + } + + .\32xl\:focus\:to-indigo-500:focus{ + --tw-gradient-to: #667eea; + } + + .\32xl\:focus\:to-indigo-600:focus{ + --tw-gradient-to: #5a67d8; + } + + .\32xl\:focus\:to-indigo-700:focus{ + --tw-gradient-to: #4c51bf; + } + + .\32xl\:focus\:to-indigo-800:focus{ + --tw-gradient-to: #434190; + } + + .\32xl\:focus\:to-indigo-900:focus{ + --tw-gradient-to: #3c366b; + } + + .\32xl\:focus\:to-purple-100:focus{ + --tw-gradient-to: #faf5ff; + } + + .\32xl\:focus\:to-purple-200:focus{ + --tw-gradient-to: #e9d8fd; + } + + .\32xl\:focus\:to-purple-300:focus{ + --tw-gradient-to: #d6bcfa; + } + + .\32xl\:focus\:to-purple-400:focus{ + --tw-gradient-to: #b794f4; + } + + .\32xl\:focus\:to-purple-500:focus{ + --tw-gradient-to: #9f7aea; + } + + .\32xl\:focus\:to-purple-600:focus{ + --tw-gradient-to: #805ad5; + } + + .\32xl\:focus\:to-purple-700:focus{ + --tw-gradient-to: #6b46c1; + } + + .\32xl\:focus\:to-purple-800:focus{ + --tw-gradient-to: #553c9a; + } + + .\32xl\:focus\:to-purple-900:focus{ + --tw-gradient-to: #44337a; + } + + .\32xl\:focus\:to-pink-100:focus{ + --tw-gradient-to: #fff5f7; + } + + .\32xl\:focus\:to-pink-200:focus{ + --tw-gradient-to: #fed7e2; + } + + .\32xl\:focus\:to-pink-300:focus{ + --tw-gradient-to: #fbb6ce; + } + + .\32xl\:focus\:to-pink-400:focus{ + --tw-gradient-to: #f687b3; + } + + .\32xl\:focus\:to-pink-500:focus{ + --tw-gradient-to: #ed64a6; + } + + .\32xl\:focus\:to-pink-600:focus{ + --tw-gradient-to: #d53f8c; + } + + .\32xl\:focus\:to-pink-700:focus{ + --tw-gradient-to: #b83280; + } + + .\32xl\:focus\:to-pink-800:focus{ + --tw-gradient-to: #97266d; + } + + .\32xl\:focus\:to-pink-900:focus{ + --tw-gradient-to: #702459; + } + + .\32xl\:decoration-slice{ + -webkit-box-decoration-break: slice; + box-decoration-break: slice; + } + + .\32xl\:decoration-clone{ + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + } + + .\32xl\:bg-auto{ + background-size: auto; + } + + .\32xl\:bg-cover{ + background-size: cover; + } + + .\32xl\:bg-contain{ + background-size: contain; + } + + .\32xl\:bg-fixed{ + background-attachment: fixed; + } + + .\32xl\:bg-local{ + background-attachment: local; + } + + .\32xl\:bg-scroll{ + background-attachment: scroll; + } + + .\32xl\:bg-clip-border{ + background-clip: border-box; + } + + .\32xl\:bg-clip-padding{ + background-clip: padding-box; + } + + .\32xl\:bg-clip-content{ + background-clip: content-box; + } + + .\32xl\:bg-clip-text{ + -webkit-background-clip: text; + background-clip: text; + } + + .\32xl\:bg-bottom{ + background-position: bottom; + } + + .\32xl\:bg-center{ + background-position: center; + } + + .\32xl\:bg-left{ + background-position: left; + } + + .\32xl\:bg-left-bottom{ + background-position: left bottom; + } + + .\32xl\:bg-left-top{ + background-position: left top; + } + + .\32xl\:bg-right{ + background-position: right; + } + + .\32xl\:bg-right-bottom{ + background-position: right bottom; + } + + .\32xl\:bg-right-top{ + background-position: right top; + } + + .\32xl\:bg-top{ + background-position: top; + } + + .\32xl\:bg-repeat{ + background-repeat: repeat; + } + + .\32xl\:bg-no-repeat{ + background-repeat: no-repeat; + } + + .\32xl\:bg-repeat-x{ + background-repeat: repeat-x; + } + + .\32xl\:bg-repeat-y{ + background-repeat: repeat-y; + } + + .\32xl\:bg-repeat-round{ + background-repeat: round; + } + + .\32xl\:bg-repeat-space{ + background-repeat: space; + } + + .\32xl\:bg-origin-border{ + background-origin: border-box; + } + + .\32xl\:bg-origin-padding{ + background-origin: padding-box; + } + + .\32xl\:bg-origin-content{ + background-origin: content-box; + } + + .\32xl\:fill-current{ + fill: currentColor; + } + + .\32xl\:stroke-current{ + stroke: currentColor; + } + + .\32xl\:stroke-0{ + stroke-width: 0; + } + + .\32xl\:stroke-1{ + stroke-width: 1; + } + + .\32xl\:stroke-2{ + stroke-width: 2; + } + + .\32xl\:object-contain{ + -o-object-fit: contain; + object-fit: contain; + } + + .\32xl\:object-cover{ + -o-object-fit: cover; + object-fit: cover; + } + + .\32xl\:object-fill{ + -o-object-fit: fill; + object-fit: fill; + } + + .\32xl\:object-none{ + -o-object-fit: none; + object-fit: none; + } + + .\32xl\:object-scale-down{ + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .\32xl\:object-bottom{ + -o-object-position: bottom; + object-position: bottom; + } + + .\32xl\:object-center{ + -o-object-position: center; + object-position: center; + } + + .\32xl\:object-left{ + -o-object-position: left; + object-position: left; + } + + .\32xl\:object-left-bottom{ + -o-object-position: left bottom; + object-position: left bottom; + } + + .\32xl\:object-left-top{ + -o-object-position: left top; + object-position: left top; + } + + .\32xl\:object-right{ + -o-object-position: right; + object-position: right; + } + + .\32xl\:object-right-bottom{ + -o-object-position: right bottom; + object-position: right bottom; + } + + .\32xl\:object-right-top{ + -o-object-position: right top; + object-position: right top; + } + + .\32xl\:object-top{ + -o-object-position: top; + object-position: top; + } + + .\32xl\:p-0{ + padding: 0px; + } + + .\32xl\:p-1{ + padding: 0.25rem; + } + + .\32xl\:p-2{ + padding: 0.5rem; + } + + .\32xl\:p-3{ + padding: 0.75rem; + } + + .\32xl\:p-4{ + padding: 1rem; + } + + .\32xl\:p-5{ + padding: 1.25rem; + } + + .\32xl\:p-6{ + padding: 1.5rem; + } + + .\32xl\:p-7{ + padding: 1.75rem; + } + + .\32xl\:p-8{ + padding: 2rem; + } + + .\32xl\:p-9{ + padding: 2.25rem; + } + + .\32xl\:p-10{ + padding: 2.5rem; + } + + .\32xl\:p-11{ + padding: 2.75rem; + } + + .\32xl\:p-12{ + padding: 3rem; + } + + .\32xl\:p-14{ + padding: 3.5rem; + } + + .\32xl\:p-16{ + padding: 4rem; + } + + .\32xl\:p-20{ + padding: 5rem; + } + + .\32xl\:p-24{ + padding: 6rem; + } + + .\32xl\:p-28{ + padding: 7rem; + } + + .\32xl\:p-32{ + padding: 8rem; + } + + .\32xl\:p-36{ + padding: 9rem; + } + + .\32xl\:p-40{ + padding: 10rem; + } + + .\32xl\:p-44{ + padding: 11rem; + } + + .\32xl\:p-48{ + padding: 12rem; + } + + .\32xl\:p-52{ + padding: 13rem; + } + + .\32xl\:p-56{ + padding: 14rem; + } + + .\32xl\:p-60{ + padding: 15rem; + } + + .\32xl\:p-64{ + padding: 16rem; + } + + .\32xl\:p-72{ + padding: 18rem; + } + + .\32xl\:p-80{ + padding: 20rem; + } + + .\32xl\:p-96{ + padding: 24rem; + } + + .\32xl\:p-px{ + padding: 1px; + } + + .\32xl\:p-0\.5{ + padding: 0.125rem; + } + + .\32xl\:p-1\.5{ + padding: 0.375rem; + } + + .\32xl\:p-2\.5{ + padding: 0.625rem; + } + + .\32xl\:p-3\.5{ + padding: 0.875rem; + } + + .\32xl\:px-0{ + padding-left: 0px; + padding-right: 0px; + } + + .\32xl\:px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .\32xl\:px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .\32xl\:px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .\32xl\:px-4{ + padding-left: 1rem; + padding-right: 1rem; + } + + .\32xl\:px-5{ + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .\32xl\:px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .\32xl\:px-7{ + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .\32xl\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } + + .\32xl\:px-9{ + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .\32xl\:px-10{ + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .\32xl\:px-11{ + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .\32xl\:px-12{ + padding-left: 3rem; + padding-right: 3rem; + } + + .\32xl\:px-14{ + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .\32xl\:px-16{ + padding-left: 4rem; + padding-right: 4rem; + } + + .\32xl\:px-20{ + padding-left: 5rem; + padding-right: 5rem; + } + + .\32xl\:px-24{ + padding-left: 6rem; + padding-right: 6rem; + } + + .\32xl\:px-28{ + padding-left: 7rem; + padding-right: 7rem; + } + + .\32xl\:px-32{ + padding-left: 8rem; + padding-right: 8rem; + } + + .\32xl\:px-36{ + padding-left: 9rem; + padding-right: 9rem; + } + + .\32xl\:px-40{ + padding-left: 10rem; + padding-right: 10rem; + } + + .\32xl\:px-44{ + padding-left: 11rem; + padding-right: 11rem; + } + + .\32xl\:px-48{ + padding-left: 12rem; + padding-right: 12rem; + } + + .\32xl\:px-52{ + padding-left: 13rem; + padding-right: 13rem; + } + + .\32xl\:px-56{ + padding-left: 14rem; + padding-right: 14rem; + } + + .\32xl\:px-60{ + padding-left: 15rem; + padding-right: 15rem; + } + + .\32xl\:px-64{ + padding-left: 16rem; + padding-right: 16rem; + } + + .\32xl\:px-72{ + padding-left: 18rem; + padding-right: 18rem; + } + + .\32xl\:px-80{ + padding-left: 20rem; + padding-right: 20rem; + } + + .\32xl\:px-96{ + padding-left: 24rem; + padding-right: 24rem; + } + + .\32xl\:px-px{ + padding-left: 1px; + padding-right: 1px; + } + + .\32xl\:px-0\.5{ + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .\32xl\:px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .\32xl\:px-2\.5{ + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .\32xl\:px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .\32xl\:py-0{ + padding-top: 0px; + padding-bottom: 0px; + } + + .\32xl\:py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .\32xl\:py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .\32xl\:py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .\32xl\:py-4{ + padding-top: 1rem; + padding-bottom: 1rem; + } + + .\32xl\:py-5{ + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .\32xl\:py-6{ + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .\32xl\:py-7{ + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .\32xl\:py-8{ + padding-top: 2rem; + padding-bottom: 2rem; + } + + .\32xl\:py-9{ + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .\32xl\:py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .\32xl\:py-11{ + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .\32xl\:py-12{ + padding-top: 3rem; + padding-bottom: 3rem; + } + + .\32xl\:py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .\32xl\:py-16{ + padding-top: 4rem; + padding-bottom: 4rem; + } + + .\32xl\:py-20{ + padding-top: 5rem; + padding-bottom: 5rem; + } + + .\32xl\:py-24{ + padding-top: 6rem; + padding-bottom: 6rem; + } + + .\32xl\:py-28{ + padding-top: 7rem; + padding-bottom: 7rem; + } + + .\32xl\:py-32{ + padding-top: 8rem; + padding-bottom: 8rem; + } + + .\32xl\:py-36{ + padding-top: 9rem; + padding-bottom: 9rem; + } + + .\32xl\:py-40{ + padding-top: 10rem; + padding-bottom: 10rem; + } + + .\32xl\:py-44{ + padding-top: 11rem; + padding-bottom: 11rem; + } + + .\32xl\:py-48{ + padding-top: 12rem; + padding-bottom: 12rem; + } + + .\32xl\:py-52{ + padding-top: 13rem; + padding-bottom: 13rem; + } + + .\32xl\:py-56{ + padding-top: 14rem; + padding-bottom: 14rem; + } + + .\32xl\:py-60{ + padding-top: 15rem; + padding-bottom: 15rem; + } + + .\32xl\:py-64{ + padding-top: 16rem; + padding-bottom: 16rem; + } + + .\32xl\:py-72{ + padding-top: 18rem; + padding-bottom: 18rem; + } + + .\32xl\:py-80{ + padding-top: 20rem; + padding-bottom: 20rem; + } + + .\32xl\:py-96{ + padding-top: 24rem; + padding-bottom: 24rem; + } + + .\32xl\:py-px{ + padding-top: 1px; + padding-bottom: 1px; + } + + .\32xl\:py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .\32xl\:py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .\32xl\:py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .\32xl\:py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .\32xl\:pt-0{ + padding-top: 0px; + } + + .\32xl\:pt-1{ + padding-top: 0.25rem; + } + + .\32xl\:pt-2{ + padding-top: 0.5rem; + } + + .\32xl\:pt-3{ + padding-top: 0.75rem; + } + + .\32xl\:pt-4{ + padding-top: 1rem; + } + + .\32xl\:pt-5{ + padding-top: 1.25rem; + } + + .\32xl\:pt-6{ + padding-top: 1.5rem; + } + + .\32xl\:pt-7{ + padding-top: 1.75rem; + } + + .\32xl\:pt-8{ + padding-top: 2rem; + } + + .\32xl\:pt-9{ + padding-top: 2.25rem; + } + + .\32xl\:pt-10{ + padding-top: 2.5rem; + } + + .\32xl\:pt-11{ + padding-top: 2.75rem; + } + + .\32xl\:pt-12{ + padding-top: 3rem; + } + + .\32xl\:pt-14{ + padding-top: 3.5rem; + } + + .\32xl\:pt-16{ + padding-top: 4rem; + } + + .\32xl\:pt-20{ + padding-top: 5rem; + } + + .\32xl\:pt-24{ + padding-top: 6rem; + } + + .\32xl\:pt-28{ + padding-top: 7rem; + } + + .\32xl\:pt-32{ + padding-top: 8rem; + } + + .\32xl\:pt-36{ + padding-top: 9rem; + } + + .\32xl\:pt-40{ + padding-top: 10rem; + } + + .\32xl\:pt-44{ + padding-top: 11rem; + } + + .\32xl\:pt-48{ + padding-top: 12rem; + } + + .\32xl\:pt-52{ + padding-top: 13rem; + } + + .\32xl\:pt-56{ + padding-top: 14rem; + } + + .\32xl\:pt-60{ + padding-top: 15rem; + } + + .\32xl\:pt-64{ + padding-top: 16rem; + } + + .\32xl\:pt-72{ + padding-top: 18rem; + } + + .\32xl\:pt-80{ + padding-top: 20rem; + } + + .\32xl\:pt-96{ + padding-top: 24rem; + } + + .\32xl\:pt-px{ + padding-top: 1px; + } + + .\32xl\:pt-0\.5{ + padding-top: 0.125rem; + } + + .\32xl\:pt-1\.5{ + padding-top: 0.375rem; + } + + .\32xl\:pt-2\.5{ + padding-top: 0.625rem; + } + + .\32xl\:pt-3\.5{ + padding-top: 0.875rem; + } + + .\32xl\:pr-0{ + padding-right: 0px; + } + + .\32xl\:pr-1{ + padding-right: 0.25rem; + } + + .\32xl\:pr-2{ + padding-right: 0.5rem; + } + + .\32xl\:pr-3{ + padding-right: 0.75rem; + } + + .\32xl\:pr-4{ + padding-right: 1rem; + } + + .\32xl\:pr-5{ + padding-right: 1.25rem; + } + + .\32xl\:pr-6{ + padding-right: 1.5rem; + } + + .\32xl\:pr-7{ + padding-right: 1.75rem; + } + + .\32xl\:pr-8{ + padding-right: 2rem; + } + + .\32xl\:pr-9{ + padding-right: 2.25rem; + } + + .\32xl\:pr-10{ + padding-right: 2.5rem; + } + + .\32xl\:pr-11{ + padding-right: 2.75rem; + } + + .\32xl\:pr-12{ + padding-right: 3rem; + } + + .\32xl\:pr-14{ + padding-right: 3.5rem; + } + + .\32xl\:pr-16{ + padding-right: 4rem; + } + + .\32xl\:pr-20{ + padding-right: 5rem; + } + + .\32xl\:pr-24{ + padding-right: 6rem; + } + + .\32xl\:pr-28{ + padding-right: 7rem; + } + + .\32xl\:pr-32{ + padding-right: 8rem; + } + + .\32xl\:pr-36{ + padding-right: 9rem; + } + + .\32xl\:pr-40{ + padding-right: 10rem; + } + + .\32xl\:pr-44{ + padding-right: 11rem; + } + + .\32xl\:pr-48{ + padding-right: 12rem; + } + + .\32xl\:pr-52{ + padding-right: 13rem; + } + + .\32xl\:pr-56{ + padding-right: 14rem; + } + + .\32xl\:pr-60{ + padding-right: 15rem; + } + + .\32xl\:pr-64{ + padding-right: 16rem; + } + + .\32xl\:pr-72{ + padding-right: 18rem; + } + + .\32xl\:pr-80{ + padding-right: 20rem; + } + + .\32xl\:pr-96{ + padding-right: 24rem; + } + + .\32xl\:pr-px{ + padding-right: 1px; + } + + .\32xl\:pr-0\.5{ + padding-right: 0.125rem; + } + + .\32xl\:pr-1\.5{ + padding-right: 0.375rem; + } + + .\32xl\:pr-2\.5{ + padding-right: 0.625rem; + } + + .\32xl\:pr-3\.5{ + padding-right: 0.875rem; + } + + .\32xl\:pb-0{ + padding-bottom: 0px; + } + + .\32xl\:pb-1{ + padding-bottom: 0.25rem; + } + + .\32xl\:pb-2{ + padding-bottom: 0.5rem; + } + + .\32xl\:pb-3{ + padding-bottom: 0.75rem; + } + + .\32xl\:pb-4{ + padding-bottom: 1rem; + } + + .\32xl\:pb-5{ + padding-bottom: 1.25rem; + } + + .\32xl\:pb-6{ + padding-bottom: 1.5rem; + } + + .\32xl\:pb-7{ + padding-bottom: 1.75rem; + } + + .\32xl\:pb-8{ + padding-bottom: 2rem; + } + + .\32xl\:pb-9{ + padding-bottom: 2.25rem; + } + + .\32xl\:pb-10{ + padding-bottom: 2.5rem; + } + + .\32xl\:pb-11{ + padding-bottom: 2.75rem; + } + + .\32xl\:pb-12{ + padding-bottom: 3rem; + } + + .\32xl\:pb-14{ + padding-bottom: 3.5rem; + } + + .\32xl\:pb-16{ + padding-bottom: 4rem; + } + + .\32xl\:pb-20{ + padding-bottom: 5rem; + } + + .\32xl\:pb-24{ + padding-bottom: 6rem; + } + + .\32xl\:pb-28{ + padding-bottom: 7rem; + } + + .\32xl\:pb-32{ + padding-bottom: 8rem; + } + + .\32xl\:pb-36{ + padding-bottom: 9rem; + } + + .\32xl\:pb-40{ + padding-bottom: 10rem; + } + + .\32xl\:pb-44{ + padding-bottom: 11rem; + } + + .\32xl\:pb-48{ + padding-bottom: 12rem; + } + + .\32xl\:pb-52{ + padding-bottom: 13rem; + } + + .\32xl\:pb-56{ + padding-bottom: 14rem; + } + + .\32xl\:pb-60{ + padding-bottom: 15rem; + } + + .\32xl\:pb-64{ + padding-bottom: 16rem; + } + + .\32xl\:pb-72{ + padding-bottom: 18rem; + } + + .\32xl\:pb-80{ + padding-bottom: 20rem; + } + + .\32xl\:pb-96{ + padding-bottom: 24rem; + } + + .\32xl\:pb-px{ + padding-bottom: 1px; + } + + .\32xl\:pb-0\.5{ + padding-bottom: 0.125rem; + } + + .\32xl\:pb-1\.5{ + padding-bottom: 0.375rem; + } + + .\32xl\:pb-2\.5{ + padding-bottom: 0.625rem; + } + + .\32xl\:pb-3\.5{ + padding-bottom: 0.875rem; + } + + .\32xl\:pl-0{ + padding-left: 0px; + } + + .\32xl\:pl-1{ + padding-left: 0.25rem; + } + + .\32xl\:pl-2{ + padding-left: 0.5rem; + } + + .\32xl\:pl-3{ + padding-left: 0.75rem; + } + + .\32xl\:pl-4{ + padding-left: 1rem; + } + + .\32xl\:pl-5{ + padding-left: 1.25rem; + } + + .\32xl\:pl-6{ + padding-left: 1.5rem; + } + + .\32xl\:pl-7{ + padding-left: 1.75rem; + } + + .\32xl\:pl-8{ + padding-left: 2rem; + } + + .\32xl\:pl-9{ + padding-left: 2.25rem; + } + + .\32xl\:pl-10{ + padding-left: 2.5rem; + } + + .\32xl\:pl-11{ + padding-left: 2.75rem; + } + + .\32xl\:pl-12{ + padding-left: 3rem; + } + + .\32xl\:pl-14{ + padding-left: 3.5rem; + } + + .\32xl\:pl-16{ + padding-left: 4rem; + } + + .\32xl\:pl-20{ + padding-left: 5rem; + } + + .\32xl\:pl-24{ + padding-left: 6rem; + } + + .\32xl\:pl-28{ + padding-left: 7rem; + } + + .\32xl\:pl-32{ + padding-left: 8rem; + } + + .\32xl\:pl-36{ + padding-left: 9rem; + } + + .\32xl\:pl-40{ + padding-left: 10rem; + } + + .\32xl\:pl-44{ + padding-left: 11rem; + } + + .\32xl\:pl-48{ + padding-left: 12rem; + } + + .\32xl\:pl-52{ + padding-left: 13rem; + } + + .\32xl\:pl-56{ + padding-left: 14rem; + } + + .\32xl\:pl-60{ + padding-left: 15rem; + } + + .\32xl\:pl-64{ + padding-left: 16rem; + } + + .\32xl\:pl-72{ + padding-left: 18rem; + } + + .\32xl\:pl-80{ + padding-left: 20rem; + } + + .\32xl\:pl-96{ + padding-left: 24rem; + } + + .\32xl\:pl-px{ + padding-left: 1px; + } + + .\32xl\:pl-0\.5{ + padding-left: 0.125rem; + } + + .\32xl\:pl-1\.5{ + padding-left: 0.375rem; + } + + .\32xl\:pl-2\.5{ + padding-left: 0.625rem; + } + + .\32xl\:pl-3\.5{ + padding-left: 0.875rem; + } + + .\32xl\:text-left{ + text-align: left; + } + + .\32xl\:text-center{ + text-align: center; + } + + .\32xl\:text-right{ + text-align: right; + } + + .\32xl\:text-justify{ + text-align: justify; + } + + .\32xl\:align-baseline{ + vertical-align: baseline; + } + + .\32xl\:align-top{ + vertical-align: top; + } + + .\32xl\:align-middle{ + vertical-align: middle; + } + + .\32xl\:align-bottom{ + vertical-align: bottom; + } + + .\32xl\:align-text-top{ + vertical-align: text-top; + } + + .\32xl\:align-text-bottom{ + vertical-align: text-bottom; + } + + .\32xl\:font-sans{ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .\32xl\:font-serif{ + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .\32xl\:font-mono{ + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .\32xl\:text-xs{ + font-size: 0.75rem; + line-height: 1rem; + } + + .\32xl\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + + .\32xl\:text-base{ + font-size: 1rem; + line-height: 1.5rem; + } + + .\32xl\:text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; + } + + .\32xl\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } + + .\32xl\:text-2xl{ + font-size: 1.5rem; + line-height: 2rem; + } + + .\32xl\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + + .\32xl\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + + .\32xl\:text-5xl{ + font-size: 3rem; + line-height: 1; + } + + .\32xl\:text-6xl{ + font-size: 3.75rem; + line-height: 1; + } + + .\32xl\:text-7xl{ + font-size: 4.5rem; + line-height: 1; + } + + .\32xl\:text-8xl{ + font-size: 6rem; + line-height: 1; + } + + .\32xl\:text-9xl{ + font-size: 8rem; + line-height: 1; + } + + .\32xl\:font-thin{ + font-weight: 100; + } + + .\32xl\:font-extralight{ + font-weight: 200; + } + + .\32xl\:font-light{ + font-weight: 300; + } + + .\32xl\:font-normal{ + font-weight: 400; + } + + .\32xl\:font-medium{ + font-weight: 500; + } + + .\32xl\:font-semibold{ + font-weight: 600; + } + + .\32xl\:font-bold{ + font-weight: 700; + } + + .\32xl\:font-extrabold{ + font-weight: 800; + } + + .\32xl\:font-black{ + font-weight: 900; + } + + .\32xl\:uppercase{ + text-transform: uppercase; + } + + .\32xl\:lowercase{ + text-transform: lowercase; + } + + .\32xl\:capitalize{ + text-transform: capitalize; + } + + .\32xl\:normal-case{ + text-transform: none; + } + + .\32xl\:italic{ + font-style: italic; + } + + .\32xl\:not-italic{ + font-style: normal; + } + + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions{ + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .\32xl\:normal-nums{ + font-variant-numeric: normal; + } + + .\32xl\:ordinal{ + --tw-ordinal: ordinal; + } + + .\32xl\:slashed-zero{ + --tw-slashed-zero: slashed-zero; + } + + .\32xl\:lining-nums{ + --tw-numeric-figure: lining-nums; + } + + .\32xl\:oldstyle-nums{ + --tw-numeric-figure: oldstyle-nums; + } + + .\32xl\:proportional-nums{ + --tw-numeric-spacing: proportional-nums; + } + + .\32xl\:tabular-nums{ + --tw-numeric-spacing: tabular-nums; + } + + .\32xl\:diagonal-fractions{ + --tw-numeric-fraction: diagonal-fractions; + } + + .\32xl\:stacked-fractions{ + --tw-numeric-fraction: stacked-fractions; + } + + .\32xl\:leading-3{ + line-height: .75rem; + } + + .\32xl\:leading-4{ + line-height: 1rem; + } + + .\32xl\:leading-5{ + line-height: 1.25rem; + } + + .\32xl\:leading-6{ + line-height: 1.5rem; + } + + .\32xl\:leading-7{ + line-height: 1.75rem; + } + + .\32xl\:leading-8{ + line-height: 2rem; + } + + .\32xl\:leading-9{ + line-height: 2.25rem; + } + + .\32xl\:leading-10{ + line-height: 2.5rem; + } + + .\32xl\:leading-none{ + line-height: 1; + } + + .\32xl\:leading-tight{ + line-height: 1.25; + } + + .\32xl\:leading-snug{ + line-height: 1.375; + } + + .\32xl\:leading-normal{ + line-height: 1.5; + } + + .\32xl\:leading-relaxed{ + line-height: 1.625; + } + + .\32xl\:leading-loose{ + line-height: 2; + } + + .\32xl\:tracking-tighter{ + letter-spacing: -0.05em; + } + + .\32xl\:tracking-tight{ + letter-spacing: -0.025em; + } + + .\32xl\:tracking-normal{ + letter-spacing: 0em; + } + + .\32xl\:tracking-wide{ + letter-spacing: 0.025em; + } + + .\32xl\:tracking-wider{ + letter-spacing: 0.05em; + } + + .\32xl\:tracking-widest{ + letter-spacing: 0.1em; + } + + .\32xl\:text-transparent{ + color: transparent; + } + + .\32xl\:text-current{ + color: currentColor; + } + + .\32xl\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .\32xl\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .\32xl\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .\32xl\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .\32xl\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .\32xl\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .\32xl\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .\32xl\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .\32xl\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .\32xl\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .\32xl\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .\32xl\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .\32xl\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .\32xl\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .\32xl\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .\32xl\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .\32xl\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .\32xl\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .\32xl\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .\32xl\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .\32xl\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .\32xl\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .\32xl\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-transparent{ + color: transparent; + } + + .group:hover .\32xl\:group-hover\:text-current{ + color: currentColor; + } + + .group:hover .\32xl\:group-hover\:text-black{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-white{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-100{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-200{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-300{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-400{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-500{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-600{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-700{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-800{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-900{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-300{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-400{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-500{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-600{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-700{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-800{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-900{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-100{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-200{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-300{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-400{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-500{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-600{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-700{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-800{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-orange-900{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-100{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-200{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-300{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-400{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-500{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-600{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-700{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-800{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-900{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-100{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-200{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-300{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-400{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-500{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-600{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-700{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-800{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-900{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-100{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-200{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-300{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-400{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-500{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-600{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-700{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-800{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-teal-900{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-100{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-200{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-300{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-400{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-500{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-600{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-700{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-800{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-900{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-100{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-200{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-300{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-400{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-500{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-600{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-700{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-800{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-900{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-100{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-200{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-300{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-400{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-500{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-600{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-700{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-800{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-purple-900{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-100{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-200{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-300{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-400{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-500{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-600{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-700{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-800{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-pink-900{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-transparent:focus-within{ + color: transparent; + } + + .\32xl\:focus-within\:text-current:focus-within{ + color: currentColor; + } + + .\32xl\:focus-within\:text-black:focus-within{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-white:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-orange-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-teal-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-purple-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-100:focus-within{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-200:focus-within{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-300:focus-within{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-400:focus-within{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-500:focus-within{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-600:focus-within{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-700:focus-within{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-800:focus-within{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-pink-900:focus-within{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-transparent:hover{ + color: transparent; + } + + .\32xl\:hover\:text-current:hover{ + color: currentColor; + } + + .\32xl\:hover\:text-black:hover{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-100:hover{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-200:hover{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-300:hover{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-600:hover{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-900:hover{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-300:hover{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-400:hover{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-500:hover{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-600:hover{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-700:hover{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-800:hover{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-600:hover{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-700:hover{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-800:hover{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-orange-900:hover{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-300:hover{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-500:hover{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-600:hover{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-700:hover{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-900:hover{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-100:hover{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-200:hover{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-300:hover{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-400:hover{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-500:hover{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-600:hover{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-700:hover{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-800:hover{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-900:hover{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-100:hover{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-200:hover{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-300:hover{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-400:hover{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-500:hover{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-700:hover{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-800:hover{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-teal-900:hover{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-200:hover{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-300:hover{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-400:hover{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-700:hover{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-800:hover{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-900:hover{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-100:hover{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-200:hover{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-300:hover{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-400:hover{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-500:hover{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-600:hover{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-700:hover{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-800:hover{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-900:hover{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-100:hover{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-200:hover{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-300:hover{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-400:hover{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-500:hover{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-600:hover{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-700:hover{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-800:hover{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-purple-900:hover{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-100:hover{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-200:hover{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-300:hover{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-400:hover{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-500:hover{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-600:hover{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-700:hover{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-800:hover{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-pink-900:hover{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-transparent:focus{ + color: transparent; + } + + .\32xl\:focus\:text-current:focus{ + color: currentColor; + } + + .\32xl\:focus\:text-black:focus{ + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-white:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-100:focus{ + --tw-text-opacity: 1; + color: rgba(247, 250, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-200:focus{ + --tw-text-opacity: 1; + color: rgba(237, 242, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-300:focus{ + --tw-text-opacity: 1; + color: rgba(226, 232, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-400:focus{ + --tw-text-opacity: 1; + color: rgba(203, 213, 224, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-500:focus{ + --tw-text-opacity: 1; + color: rgba(160, 174, 192, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-600:focus{ + --tw-text-opacity: 1; + color: rgba(113, 128, 150, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-700:focus{ + --tw-text-opacity: 1; + color: rgba(74, 85, 104, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-800:focus{ + --tw-text-opacity: 1; + color: rgba(45, 55, 72, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-900:focus{ + --tw-text-opacity: 1; + color: rgba(26, 32, 44, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 245, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 215, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-300:focus{ + --tw-text-opacity: 1; + color: rgba(254, 178, 178, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-400:focus{ + --tw-text-opacity: 1; + color: rgba(252, 129, 129, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-500:focus{ + --tw-text-opacity: 1; + color: rgba(245, 101, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-600:focus{ + --tw-text-opacity: 1; + color: rgba(229, 62, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-700:focus{ + --tw-text-opacity: 1; + color: rgba(197, 48, 48, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-800:focus{ + --tw-text-opacity: 1; + color: rgba(155, 44, 44, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 42, 42, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 235, 200, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 211, 141, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 173, 85, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 137, 54, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-600:focus{ + --tw-text-opacity: 1; + color: rgba(221, 107, 32, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-700:focus{ + --tw-text-opacity: 1; + color: rgba(192, 86, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-800:focus{ + --tw-text-opacity: 1; + color: rgba(156, 66, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-orange-900:focus{ + --tw-text-opacity: 1; + color: rgba(123, 52, 30, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 255, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 252, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-300:focus{ + --tw-text-opacity: 1; + color: rgba(250, 240, 137, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 224, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-500:focus{ + --tw-text-opacity: 1; + color: rgba(236, 201, 75, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-600:focus{ + --tw-text-opacity: 1; + color: rgba(214, 158, 46, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-700:focus{ + --tw-text-opacity: 1; + color: rgba(183, 121, 31, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 90, 22, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-900:focus{ + --tw-text-opacity: 1; + color: rgba(116, 66, 16, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-100:focus{ + --tw-text-opacity: 1; + color: rgba(240, 255, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-200:focus{ + --tw-text-opacity: 1; + color: rgba(198, 246, 213, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-300:focus{ + --tw-text-opacity: 1; + color: rgba(154, 230, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-400:focus{ + --tw-text-opacity: 1; + color: rgba(104, 211, 145, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-500:focus{ + --tw-text-opacity: 1; + color: rgba(72, 187, 120, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-600:focus{ + --tw-text-opacity: 1; + color: rgba(56, 161, 105, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-700:focus{ + --tw-text-opacity: 1; + color: rgba(47, 133, 90, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-800:focus{ + --tw-text-opacity: 1; + color: rgba(39, 103, 73, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-900:focus{ + --tw-text-opacity: 1; + color: rgba(34, 84, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-100:focus{ + --tw-text-opacity: 1; + color: rgba(230, 255, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-200:focus{ + --tw-text-opacity: 1; + color: rgba(178, 245, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-300:focus{ + --tw-text-opacity: 1; + color: rgba(129, 230, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-400:focus{ + --tw-text-opacity: 1; + color: rgba(79, 209, 197, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-500:focus{ + --tw-text-opacity: 1; + color: rgba(56, 178, 172, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 151, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-700:focus{ + --tw-text-opacity: 1; + color: rgba(44, 122, 123, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-800:focus{ + --tw-text-opacity: 1; + color: rgba(40, 94, 97, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-teal-900:focus{ + --tw-text-opacity: 1; + color: rgba(35, 78, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 248, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-200:focus{ + --tw-text-opacity: 1; + color: rgba(190, 227, 248, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-300:focus{ + --tw-text-opacity: 1; + color: rgba(144, 205, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-400:focus{ + --tw-text-opacity: 1; + color: rgba(99, 179, 237, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-500:focus{ + --tw-text-opacity: 1; + color: rgba(66, 153, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-600:focus{ + --tw-text-opacity: 1; + color: rgba(49, 130, 206, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-700:focus{ + --tw-text-opacity: 1; + color: rgba(43, 108, 176, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-800:focus{ + --tw-text-opacity: 1; + color: rgba(44, 82, 130, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-900:focus{ + --tw-text-opacity: 1; + color: rgba(42, 67, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-100:focus{ + --tw-text-opacity: 1; + color: rgba(235, 244, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-200:focus{ + --tw-text-opacity: 1; + color: rgba(195, 218, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-300:focus{ + --tw-text-opacity: 1; + color: rgba(163, 191, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-400:focus{ + --tw-text-opacity: 1; + color: rgba(127, 156, 245, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-500:focus{ + --tw-text-opacity: 1; + color: rgba(102, 126, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-600:focus{ + --tw-text-opacity: 1; + color: rgba(90, 103, 216, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-700:focus{ + --tw-text-opacity: 1; + color: rgba(76, 81, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-800:focus{ + --tw-text-opacity: 1; + color: rgba(67, 65, 144, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-900:focus{ + --tw-text-opacity: 1; + color: rgba(60, 54, 107, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-100:focus{ + --tw-text-opacity: 1; + color: rgba(250, 245, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-200:focus{ + --tw-text-opacity: 1; + color: rgba(233, 216, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-300:focus{ + --tw-text-opacity: 1; + color: rgba(214, 188, 250, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-400:focus{ + --tw-text-opacity: 1; + color: rgba(183, 148, 244, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-500:focus{ + --tw-text-opacity: 1; + color: rgba(159, 122, 234, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-600:focus{ + --tw-text-opacity: 1; + color: rgba(128, 90, 213, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-700:focus{ + --tw-text-opacity: 1; + color: rgba(107, 70, 193, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-800:focus{ + --tw-text-opacity: 1; + color: rgba(85, 60, 154, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-purple-900:focus{ + --tw-text-opacity: 1; + color: rgba(68, 51, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-100:focus{ + --tw-text-opacity: 1; + color: rgba(255, 245, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-200:focus{ + --tw-text-opacity: 1; + color: rgba(254, 215, 226, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-300:focus{ + --tw-text-opacity: 1; + color: rgba(251, 182, 206, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-400:focus{ + --tw-text-opacity: 1; + color: rgba(246, 135, 179, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-500:focus{ + --tw-text-opacity: 1; + color: rgba(237, 100, 166, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-600:focus{ + --tw-text-opacity: 1; + color: rgba(213, 63, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-700:focus{ + --tw-text-opacity: 1; + color: rgba(184, 50, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-800:focus{ + --tw-text-opacity: 1; + color: rgba(151, 38, 109, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-pink-900:focus{ + --tw-text-opacity: 1; + color: rgba(112, 36, 89, var(--tw-text-opacity)); + } + + .\32xl\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .\32xl\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .\32xl\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .\32xl\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .\32xl\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .\32xl\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .\32xl\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .\32xl\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .\32xl\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .\32xl\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .\32xl\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .\32xl\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .\32xl\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .\32xl\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .\32xl\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-0{ + --tw-text-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:text-opacity-5{ + --tw-text-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:text-opacity-10{ + --tw-text-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-20{ + --tw-text-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:text-opacity-25{ + --tw-text-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:text-opacity-30{ + --tw-text-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:text-opacity-40{ + --tw-text-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:text-opacity-50{ + --tw-text-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:text-opacity-60{ + --tw-text-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:text-opacity-70{ + --tw-text-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:text-opacity-75{ + --tw-text-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:text-opacity-80{ + --tw-text-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:text-opacity-90{ + --tw-text-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:text-opacity-95{ + --tw-text-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:text-opacity-100{ + --tw-text-opacity: 1; + } + + .\32xl\:focus-within\:text-opacity-0:focus-within{ + --tw-text-opacity: 0; + } + + .\32xl\:focus-within\:text-opacity-5:focus-within{ + --tw-text-opacity: 0.05; + } + + .\32xl\:focus-within\:text-opacity-10:focus-within{ + --tw-text-opacity: 0.1; + } + + .\32xl\:focus-within\:text-opacity-20:focus-within{ + --tw-text-opacity: 0.2; + } + + .\32xl\:focus-within\:text-opacity-25:focus-within{ + --tw-text-opacity: 0.25; + } + + .\32xl\:focus-within\:text-opacity-30:focus-within{ + --tw-text-opacity: 0.3; + } + + .\32xl\:focus-within\:text-opacity-40:focus-within{ + --tw-text-opacity: 0.4; + } + + .\32xl\:focus-within\:text-opacity-50:focus-within{ + --tw-text-opacity: 0.5; + } + + .\32xl\:focus-within\:text-opacity-60:focus-within{ + --tw-text-opacity: 0.6; + } + + .\32xl\:focus-within\:text-opacity-70:focus-within{ + --tw-text-opacity: 0.7; + } + + .\32xl\:focus-within\:text-opacity-75:focus-within{ + --tw-text-opacity: 0.75; + } + + .\32xl\:focus-within\:text-opacity-80:focus-within{ + --tw-text-opacity: 0.8; + } + + .\32xl\:focus-within\:text-opacity-90:focus-within{ + --tw-text-opacity: 0.9; + } + + .\32xl\:focus-within\:text-opacity-95:focus-within{ + --tw-text-opacity: 0.95; + } + + .\32xl\:focus-within\:text-opacity-100:focus-within{ + --tw-text-opacity: 1; + } + + .\32xl\:hover\:text-opacity-0:hover{ + --tw-text-opacity: 0; + } + + .\32xl\:hover\:text-opacity-5:hover{ + --tw-text-opacity: 0.05; + } + + .\32xl\:hover\:text-opacity-10:hover{ + --tw-text-opacity: 0.1; + } + + .\32xl\:hover\:text-opacity-20:hover{ + --tw-text-opacity: 0.2; + } + + .\32xl\:hover\:text-opacity-25:hover{ + --tw-text-opacity: 0.25; + } + + .\32xl\:hover\:text-opacity-30:hover{ + --tw-text-opacity: 0.3; + } + + .\32xl\:hover\:text-opacity-40:hover{ + --tw-text-opacity: 0.4; + } + + .\32xl\:hover\:text-opacity-50:hover{ + --tw-text-opacity: 0.5; + } + + .\32xl\:hover\:text-opacity-60:hover{ + --tw-text-opacity: 0.6; + } + + .\32xl\:hover\:text-opacity-70:hover{ + --tw-text-opacity: 0.7; + } + + .\32xl\:hover\:text-opacity-75:hover{ + --tw-text-opacity: 0.75; + } + + .\32xl\:hover\:text-opacity-80:hover{ + --tw-text-opacity: 0.8; + } + + .\32xl\:hover\:text-opacity-90:hover{ + --tw-text-opacity: 0.9; + } + + .\32xl\:hover\:text-opacity-95:hover{ + --tw-text-opacity: 0.95; + } + + .\32xl\:hover\:text-opacity-100:hover{ + --tw-text-opacity: 1; + } + + .\32xl\:focus\:text-opacity-0:focus{ + --tw-text-opacity: 0; + } + + .\32xl\:focus\:text-opacity-5:focus{ + --tw-text-opacity: 0.05; + } + + .\32xl\:focus\:text-opacity-10:focus{ + --tw-text-opacity: 0.1; + } + + .\32xl\:focus\:text-opacity-20:focus{ + --tw-text-opacity: 0.2; + } + + .\32xl\:focus\:text-opacity-25:focus{ + --tw-text-opacity: 0.25; + } + + .\32xl\:focus\:text-opacity-30:focus{ + --tw-text-opacity: 0.3; + } + + .\32xl\:focus\:text-opacity-40:focus{ + --tw-text-opacity: 0.4; + } + + .\32xl\:focus\:text-opacity-50:focus{ + --tw-text-opacity: 0.5; + } + + .\32xl\:focus\:text-opacity-60:focus{ + --tw-text-opacity: 0.6; + } + + .\32xl\:focus\:text-opacity-70:focus{ + --tw-text-opacity: 0.7; + } + + .\32xl\:focus\:text-opacity-75:focus{ + --tw-text-opacity: 0.75; + } + + .\32xl\:focus\:text-opacity-80:focus{ + --tw-text-opacity: 0.8; + } + + .\32xl\:focus\:text-opacity-90:focus{ + --tw-text-opacity: 0.9; + } + + .\32xl\:focus\:text-opacity-95:focus{ + --tw-text-opacity: 0.95; + } + + .\32xl\:focus\:text-opacity-100:focus{ + --tw-text-opacity: 1; + } + + .\32xl\:underline{ + text-decoration: underline; + } + + .\32xl\:line-through{ + text-decoration: line-through; + } + + .\32xl\:no-underline{ + text-decoration: none; + } + + .group:hover .\32xl\:group-hover\:underline{ + text-decoration: underline; + } + + .group:hover .\32xl\:group-hover\:line-through{ + text-decoration: line-through; + } + + .group:hover .\32xl\:group-hover\:no-underline{ + text-decoration: none; + } + + .\32xl\:focus-within\:underline:focus-within{ + text-decoration: underline; + } + + .\32xl\:focus-within\:line-through:focus-within{ + text-decoration: line-through; + } + + .\32xl\:focus-within\:no-underline:focus-within{ + text-decoration: none; + } + + .\32xl\:hover\:underline:hover{ + text-decoration: underline; + } + + .\32xl\:hover\:line-through:hover{ + text-decoration: line-through; + } + + .\32xl\:hover\:no-underline:hover{ + text-decoration: none; + } + + .\32xl\:focus\:underline:focus{ + text-decoration: underline; + } + + .\32xl\:focus\:line-through:focus{ + text-decoration: line-through; + } + + .\32xl\:focus\:no-underline:focus{ + text-decoration: none; + } + + .\32xl\:antialiased{ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .\32xl\:subpixel-antialiased{ + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .\32xl\:placeholder-transparent::-moz-placeholder{ + color: transparent; + } + + .\32xl\:placeholder-transparent:-ms-input-placeholder{ + color: transparent; + } + + .\32xl\:placeholder-transparent::placeholder{ + color: transparent; + } + + .\32xl\:placeholder-current::-moz-placeholder{ + color: currentColor; + } + + .\32xl\:placeholder-current:-ms-input-placeholder{ + color: currentColor; + } + + .\32xl\:placeholder-current::placeholder{ + color: currentColor; + } + + .\32xl\:placeholder-black::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-orange-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-teal-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-purple-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-200::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-200:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-200::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-400::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-400:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-400::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-500::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-500:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-500::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-600::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-600:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-600::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-700::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-700:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-700::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-800::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-800:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-800::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-pink-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-transparent:focus::-moz-placeholder{ + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder{ + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::placeholder{ + color: transparent; + } + + .\32xl\:focus\:placeholder-current:focus::-moz-placeholder{ + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus:-ms-input-placeholder{ + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::placeholder{ + color: currentColor; + } + + .\32xl\:focus\:placeholder-black:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(247, 250, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 242, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(226, 232, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(203, 213, 224, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(160, 174, 192, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(113, 128, 150, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(74, 85, 104, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(45, 55, 72, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(26, 32, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 215, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 178, 178, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(252, 129, 129, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(245, 101, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(229, 62, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(197, 48, 48, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(155, 44, 44, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 42, 42, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 235, 200, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 211, 141, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 173, 85, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 137, 54, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(221, 107, 32, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(192, 86, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(156, 66, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-orange-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(123, 52, 30, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 252, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 240, 137, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 224, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(236, 201, 75, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 158, 46, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 121, 31, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 90, 22, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(116, 66, 16, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(240, 255, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(198, 246, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(154, 230, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(104, 211, 145, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(72, 187, 120, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 161, 105, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(47, 133, 90, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(39, 103, 73, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(34, 84, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(230, 255, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(178, 245, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(129, 230, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(79, 209, 197, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(56, 178, 172, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 151, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 122, 123, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(40, 94, 97, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-teal-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 248, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(190, 227, 248, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(144, 205, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(99, 179, 237, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(66, 153, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(49, 130, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(43, 108, 176, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(44, 82, 130, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(42, 67, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(235, 244, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(195, 218, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(163, 191, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(127, 156, 245, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(102, 126, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(90, 103, 216, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(76, 81, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(67, 65, 144, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(60, 54, 107, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(250, 245, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(233, 216, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(214, 188, 250, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(183, 148, 244, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(159, 122, 234, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(128, 90, 213, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(107, 70, 193, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(85, 60, 154, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-purple-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(68, 51, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(255, 245, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-200:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-200:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(254, 215, 226, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-300:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-300:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(251, 182, 206, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-400:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-400:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(246, 135, 179, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-500:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-500:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(237, 100, 166, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-600:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-600:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(213, 63, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-700:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-700:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(184, 50, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-800:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-800:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(151, 38, 109, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-900:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-pink-900:focus::placeholder{ + --tw-placeholder-opacity: 1; + color: rgba(112, 36, 89, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-opacity-0::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-5::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-10::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-20::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-25::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-30::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-40::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-50::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-60::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-70::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-75::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-80::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-90::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-95::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder{ + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder{ + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder{ + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder{ + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder{ + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder{ + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder{ + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder{ + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder{ + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder{ + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder{ + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder{ + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder{ + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder{ + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder{ + --tw-placeholder-opacity: 1; + } + + .\32xl\:opacity-0{ + opacity: 0; + } + + .\32xl\:opacity-5{ + opacity: 0.05; + } + + .\32xl\:opacity-10{ + opacity: 0.1; + } + + .\32xl\:opacity-20{ + opacity: 0.2; + } + + .\32xl\:opacity-25{ + opacity: 0.25; + } + + .\32xl\:opacity-30{ + opacity: 0.3; + } + + .\32xl\:opacity-40{ + opacity: 0.4; + } + + .\32xl\:opacity-50{ + opacity: 0.5; + } + + .\32xl\:opacity-60{ + opacity: 0.6; + } + + .\32xl\:opacity-70{ + opacity: 0.7; + } + + .\32xl\:opacity-75{ + opacity: 0.75; + } + + .\32xl\:opacity-80{ + opacity: 0.8; + } + + .\32xl\:opacity-90{ + opacity: 0.9; + } + + .\32xl\:opacity-95{ + opacity: 0.95; + } + + .\32xl\:opacity-100{ + opacity: 1; + } + + .group:hover .\32xl\:group-hover\:opacity-0{ + opacity: 0; + } + + .group:hover .\32xl\:group-hover\:opacity-5{ + opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:opacity-10{ + opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:opacity-20{ + opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:opacity-25{ + opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:opacity-30{ + opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:opacity-40{ + opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:opacity-50{ + opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:opacity-60{ + opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:opacity-70{ + opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:opacity-75{ + opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:opacity-80{ + opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:opacity-90{ + opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:opacity-95{ + opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:opacity-100{ + opacity: 1; + } + + .\32xl\:focus-within\:opacity-0:focus-within{ + opacity: 0; + } + + .\32xl\:focus-within\:opacity-5:focus-within{ + opacity: 0.05; + } + + .\32xl\:focus-within\:opacity-10:focus-within{ + opacity: 0.1; + } + + .\32xl\:focus-within\:opacity-20:focus-within{ + opacity: 0.2; + } + + .\32xl\:focus-within\:opacity-25:focus-within{ + opacity: 0.25; + } + + .\32xl\:focus-within\:opacity-30:focus-within{ + opacity: 0.3; + } + + .\32xl\:focus-within\:opacity-40:focus-within{ + opacity: 0.4; + } + + .\32xl\:focus-within\:opacity-50:focus-within{ + opacity: 0.5; + } + + .\32xl\:focus-within\:opacity-60:focus-within{ + opacity: 0.6; + } + + .\32xl\:focus-within\:opacity-70:focus-within{ + opacity: 0.7; + } + + .\32xl\:focus-within\:opacity-75:focus-within{ + opacity: 0.75; + } + + .\32xl\:focus-within\:opacity-80:focus-within{ + opacity: 0.8; + } + + .\32xl\:focus-within\:opacity-90:focus-within{ + opacity: 0.9; + } + + .\32xl\:focus-within\:opacity-95:focus-within{ + opacity: 0.95; + } + + .\32xl\:focus-within\:opacity-100:focus-within{ + opacity: 1; + } + + .\32xl\:hover\:opacity-0:hover{ + opacity: 0; + } + + .\32xl\:hover\:opacity-5:hover{ + opacity: 0.05; + } + + .\32xl\:hover\:opacity-10:hover{ + opacity: 0.1; + } + + .\32xl\:hover\:opacity-20:hover{ + opacity: 0.2; + } + + .\32xl\:hover\:opacity-25:hover{ + opacity: 0.25; + } + + .\32xl\:hover\:opacity-30:hover{ + opacity: 0.3; + } + + .\32xl\:hover\:opacity-40:hover{ + opacity: 0.4; + } + + .\32xl\:hover\:opacity-50:hover{ + opacity: 0.5; + } + + .\32xl\:hover\:opacity-60:hover{ + opacity: 0.6; + } + + .\32xl\:hover\:opacity-70:hover{ + opacity: 0.7; + } + + .\32xl\:hover\:opacity-75:hover{ + opacity: 0.75; + } + + .\32xl\:hover\:opacity-80:hover{ + opacity: 0.8; + } + + .\32xl\:hover\:opacity-90:hover{ + opacity: 0.9; + } + + .\32xl\:hover\:opacity-95:hover{ + opacity: 0.95; + } + + .\32xl\:hover\:opacity-100:hover{ + opacity: 1; + } + + .\32xl\:focus\:opacity-0:focus{ + opacity: 0; + } + + .\32xl\:focus\:opacity-5:focus{ + opacity: 0.05; + } + + .\32xl\:focus\:opacity-10:focus{ + opacity: 0.1; + } + + .\32xl\:focus\:opacity-20:focus{ + opacity: 0.2; + } + + .\32xl\:focus\:opacity-25:focus{ + opacity: 0.25; + } + + .\32xl\:focus\:opacity-30:focus{ + opacity: 0.3; + } + + .\32xl\:focus\:opacity-40:focus{ + opacity: 0.4; + } + + .\32xl\:focus\:opacity-50:focus{ + opacity: 0.5; + } + + .\32xl\:focus\:opacity-60:focus{ + opacity: 0.6; + } + + .\32xl\:focus\:opacity-70:focus{ + opacity: 0.7; + } + + .\32xl\:focus\:opacity-75:focus{ + opacity: 0.75; + } + + .\32xl\:focus\:opacity-80:focus{ + opacity: 0.8; + } + + .\32xl\:focus\:opacity-90:focus{ + opacity: 0.9; + } + + .\32xl\:focus\:opacity-95:focus{ + opacity: 0.95; + } + + .\32xl\:focus\:opacity-100:focus{ + opacity: 1; + } + + .\32xl\:bg-blend-normal{ + background-blend-mode: normal; + } + + .\32xl\:bg-blend-multiply{ + background-blend-mode: multiply; + } + + .\32xl\:bg-blend-screen{ + background-blend-mode: screen; + } + + .\32xl\:bg-blend-overlay{ + background-blend-mode: overlay; + } + + .\32xl\:bg-blend-darken{ + background-blend-mode: darken; + } + + .\32xl\:bg-blend-lighten{ + background-blend-mode: lighten; + } + + .\32xl\:bg-blend-color-dodge{ + background-blend-mode: color-dodge; + } + + .\32xl\:bg-blend-color-burn{ + background-blend-mode: color-burn; + } + + .\32xl\:bg-blend-hard-light{ + background-blend-mode: hard-light; + } + + .\32xl\:bg-blend-soft-light{ + background-blend-mode: soft-light; + } + + .\32xl\:bg-blend-difference{ + background-blend-mode: difference; + } + + .\32xl\:bg-blend-exclusion{ + background-blend-mode: exclusion; + } + + .\32xl\:bg-blend-hue{ + background-blend-mode: hue; + } + + .\32xl\:bg-blend-saturation{ + background-blend-mode: saturation; + } + + .\32xl\:bg-blend-color{ + background-blend-mode: color; + } + + .\32xl\:bg-blend-luminosity{ + background-blend-mode: luminosity; + } + + .\32xl\:mix-blend-normal{ + mix-blend-mode: normal; + } + + .\32xl\:mix-blend-multiply{ + mix-blend-mode: multiply; + } + + .\32xl\:mix-blend-screen{ + mix-blend-mode: screen; + } + + .\32xl\:mix-blend-overlay{ + mix-blend-mode: overlay; + } + + .\32xl\:mix-blend-darken{ + mix-blend-mode: darken; + } + + .\32xl\:mix-blend-lighten{ + mix-blend-mode: lighten; + } + + .\32xl\:mix-blend-color-dodge{ + mix-blend-mode: color-dodge; + } + + .\32xl\:mix-blend-color-burn{ + mix-blend-mode: color-burn; + } + + .\32xl\:mix-blend-hard-light{ + mix-blend-mode: hard-light; + } + + .\32xl\:mix-blend-soft-light{ + mix-blend-mode: soft-light; + } + + .\32xl\:mix-blend-difference{ + mix-blend-mode: difference; + } + + .\32xl\:mix-blend-exclusion{ + mix-blend-mode: exclusion; + } + + .\32xl\:mix-blend-hue{ + mix-blend-mode: hue; + } + + .\32xl\:mix-blend-saturation{ + mix-blend-mode: saturation; + } + + .\32xl\:mix-blend-color{ + mix-blend-mode: color; + } + + .\32xl\:mix-blend-luminosity{ + mix-blend-mode: luminosity; + } + + .\32xl\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-md{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-xl{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-2xl{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-inner{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-none{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-sm:focus-within{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow:focus-within{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-md:focus-within{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-lg:focus-within{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-xl:focus-within{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-2xl:focus-within{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-inner:focus-within{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-none:focus-within{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-sm:hover{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow:hover{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-md:hover{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-lg:hover{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-xl:hover{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-2xl:hover{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-inner:hover{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-none:hover{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-sm:focus{ + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow:focus{ + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-md:focus{ + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-lg:focus{ + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-xl:focus{ + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-2xl:focus{ + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-inner:focus{ + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-none:focus{ + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:outline-none{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:outline-white{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:outline-black{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-none:focus-within{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-white:focus-within{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-black:focus-within{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-white:focus{ + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-black:focus{ + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\: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); + } + + .\32xl\: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); + } + + .\32xl\: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); + } + + .\32xl\: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); + } + + .\32xl\:ring-8{ + --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(8px + 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); + } + + .\32xl\: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); + } + + .\32xl\:focus-within\:ring-0:focus-within{ + --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); + } + + .\32xl\:focus-within\:ring-1:focus-within{ + --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); + } + + .\32xl\:focus-within\:ring-2:focus-within{ + --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); + } + + .\32xl\:focus-within\:ring-4:focus-within{ + --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); + } + + .\32xl\:focus-within\:ring-8:focus-within{ + --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(8px + 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); + } + + .\32xl\:focus-within\:ring:focus-within{ + --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); + } + + .\32xl\: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); + } + + .\32xl\: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); + } + + .\32xl\: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); + } + + .\32xl\:focus\:ring-4: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(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); + } + + .\32xl\:focus\:ring-8: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(8px + 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); + } + + .\32xl\: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); + } + + .\32xl\:ring-inset{ + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-inset:focus-within{ + --tw-ring-inset: inset; + } + + .\32xl\:focus\:ring-inset:focus{ + --tw-ring-inset: inset; + } + + .\32xl\:ring-transparent{ + --tw-ring-color: transparent; + } + + .\32xl\:ring-current{ + --tw-ring-color: currentColor; + } + + .\32xl\:ring-black{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .\32xl\:ring-orange-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .\32xl\:ring-teal-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .\32xl\:ring-purple-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-200{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-400{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-500{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-600{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-700{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-800{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .\32xl\:ring-pink-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-transparent:focus-within{ + --tw-ring-color: transparent; + } + + .\32xl\:focus-within\:ring-current:focus-within{ + --tw-ring-color: currentColor; + } + + .\32xl\:focus-within\:ring-black:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-white:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-orange-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-teal-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-purple-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-100:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-200:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-300:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-400:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-500:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-600:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-700:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-800:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-pink-900:focus-within{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-transparent:focus{ + --tw-ring-color: transparent; + } + + .\32xl\:focus\:ring-current:focus{ + --tw-ring-color: currentColor; + } + + .\32xl\:focus\:ring-black:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-white:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 250, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 242, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(203, 213, 224, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(160, 174, 192, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(113, 128, 150, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(74, 85, 104, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(45, 55, 72, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(26, 32, 44, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 245, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 215, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 178, 178, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 129, 129, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 101, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 62, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(197, 48, 48, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(155, 44, 44, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 42, 42, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 235, 200, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 211, 141, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 173, 85, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 137, 54, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 107, 32, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(192, 86, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 66, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-orange-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(123, 52, 30, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 252, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 240, 137, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 224, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 201, 75, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 158, 46, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 121, 31, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 90, 22, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(116, 66, 16, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 255, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(198, 246, 213, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(154, 230, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(104, 211, 145, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(72, 187, 120, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 161, 105, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(47, 133, 90, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(39, 103, 73, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(34, 84, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(230, 255, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(178, 245, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 230, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 209, 197, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(56, 178, 172, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 151, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 122, 123, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(40, 94, 97, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-teal-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 248, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 227, 248, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(144, 205, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 179, 237, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(66, 153, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 130, 206, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(43, 108, 176, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 82, 130, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 67, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 244, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 218, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(163, 191, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 156, 245, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(102, 126, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(90, 103, 216, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 81, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 65, 144, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(60, 54, 107, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 216, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(214, 188, 250, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(183, 148, 244, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(159, 122, 234, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(128, 90, 213, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 70, 193, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 60, 154, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-purple-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(68, 51, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-100:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 245, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-200:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 215, 226, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-300:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 182, 206, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 135, 179, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 100, 166, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 63, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-700:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 50, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-800:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 38, 109, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-pink-900:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgba(112, 36, 89, var(--tw-ring-opacity)); + } + + .\32xl\:ring-opacity-0{ + --tw-ring-opacity: 0; + } + + .\32xl\:ring-opacity-5{ + --tw-ring-opacity: 0.05; + } + + .\32xl\:ring-opacity-10{ + --tw-ring-opacity: 0.1; + } + + .\32xl\:ring-opacity-20{ + --tw-ring-opacity: 0.2; + } + + .\32xl\:ring-opacity-25{ + --tw-ring-opacity: 0.25; + } + + .\32xl\:ring-opacity-30{ + --tw-ring-opacity: 0.3; + } + + .\32xl\:ring-opacity-40{ + --tw-ring-opacity: 0.4; + } + + .\32xl\:ring-opacity-50{ + --tw-ring-opacity: 0.5; + } + + .\32xl\:ring-opacity-60{ + --tw-ring-opacity: 0.6; + } + + .\32xl\:ring-opacity-70{ + --tw-ring-opacity: 0.7; + } + + .\32xl\:ring-opacity-75{ + --tw-ring-opacity: 0.75; + } + + .\32xl\:ring-opacity-80{ + --tw-ring-opacity: 0.8; + } + + .\32xl\:ring-opacity-90{ + --tw-ring-opacity: 0.9; + } + + .\32xl\:ring-opacity-95{ + --tw-ring-opacity: 0.95; + } + + .\32xl\:ring-opacity-100{ + --tw-ring-opacity: 1; + } + + .\32xl\:focus-within\:ring-opacity-0:focus-within{ + --tw-ring-opacity: 0; + } + + .\32xl\:focus-within\:ring-opacity-5:focus-within{ + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus-within\:ring-opacity-10:focus-within{ + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus-within\:ring-opacity-20:focus-within{ + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus-within\:ring-opacity-25:focus-within{ + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus-within\:ring-opacity-30:focus-within{ + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus-within\:ring-opacity-40:focus-within{ + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus-within\:ring-opacity-50:focus-within{ + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus-within\:ring-opacity-60:focus-within{ + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus-within\:ring-opacity-70:focus-within{ + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus-within\:ring-opacity-75:focus-within{ + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus-within\:ring-opacity-80:focus-within{ + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus-within\:ring-opacity-90:focus-within{ + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus-within\:ring-opacity-95:focus-within{ + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus-within\:ring-opacity-100:focus-within{ + --tw-ring-opacity: 1; + } + + .\32xl\:focus\:ring-opacity-0:focus{ + --tw-ring-opacity: 0; + } + + .\32xl\:focus\:ring-opacity-5:focus{ + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus\:ring-opacity-10:focus{ + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus\:ring-opacity-20:focus{ + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus\:ring-opacity-25:focus{ + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus\:ring-opacity-30:focus{ + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus\:ring-opacity-40:focus{ + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus\:ring-opacity-50:focus{ + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus\:ring-opacity-60:focus{ + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus\:ring-opacity-70:focus{ + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus\:ring-opacity-75:focus{ + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus\:ring-opacity-80:focus{ + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus\:ring-opacity-90:focus{ + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus\:ring-opacity-95:focus{ + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus\:ring-opacity-100:focus{ + --tw-ring-opacity: 1; + } + + .\32xl\:ring-offset-0{ + --tw-ring-offset-width: 0px; + } + + .\32xl\:ring-offset-1{ + --tw-ring-offset-width: 1px; + } + + .\32xl\:ring-offset-2{ + --tw-ring-offset-width: 2px; + } + + .\32xl\:ring-offset-4{ + --tw-ring-offset-width: 4px; + } + + .\32xl\:ring-offset-8{ + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus-within\:ring-offset-0:focus-within{ + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus-within\:ring-offset-1:focus-within{ + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus-within\:ring-offset-2:focus-within{ + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus-within\:ring-offset-4:focus-within{ + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus-within\:ring-offset-8:focus-within{ + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus\:ring-offset-0:focus{ + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus\:ring-offset-1:focus{ + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus\:ring-offset-4:focus{ + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus\:ring-offset-8:focus{ + --tw-ring-offset-width: 8px; + } + + .\32xl\:ring-offset-transparent{ + --tw-ring-offset-color: transparent; + } + + .\32xl\:ring-offset-current{ + --tw-ring-offset-color: currentColor; + } + + .\32xl\:ring-offset-black{ + --tw-ring-offset-color: #000; + } + + .\32xl\:ring-offset-white{ + --tw-ring-offset-color: #fff; + } + + .\32xl\:ring-offset-gray-100{ + --tw-ring-offset-color: #f7fafc; + } + + .\32xl\:ring-offset-gray-200{ + --tw-ring-offset-color: #edf2f7; + } + + .\32xl\:ring-offset-gray-300{ + --tw-ring-offset-color: #e2e8f0; + } + + .\32xl\:ring-offset-gray-400{ + --tw-ring-offset-color: #cbd5e0; + } + + .\32xl\:ring-offset-gray-500{ + --tw-ring-offset-color: #a0aec0; + } + + .\32xl\:ring-offset-gray-600{ + --tw-ring-offset-color: #718096; + } + + .\32xl\:ring-offset-gray-700{ + --tw-ring-offset-color: #4a5568; + } + + .\32xl\:ring-offset-gray-800{ + --tw-ring-offset-color: #2d3748; + } + + .\32xl\:ring-offset-gray-900{ + --tw-ring-offset-color: #1a202c; + } + + .\32xl\:ring-offset-red-100{ + --tw-ring-offset-color: #fff5f5; + } + + .\32xl\:ring-offset-red-200{ + --tw-ring-offset-color: #fed7d7; + } + + .\32xl\:ring-offset-red-300{ + --tw-ring-offset-color: #feb2b2; + } + + .\32xl\:ring-offset-red-400{ + --tw-ring-offset-color: #fc8181; + } + + .\32xl\:ring-offset-red-500{ + --tw-ring-offset-color: #f56565; + } + + .\32xl\:ring-offset-red-600{ + --tw-ring-offset-color: #e53e3e; + } + + .\32xl\:ring-offset-red-700{ + --tw-ring-offset-color: #c53030; + } + + .\32xl\:ring-offset-red-800{ + --tw-ring-offset-color: #9b2c2c; + } + + .\32xl\:ring-offset-red-900{ + --tw-ring-offset-color: #742a2a; + } + + .\32xl\:ring-offset-orange-100{ + --tw-ring-offset-color: #fffaf0; + } + + .\32xl\:ring-offset-orange-200{ + --tw-ring-offset-color: #feebc8; + } + + .\32xl\:ring-offset-orange-300{ + --tw-ring-offset-color: #fbd38d; + } + + .\32xl\:ring-offset-orange-400{ + --tw-ring-offset-color: #f6ad55; + } + + .\32xl\:ring-offset-orange-500{ + --tw-ring-offset-color: #ed8936; + } + + .\32xl\:ring-offset-orange-600{ + --tw-ring-offset-color: #dd6b20; + } + + .\32xl\:ring-offset-orange-700{ + --tw-ring-offset-color: #c05621; + } + + .\32xl\:ring-offset-orange-800{ + --tw-ring-offset-color: #9c4221; + } + + .\32xl\:ring-offset-orange-900{ + --tw-ring-offset-color: #7b341e; + } + + .\32xl\:ring-offset-yellow-100{ + --tw-ring-offset-color: #fffff0; + } + + .\32xl\:ring-offset-yellow-200{ + --tw-ring-offset-color: #fefcbf; + } + + .\32xl\:ring-offset-yellow-300{ + --tw-ring-offset-color: #faf089; + } + + .\32xl\:ring-offset-yellow-400{ + --tw-ring-offset-color: #f6e05e; + } + + .\32xl\:ring-offset-yellow-500{ + --tw-ring-offset-color: #ecc94b; + } + + .\32xl\:ring-offset-yellow-600{ + --tw-ring-offset-color: #d69e2e; + } + + .\32xl\:ring-offset-yellow-700{ + --tw-ring-offset-color: #b7791f; + } + + .\32xl\:ring-offset-yellow-800{ + --tw-ring-offset-color: #975a16; + } + + .\32xl\:ring-offset-yellow-900{ + --tw-ring-offset-color: #744210; + } + + .\32xl\:ring-offset-green-100{ + --tw-ring-offset-color: #f0fff4; + } + + .\32xl\:ring-offset-green-200{ + --tw-ring-offset-color: #c6f6d5; + } + + .\32xl\:ring-offset-green-300{ + --tw-ring-offset-color: #9ae6b4; + } + + .\32xl\:ring-offset-green-400{ + --tw-ring-offset-color: #68d391; + } + + .\32xl\:ring-offset-green-500{ + --tw-ring-offset-color: #48bb78; + } + + .\32xl\:ring-offset-green-600{ + --tw-ring-offset-color: #38a169; + } + + .\32xl\:ring-offset-green-700{ + --tw-ring-offset-color: #2f855a; + } + + .\32xl\:ring-offset-green-800{ + --tw-ring-offset-color: #276749; + } + + .\32xl\:ring-offset-green-900{ + --tw-ring-offset-color: #22543d; + } + + .\32xl\:ring-offset-teal-100{ + --tw-ring-offset-color: #e6fffa; + } + + .\32xl\:ring-offset-teal-200{ + --tw-ring-offset-color: #b2f5ea; + } + + .\32xl\:ring-offset-teal-300{ + --tw-ring-offset-color: #81e6d9; + } + + .\32xl\:ring-offset-teal-400{ + --tw-ring-offset-color: #4fd1c5; + } + + .\32xl\:ring-offset-teal-500{ + --tw-ring-offset-color: #38b2ac; + } + + .\32xl\:ring-offset-teal-600{ + --tw-ring-offset-color: #319795; + } + + .\32xl\:ring-offset-teal-700{ + --tw-ring-offset-color: #2c7a7b; + } + + .\32xl\:ring-offset-teal-800{ + --tw-ring-offset-color: #285e61; + } + + .\32xl\:ring-offset-teal-900{ + --tw-ring-offset-color: #234e52; + } + + .\32xl\:ring-offset-blue-100{ + --tw-ring-offset-color: #ebf8ff; + } + + .\32xl\:ring-offset-blue-200{ + --tw-ring-offset-color: #bee3f8; + } + + .\32xl\:ring-offset-blue-300{ + --tw-ring-offset-color: #90cdf4; + } + + .\32xl\:ring-offset-blue-400{ + --tw-ring-offset-color: #63b3ed; + } + + .\32xl\:ring-offset-blue-500{ + --tw-ring-offset-color: #4299e1; + } + + .\32xl\:ring-offset-blue-600{ + --tw-ring-offset-color: #3182ce; + } + + .\32xl\:ring-offset-blue-700{ + --tw-ring-offset-color: #2b6cb0; + } + + .\32xl\:ring-offset-blue-800{ + --tw-ring-offset-color: #2c5282; + } + + .\32xl\:ring-offset-blue-900{ + --tw-ring-offset-color: #2a4365; + } + + .\32xl\:ring-offset-indigo-100{ + --tw-ring-offset-color: #ebf4ff; + } + + .\32xl\:ring-offset-indigo-200{ + --tw-ring-offset-color: #c3dafe; + } + + .\32xl\:ring-offset-indigo-300{ + --tw-ring-offset-color: #a3bffa; + } + + .\32xl\:ring-offset-indigo-400{ + --tw-ring-offset-color: #7f9cf5; + } + + .\32xl\:ring-offset-indigo-500{ + --tw-ring-offset-color: #667eea; + } + + .\32xl\:ring-offset-indigo-600{ + --tw-ring-offset-color: #5a67d8; + } + + .\32xl\:ring-offset-indigo-700{ + --tw-ring-offset-color: #4c51bf; + } + + .\32xl\:ring-offset-indigo-800{ + --tw-ring-offset-color: #434190; + } + + .\32xl\:ring-offset-indigo-900{ + --tw-ring-offset-color: #3c366b; + } + + .\32xl\:ring-offset-purple-100{ + --tw-ring-offset-color: #faf5ff; + } + + .\32xl\:ring-offset-purple-200{ + --tw-ring-offset-color: #e9d8fd; + } + + .\32xl\:ring-offset-purple-300{ + --tw-ring-offset-color: #d6bcfa; + } + + .\32xl\:ring-offset-purple-400{ + --tw-ring-offset-color: #b794f4; + } + + .\32xl\:ring-offset-purple-500{ + --tw-ring-offset-color: #9f7aea; + } + + .\32xl\:ring-offset-purple-600{ + --tw-ring-offset-color: #805ad5; + } + + .\32xl\:ring-offset-purple-700{ + --tw-ring-offset-color: #6b46c1; + } + + .\32xl\:ring-offset-purple-800{ + --tw-ring-offset-color: #553c9a; + } + + .\32xl\:ring-offset-purple-900{ + --tw-ring-offset-color: #44337a; + } + + .\32xl\:ring-offset-pink-100{ + --tw-ring-offset-color: #fff5f7; + } + + .\32xl\:ring-offset-pink-200{ + --tw-ring-offset-color: #fed7e2; + } + + .\32xl\:ring-offset-pink-300{ + --tw-ring-offset-color: #fbb6ce; + } + + .\32xl\:ring-offset-pink-400{ + --tw-ring-offset-color: #f687b3; + } + + .\32xl\:ring-offset-pink-500{ + --tw-ring-offset-color: #ed64a6; + } + + .\32xl\:ring-offset-pink-600{ + --tw-ring-offset-color: #d53f8c; + } + + .\32xl\:ring-offset-pink-700{ + --tw-ring-offset-color: #b83280; + } + + .\32xl\:ring-offset-pink-800{ + --tw-ring-offset-color: #97266d; + } + + .\32xl\:ring-offset-pink-900{ + --tw-ring-offset-color: #702459; + } + + .\32xl\:focus-within\:ring-offset-transparent:focus-within{ + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus-within\:ring-offset-current:focus-within{ + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus-within\:ring-offset-black:focus-within{ + --tw-ring-offset-color: #000; + } + + .\32xl\:focus-within\:ring-offset-white:focus-within{ + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus-within\:ring-offset-gray-100:focus-within{ + --tw-ring-offset-color: #f7fafc; + } + + .\32xl\:focus-within\:ring-offset-gray-200:focus-within{ + --tw-ring-offset-color: #edf2f7; + } + + .\32xl\:focus-within\:ring-offset-gray-300:focus-within{ + --tw-ring-offset-color: #e2e8f0; + } + + .\32xl\:focus-within\:ring-offset-gray-400:focus-within{ + --tw-ring-offset-color: #cbd5e0; + } + + .\32xl\:focus-within\:ring-offset-gray-500:focus-within{ + --tw-ring-offset-color: #a0aec0; + } + + .\32xl\:focus-within\:ring-offset-gray-600:focus-within{ + --tw-ring-offset-color: #718096; + } + + .\32xl\:focus-within\:ring-offset-gray-700:focus-within{ + --tw-ring-offset-color: #4a5568; + } + + .\32xl\:focus-within\:ring-offset-gray-800:focus-within{ + --tw-ring-offset-color: #2d3748; + } + + .\32xl\:focus-within\:ring-offset-gray-900:focus-within{ + --tw-ring-offset-color: #1a202c; + } + + .\32xl\:focus-within\:ring-offset-red-100:focus-within{ + --tw-ring-offset-color: #fff5f5; + } + + .\32xl\:focus-within\:ring-offset-red-200:focus-within{ + --tw-ring-offset-color: #fed7d7; + } + + .\32xl\:focus-within\:ring-offset-red-300:focus-within{ + --tw-ring-offset-color: #feb2b2; + } + + .\32xl\:focus-within\:ring-offset-red-400:focus-within{ + --tw-ring-offset-color: #fc8181; + } + + .\32xl\:focus-within\:ring-offset-red-500:focus-within{ + --tw-ring-offset-color: #f56565; + } + + .\32xl\:focus-within\:ring-offset-red-600:focus-within{ + --tw-ring-offset-color: #e53e3e; + } + + .\32xl\:focus-within\:ring-offset-red-700:focus-within{ + --tw-ring-offset-color: #c53030; + } + + .\32xl\:focus-within\:ring-offset-red-800:focus-within{ + --tw-ring-offset-color: #9b2c2c; + } + + .\32xl\:focus-within\:ring-offset-red-900:focus-within{ + --tw-ring-offset-color: #742a2a; + } + + .\32xl\:focus-within\:ring-offset-orange-100:focus-within{ + --tw-ring-offset-color: #fffaf0; + } + + .\32xl\:focus-within\:ring-offset-orange-200:focus-within{ + --tw-ring-offset-color: #feebc8; + } + + .\32xl\:focus-within\:ring-offset-orange-300:focus-within{ + --tw-ring-offset-color: #fbd38d; + } + + .\32xl\:focus-within\:ring-offset-orange-400:focus-within{ + --tw-ring-offset-color: #f6ad55; + } + + .\32xl\:focus-within\:ring-offset-orange-500:focus-within{ + --tw-ring-offset-color: #ed8936; + } + + .\32xl\:focus-within\:ring-offset-orange-600:focus-within{ + --tw-ring-offset-color: #dd6b20; + } + + .\32xl\:focus-within\:ring-offset-orange-700:focus-within{ + --tw-ring-offset-color: #c05621; + } + + .\32xl\:focus-within\:ring-offset-orange-800:focus-within{ + --tw-ring-offset-color: #9c4221; + } + + .\32xl\:focus-within\:ring-offset-orange-900:focus-within{ + --tw-ring-offset-color: #7b341e; + } + + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within{ + --tw-ring-offset-color: #fffff0; + } + + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within{ + --tw-ring-offset-color: #fefcbf; + } + + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within{ + --tw-ring-offset-color: #faf089; + } + + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within{ + --tw-ring-offset-color: #f6e05e; + } + + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within{ + --tw-ring-offset-color: #ecc94b; + } + + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within{ + --tw-ring-offset-color: #d69e2e; + } + + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within{ + --tw-ring-offset-color: #b7791f; + } + + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within{ + --tw-ring-offset-color: #975a16; + } + + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within{ + --tw-ring-offset-color: #744210; + } + + .\32xl\:focus-within\:ring-offset-green-100:focus-within{ + --tw-ring-offset-color: #f0fff4; + } + + .\32xl\:focus-within\:ring-offset-green-200:focus-within{ + --tw-ring-offset-color: #c6f6d5; + } + + .\32xl\:focus-within\:ring-offset-green-300:focus-within{ + --tw-ring-offset-color: #9ae6b4; + } + + .\32xl\:focus-within\:ring-offset-green-400:focus-within{ + --tw-ring-offset-color: #68d391; + } + + .\32xl\:focus-within\:ring-offset-green-500:focus-within{ + --tw-ring-offset-color: #48bb78; + } + + .\32xl\:focus-within\:ring-offset-green-600:focus-within{ + --tw-ring-offset-color: #38a169; + } + + .\32xl\:focus-within\:ring-offset-green-700:focus-within{ + --tw-ring-offset-color: #2f855a; + } + + .\32xl\:focus-within\:ring-offset-green-800:focus-within{ + --tw-ring-offset-color: #276749; + } + + .\32xl\:focus-within\:ring-offset-green-900:focus-within{ + --tw-ring-offset-color: #22543d; + } + + .\32xl\:focus-within\:ring-offset-teal-100:focus-within{ + --tw-ring-offset-color: #e6fffa; + } + + .\32xl\:focus-within\:ring-offset-teal-200:focus-within{ + --tw-ring-offset-color: #b2f5ea; + } + + .\32xl\:focus-within\:ring-offset-teal-300:focus-within{ + --tw-ring-offset-color: #81e6d9; + } + + .\32xl\:focus-within\:ring-offset-teal-400:focus-within{ + --tw-ring-offset-color: #4fd1c5; + } + + .\32xl\:focus-within\:ring-offset-teal-500:focus-within{ + --tw-ring-offset-color: #38b2ac; + } + + .\32xl\:focus-within\:ring-offset-teal-600:focus-within{ + --tw-ring-offset-color: #319795; + } + + .\32xl\:focus-within\:ring-offset-teal-700:focus-within{ + --tw-ring-offset-color: #2c7a7b; + } + + .\32xl\:focus-within\:ring-offset-teal-800:focus-within{ + --tw-ring-offset-color: #285e61; + } + + .\32xl\:focus-within\:ring-offset-teal-900:focus-within{ + --tw-ring-offset-color: #234e52; + } + + .\32xl\:focus-within\:ring-offset-blue-100:focus-within{ + --tw-ring-offset-color: #ebf8ff; + } + + .\32xl\:focus-within\:ring-offset-blue-200:focus-within{ + --tw-ring-offset-color: #bee3f8; + } + + .\32xl\:focus-within\:ring-offset-blue-300:focus-within{ + --tw-ring-offset-color: #90cdf4; + } + + .\32xl\:focus-within\:ring-offset-blue-400:focus-within{ + --tw-ring-offset-color: #63b3ed; + } + + .\32xl\:focus-within\:ring-offset-blue-500:focus-within{ + --tw-ring-offset-color: #4299e1; + } + + .\32xl\:focus-within\:ring-offset-blue-600:focus-within{ + --tw-ring-offset-color: #3182ce; + } + + .\32xl\:focus-within\:ring-offset-blue-700:focus-within{ + --tw-ring-offset-color: #2b6cb0; + } + + .\32xl\:focus-within\:ring-offset-blue-800:focus-within{ + --tw-ring-offset-color: #2c5282; + } + + .\32xl\:focus-within\:ring-offset-blue-900:focus-within{ + --tw-ring-offset-color: #2a4365; + } + + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within{ + --tw-ring-offset-color: #ebf4ff; + } + + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within{ + --tw-ring-offset-color: #c3dafe; + } + + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within{ + --tw-ring-offset-color: #a3bffa; + } + + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within{ + --tw-ring-offset-color: #7f9cf5; + } + + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within{ + --tw-ring-offset-color: #667eea; + } + + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within{ + --tw-ring-offset-color: #5a67d8; + } + + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within{ + --tw-ring-offset-color: #4c51bf; + } + + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within{ + --tw-ring-offset-color: #434190; + } + + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within{ + --tw-ring-offset-color: #3c366b; + } + + .\32xl\:focus-within\:ring-offset-purple-100:focus-within{ + --tw-ring-offset-color: #faf5ff; + } + + .\32xl\:focus-within\:ring-offset-purple-200:focus-within{ + --tw-ring-offset-color: #e9d8fd; + } + + .\32xl\:focus-within\:ring-offset-purple-300:focus-within{ + --tw-ring-offset-color: #d6bcfa; + } + + .\32xl\:focus-within\:ring-offset-purple-400:focus-within{ + --tw-ring-offset-color: #b794f4; + } + + .\32xl\:focus-within\:ring-offset-purple-500:focus-within{ + --tw-ring-offset-color: #9f7aea; + } + + .\32xl\:focus-within\:ring-offset-purple-600:focus-within{ + --tw-ring-offset-color: #805ad5; + } + + .\32xl\:focus-within\:ring-offset-purple-700:focus-within{ + --tw-ring-offset-color: #6b46c1; + } + + .\32xl\:focus-within\:ring-offset-purple-800:focus-within{ + --tw-ring-offset-color: #553c9a; + } + + .\32xl\:focus-within\:ring-offset-purple-900:focus-within{ + --tw-ring-offset-color: #44337a; + } + + .\32xl\:focus-within\:ring-offset-pink-100:focus-within{ + --tw-ring-offset-color: #fff5f7; + } + + .\32xl\:focus-within\:ring-offset-pink-200:focus-within{ + --tw-ring-offset-color: #fed7e2; + } + + .\32xl\:focus-within\:ring-offset-pink-300:focus-within{ + --tw-ring-offset-color: #fbb6ce; + } + + .\32xl\:focus-within\:ring-offset-pink-400:focus-within{ + --tw-ring-offset-color: #f687b3; + } + + .\32xl\:focus-within\:ring-offset-pink-500:focus-within{ + --tw-ring-offset-color: #ed64a6; + } + + .\32xl\:focus-within\:ring-offset-pink-600:focus-within{ + --tw-ring-offset-color: #d53f8c; + } + + .\32xl\:focus-within\:ring-offset-pink-700:focus-within{ + --tw-ring-offset-color: #b83280; + } + + .\32xl\:focus-within\:ring-offset-pink-800:focus-within{ + --tw-ring-offset-color: #97266d; + } + + .\32xl\:focus-within\:ring-offset-pink-900:focus-within{ + --tw-ring-offset-color: #702459; + } + + .\32xl\:focus\:ring-offset-transparent:focus{ + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus\:ring-offset-current:focus{ + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus\:ring-offset-black:focus{ + --tw-ring-offset-color: #000; + } + + .\32xl\:focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus\:ring-offset-gray-100:focus{ + --tw-ring-offset-color: #f7fafc; + } + + .\32xl\:focus\:ring-offset-gray-200:focus{ + --tw-ring-offset-color: #edf2f7; + } + + .\32xl\:focus\:ring-offset-gray-300:focus{ + --tw-ring-offset-color: #e2e8f0; + } + + .\32xl\:focus\:ring-offset-gray-400:focus{ + --tw-ring-offset-color: #cbd5e0; + } + + .\32xl\:focus\:ring-offset-gray-500:focus{ + --tw-ring-offset-color: #a0aec0; + } + + .\32xl\:focus\:ring-offset-gray-600:focus{ + --tw-ring-offset-color: #718096; + } + + .\32xl\:focus\:ring-offset-gray-700:focus{ + --tw-ring-offset-color: #4a5568; + } + + .\32xl\:focus\:ring-offset-gray-800:focus{ + --tw-ring-offset-color: #2d3748; + } + + .\32xl\:focus\:ring-offset-gray-900:focus{ + --tw-ring-offset-color: #1a202c; + } + + .\32xl\:focus\:ring-offset-red-100:focus{ + --tw-ring-offset-color: #fff5f5; + } + + .\32xl\:focus\:ring-offset-red-200:focus{ + --tw-ring-offset-color: #fed7d7; + } + + .\32xl\:focus\:ring-offset-red-300:focus{ + --tw-ring-offset-color: #feb2b2; + } + + .\32xl\:focus\:ring-offset-red-400:focus{ + --tw-ring-offset-color: #fc8181; + } + + .\32xl\:focus\:ring-offset-red-500:focus{ + --tw-ring-offset-color: #f56565; + } + + .\32xl\:focus\:ring-offset-red-600:focus{ + --tw-ring-offset-color: #e53e3e; + } + + .\32xl\:focus\:ring-offset-red-700:focus{ + --tw-ring-offset-color: #c53030; + } + + .\32xl\:focus\:ring-offset-red-800:focus{ + --tw-ring-offset-color: #9b2c2c; + } + + .\32xl\:focus\:ring-offset-red-900:focus{ + --tw-ring-offset-color: #742a2a; + } + + .\32xl\:focus\:ring-offset-orange-100:focus{ + --tw-ring-offset-color: #fffaf0; + } + + .\32xl\:focus\:ring-offset-orange-200:focus{ + --tw-ring-offset-color: #feebc8; + } + + .\32xl\:focus\:ring-offset-orange-300:focus{ + --tw-ring-offset-color: #fbd38d; + } + + .\32xl\:focus\:ring-offset-orange-400:focus{ + --tw-ring-offset-color: #f6ad55; + } + + .\32xl\:focus\:ring-offset-orange-500:focus{ + --tw-ring-offset-color: #ed8936; + } + + .\32xl\:focus\:ring-offset-orange-600:focus{ + --tw-ring-offset-color: #dd6b20; + } + + .\32xl\:focus\:ring-offset-orange-700:focus{ + --tw-ring-offset-color: #c05621; + } + + .\32xl\:focus\:ring-offset-orange-800:focus{ + --tw-ring-offset-color: #9c4221; + } + + .\32xl\:focus\:ring-offset-orange-900:focus{ + --tw-ring-offset-color: #7b341e; + } + + .\32xl\:focus\:ring-offset-yellow-100:focus{ + --tw-ring-offset-color: #fffff0; + } + + .\32xl\:focus\:ring-offset-yellow-200:focus{ + --tw-ring-offset-color: #fefcbf; + } + + .\32xl\:focus\:ring-offset-yellow-300:focus{ + --tw-ring-offset-color: #faf089; + } + + .\32xl\:focus\:ring-offset-yellow-400:focus{ + --tw-ring-offset-color: #f6e05e; + } + + .\32xl\:focus\:ring-offset-yellow-500:focus{ + --tw-ring-offset-color: #ecc94b; + } + + .\32xl\:focus\:ring-offset-yellow-600:focus{ + --tw-ring-offset-color: #d69e2e; + } + + .\32xl\:focus\:ring-offset-yellow-700:focus{ + --tw-ring-offset-color: #b7791f; + } + + .\32xl\:focus\:ring-offset-yellow-800:focus{ + --tw-ring-offset-color: #975a16; + } + + .\32xl\:focus\:ring-offset-yellow-900:focus{ + --tw-ring-offset-color: #744210; + } + + .\32xl\:focus\:ring-offset-green-100:focus{ + --tw-ring-offset-color: #f0fff4; + } + + .\32xl\:focus\:ring-offset-green-200:focus{ + --tw-ring-offset-color: #c6f6d5; + } + + .\32xl\:focus\:ring-offset-green-300:focus{ + --tw-ring-offset-color: #9ae6b4; + } + + .\32xl\:focus\:ring-offset-green-400:focus{ + --tw-ring-offset-color: #68d391; + } + + .\32xl\:focus\:ring-offset-green-500:focus{ + --tw-ring-offset-color: #48bb78; + } + + .\32xl\:focus\:ring-offset-green-600:focus{ + --tw-ring-offset-color: #38a169; + } + + .\32xl\:focus\:ring-offset-green-700:focus{ + --tw-ring-offset-color: #2f855a; + } + + .\32xl\:focus\:ring-offset-green-800:focus{ + --tw-ring-offset-color: #276749; + } + + .\32xl\:focus\:ring-offset-green-900:focus{ + --tw-ring-offset-color: #22543d; + } + + .\32xl\:focus\:ring-offset-teal-100:focus{ + --tw-ring-offset-color: #e6fffa; + } + + .\32xl\:focus\:ring-offset-teal-200:focus{ + --tw-ring-offset-color: #b2f5ea; + } + + .\32xl\:focus\:ring-offset-teal-300:focus{ + --tw-ring-offset-color: #81e6d9; + } + + .\32xl\:focus\:ring-offset-teal-400:focus{ + --tw-ring-offset-color: #4fd1c5; + } + + .\32xl\:focus\:ring-offset-teal-500:focus{ + --tw-ring-offset-color: #38b2ac; + } + + .\32xl\:focus\:ring-offset-teal-600:focus{ + --tw-ring-offset-color: #319795; + } + + .\32xl\:focus\:ring-offset-teal-700:focus{ + --tw-ring-offset-color: #2c7a7b; + } + + .\32xl\:focus\:ring-offset-teal-800:focus{ + --tw-ring-offset-color: #285e61; + } + + .\32xl\:focus\:ring-offset-teal-900:focus{ + --tw-ring-offset-color: #234e52; + } + + .\32xl\:focus\:ring-offset-blue-100:focus{ + --tw-ring-offset-color: #ebf8ff; + } + + .\32xl\:focus\:ring-offset-blue-200:focus{ + --tw-ring-offset-color: #bee3f8; + } + + .\32xl\:focus\:ring-offset-blue-300:focus{ + --tw-ring-offset-color: #90cdf4; + } + + .\32xl\:focus\:ring-offset-blue-400:focus{ + --tw-ring-offset-color: #63b3ed; + } + + .\32xl\:focus\:ring-offset-blue-500:focus{ + --tw-ring-offset-color: #4299e1; + } + + .\32xl\:focus\:ring-offset-blue-600:focus{ + --tw-ring-offset-color: #3182ce; + } + + .\32xl\:focus\:ring-offset-blue-700:focus{ + --tw-ring-offset-color: #2b6cb0; + } + + .\32xl\:focus\:ring-offset-blue-800:focus{ + --tw-ring-offset-color: #2c5282; + } + + .\32xl\:focus\:ring-offset-blue-900:focus{ + --tw-ring-offset-color: #2a4365; + } + + .\32xl\:focus\:ring-offset-indigo-100:focus{ + --tw-ring-offset-color: #ebf4ff; + } + + .\32xl\:focus\:ring-offset-indigo-200:focus{ + --tw-ring-offset-color: #c3dafe; + } + + .\32xl\:focus\:ring-offset-indigo-300:focus{ + --tw-ring-offset-color: #a3bffa; + } + + .\32xl\:focus\:ring-offset-indigo-400:focus{ + --tw-ring-offset-color: #7f9cf5; + } + + .\32xl\:focus\:ring-offset-indigo-500:focus{ + --tw-ring-offset-color: #667eea; + } + + .\32xl\:focus\:ring-offset-indigo-600:focus{ + --tw-ring-offset-color: #5a67d8; + } + + .\32xl\:focus\:ring-offset-indigo-700:focus{ + --tw-ring-offset-color: #4c51bf; + } + + .\32xl\:focus\:ring-offset-indigo-800:focus{ + --tw-ring-offset-color: #434190; + } + + .\32xl\:focus\:ring-offset-indigo-900:focus{ + --tw-ring-offset-color: #3c366b; + } + + .\32xl\:focus\:ring-offset-purple-100:focus{ + --tw-ring-offset-color: #faf5ff; + } + + .\32xl\:focus\:ring-offset-purple-200:focus{ + --tw-ring-offset-color: #e9d8fd; + } + + .\32xl\:focus\:ring-offset-purple-300:focus{ + --tw-ring-offset-color: #d6bcfa; + } + + .\32xl\:focus\:ring-offset-purple-400:focus{ + --tw-ring-offset-color: #b794f4; + } + + .\32xl\:focus\:ring-offset-purple-500:focus{ + --tw-ring-offset-color: #9f7aea; + } + + .\32xl\:focus\:ring-offset-purple-600:focus{ + --tw-ring-offset-color: #805ad5; + } + + .\32xl\:focus\:ring-offset-purple-700:focus{ + --tw-ring-offset-color: #6b46c1; + } + + .\32xl\:focus\:ring-offset-purple-800:focus{ + --tw-ring-offset-color: #553c9a; + } + + .\32xl\:focus\:ring-offset-purple-900:focus{ + --tw-ring-offset-color: #44337a; + } + + .\32xl\:focus\:ring-offset-pink-100:focus{ + --tw-ring-offset-color: #fff5f7; + } + + .\32xl\:focus\:ring-offset-pink-200:focus{ + --tw-ring-offset-color: #fed7e2; + } + + .\32xl\:focus\:ring-offset-pink-300:focus{ + --tw-ring-offset-color: #fbb6ce; + } + + .\32xl\:focus\:ring-offset-pink-400:focus{ + --tw-ring-offset-color: #f687b3; + } + + .\32xl\:focus\:ring-offset-pink-500:focus{ + --tw-ring-offset-color: #ed64a6; + } + + .\32xl\:focus\:ring-offset-pink-600:focus{ + --tw-ring-offset-color: #d53f8c; + } + + .\32xl\:focus\:ring-offset-pink-700:focus{ + --tw-ring-offset-color: #b83280; + } + + .\32xl\:focus\:ring-offset-pink-800:focus{ + --tw-ring-offset-color: #97266d; + } + + .\32xl\:focus\:ring-offset-pink-900:focus{ + --tw-ring-offset-color: #702459; + } + + .\32xl\:filter{ + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + 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); + } + + .\32xl\:filter-none{ + filter: none; + } + + .\32xl\:blur-0{ + --tw-blur: blur(0); + } + + .\32xl\:blur-none{ + --tw-blur: blur(0); + } + + .\32xl\:blur-sm{ + --tw-blur: blur(4px); + } + + .\32xl\:blur{ + --tw-blur: blur(8px); + } + + .\32xl\:blur-md{ + --tw-blur: blur(12px); + } + + .\32xl\:blur-lg{ + --tw-blur: blur(16px); + } + + .\32xl\:blur-xl{ + --tw-blur: blur(24px); + } + + .\32xl\:blur-2xl{ + --tw-blur: blur(40px); + } + + .\32xl\:blur-3xl{ + --tw-blur: blur(64px); + } + + .\32xl\:brightness-0{ + --tw-brightness: brightness(0); + } + + .\32xl\:brightness-50{ + --tw-brightness: brightness(.5); + } + + .\32xl\:brightness-75{ + --tw-brightness: brightness(.75); + } + + .\32xl\:brightness-90{ + --tw-brightness: brightness(.9); + } + + .\32xl\:brightness-95{ + --tw-brightness: brightness(.95); + } + + .\32xl\:brightness-100{ + --tw-brightness: brightness(1); + } + + .\32xl\:brightness-105{ + --tw-brightness: brightness(1.05); + } + + .\32xl\:brightness-110{ + --tw-brightness: brightness(1.1); + } + + .\32xl\:brightness-125{ + --tw-brightness: brightness(1.25); + } + + .\32xl\:brightness-150{ + --tw-brightness: brightness(1.5); + } + + .\32xl\:brightness-200{ + --tw-brightness: brightness(2); + } + + .\32xl\:contrast-0{ + --tw-contrast: contrast(0); + } + + .\32xl\:contrast-50{ + --tw-contrast: contrast(.5); + } + + .\32xl\:contrast-75{ + --tw-contrast: contrast(.75); + } + + .\32xl\:contrast-100{ + --tw-contrast: contrast(1); + } + + .\32xl\:contrast-125{ + --tw-contrast: contrast(1.25); + } + + .\32xl\:contrast-150{ + --tw-contrast: contrast(1.5); + } + + .\32xl\:contrast-200{ + --tw-contrast: contrast(2); + } + + .\32xl\:drop-shadow-sm{ + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + } + + .\32xl\:drop-shadow{ + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + } + + .\32xl\:drop-shadow-md{ + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + } + + .\32xl\:drop-shadow-lg{ + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + } + + .\32xl\:drop-shadow-xl{ + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + } + + .\32xl\:drop-shadow-2xl{ + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + } + + .\32xl\:drop-shadow-none{ + --tw-drop-shadow: drop-shadow(0 0 #0000); + } + + .\32xl\:grayscale-0{ + --tw-grayscale: grayscale(0); + } + + .\32xl\:grayscale{ + --tw-grayscale: grayscale(100%); + } + + .\32xl\:hue-rotate-0{ + --tw-hue-rotate: hue-rotate(0deg); + } + + .\32xl\:hue-rotate-15{ + --tw-hue-rotate: hue-rotate(15deg); + } + + .\32xl\:hue-rotate-30{ + --tw-hue-rotate: hue-rotate(30deg); + } + + .\32xl\:hue-rotate-60{ + --tw-hue-rotate: hue-rotate(60deg); + } + + .\32xl\:hue-rotate-90{ + --tw-hue-rotate: hue-rotate(90deg); + } + + .\32xl\:hue-rotate-180{ + --tw-hue-rotate: hue-rotate(180deg); + } + + .\32xl\:-hue-rotate-180{ + --tw-hue-rotate: hue-rotate(-180deg); + } + + .\32xl\:-hue-rotate-90{ + --tw-hue-rotate: hue-rotate(-90deg); + } + + .\32xl\:-hue-rotate-60{ + --tw-hue-rotate: hue-rotate(-60deg); + } + + .\32xl\:-hue-rotate-30{ + --tw-hue-rotate: hue-rotate(-30deg); + } + + .\32xl\:-hue-rotate-15{ + --tw-hue-rotate: hue-rotate(-15deg); + } + + .\32xl\:invert-0{ + --tw-invert: invert(0); + } + + .\32xl\:invert{ + --tw-invert: invert(100%); + } + + .\32xl\:saturate-0{ + --tw-saturate: saturate(0); + } + + .\32xl\:saturate-50{ + --tw-saturate: saturate(.5); + } + + .\32xl\:saturate-100{ + --tw-saturate: saturate(1); + } + + .\32xl\:saturate-150{ + --tw-saturate: saturate(1.5); + } + + .\32xl\:saturate-200{ + --tw-saturate: saturate(2); + } + + .\32xl\:sepia-0{ + --tw-sepia: sepia(0); + } + + .\32xl\:sepia{ + --tw-sepia: sepia(100%); + } + + .\32xl\:backdrop-filter{ + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + -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); + } + + .\32xl\:backdrop-filter-none{ + -webkit-backdrop-filter: none; + backdrop-filter: none; + } + + .\32xl\:backdrop-blur-0{ + --tw-backdrop-blur: blur(0); + } + + .\32xl\:backdrop-blur-none{ + --tw-backdrop-blur: blur(0); + } + + .\32xl\:backdrop-blur-sm{ + --tw-backdrop-blur: blur(4px); + } + + .\32xl\:backdrop-blur{ + --tw-backdrop-blur: blur(8px); + } + + .\32xl\:backdrop-blur-md{ + --tw-backdrop-blur: blur(12px); + } + + .\32xl\:backdrop-blur-lg{ + --tw-backdrop-blur: blur(16px); + } + + .\32xl\:backdrop-blur-xl{ + --tw-backdrop-blur: blur(24px); + } + + .\32xl\:backdrop-blur-2xl{ + --tw-backdrop-blur: blur(40px); + } + + .\32xl\:backdrop-blur-3xl{ + --tw-backdrop-blur: blur(64px); + } + + .\32xl\:backdrop-brightness-0{ + --tw-backdrop-brightness: brightness(0); + } + + .\32xl\:backdrop-brightness-50{ + --tw-backdrop-brightness: brightness(.5); + } + + .\32xl\:backdrop-brightness-75{ + --tw-backdrop-brightness: brightness(.75); + } + + .\32xl\:backdrop-brightness-90{ + --tw-backdrop-brightness: brightness(.9); + } + + .\32xl\:backdrop-brightness-95{ + --tw-backdrop-brightness: brightness(.95); + } + + .\32xl\:backdrop-brightness-100{ + --tw-backdrop-brightness: brightness(1); + } + + .\32xl\:backdrop-brightness-105{ + --tw-backdrop-brightness: brightness(1.05); + } + + .\32xl\:backdrop-brightness-110{ + --tw-backdrop-brightness: brightness(1.1); + } + + .\32xl\:backdrop-brightness-125{ + --tw-backdrop-brightness: brightness(1.25); + } + + .\32xl\:backdrop-brightness-150{ + --tw-backdrop-brightness: brightness(1.5); + } + + .\32xl\:backdrop-brightness-200{ + --tw-backdrop-brightness: brightness(2); + } + + .\32xl\:backdrop-contrast-0{ + --tw-backdrop-contrast: contrast(0); + } + + .\32xl\:backdrop-contrast-50{ + --tw-backdrop-contrast: contrast(.5); + } + + .\32xl\:backdrop-contrast-75{ + --tw-backdrop-contrast: contrast(.75); + } + + .\32xl\:backdrop-contrast-100{ + --tw-backdrop-contrast: contrast(1); + } + + .\32xl\:backdrop-contrast-125{ + --tw-backdrop-contrast: contrast(1.25); + } + + .\32xl\:backdrop-contrast-150{ + --tw-backdrop-contrast: contrast(1.5); + } + + .\32xl\:backdrop-contrast-200{ + --tw-backdrop-contrast: contrast(2); + } + + .\32xl\:backdrop-grayscale-0{ + --tw-backdrop-grayscale: grayscale(0); + } + + .\32xl\:backdrop-grayscale{ + --tw-backdrop-grayscale: grayscale(100%); + } + + .\32xl\:backdrop-hue-rotate-0{ + --tw-backdrop-hue-rotate: hue-rotate(0deg); + } + + .\32xl\:backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(15deg); + } + + .\32xl\:backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(30deg); + } + + .\32xl\:backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(60deg); + } + + .\32xl\:backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(90deg); + } + + .\32xl\:backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(180deg); + } + + .\32xl\:-backdrop-hue-rotate-180{ + --tw-backdrop-hue-rotate: hue-rotate(-180deg); + } + + .\32xl\:-backdrop-hue-rotate-90{ + --tw-backdrop-hue-rotate: hue-rotate(-90deg); + } + + .\32xl\:-backdrop-hue-rotate-60{ + --tw-backdrop-hue-rotate: hue-rotate(-60deg); + } + + .\32xl\:-backdrop-hue-rotate-30{ + --tw-backdrop-hue-rotate: hue-rotate(-30deg); + } + + .\32xl\:-backdrop-hue-rotate-15{ + --tw-backdrop-hue-rotate: hue-rotate(-15deg); + } + + .\32xl\:backdrop-invert-0{ + --tw-backdrop-invert: invert(0); + } + + .\32xl\:backdrop-invert{ + --tw-backdrop-invert: invert(100%); + } + + .\32xl\:backdrop-opacity-0{ + --tw-backdrop-opacity: opacity(0); + } + + .\32xl\:backdrop-opacity-5{ + --tw-backdrop-opacity: opacity(0.05); + } + + .\32xl\:backdrop-opacity-10{ + --tw-backdrop-opacity: opacity(0.1); + } + + .\32xl\:backdrop-opacity-20{ + --tw-backdrop-opacity: opacity(0.2); + } + + .\32xl\:backdrop-opacity-25{ + --tw-backdrop-opacity: opacity(0.25); + } + + .\32xl\:backdrop-opacity-30{ + --tw-backdrop-opacity: opacity(0.3); + } + + .\32xl\:backdrop-opacity-40{ + --tw-backdrop-opacity: opacity(0.4); + } + + .\32xl\:backdrop-opacity-50{ + --tw-backdrop-opacity: opacity(0.5); + } + + .\32xl\:backdrop-opacity-60{ + --tw-backdrop-opacity: opacity(0.6); + } + + .\32xl\:backdrop-opacity-70{ + --tw-backdrop-opacity: opacity(0.7); + } + + .\32xl\:backdrop-opacity-75{ + --tw-backdrop-opacity: opacity(0.75); + } + + .\32xl\:backdrop-opacity-80{ + --tw-backdrop-opacity: opacity(0.8); + } + + .\32xl\:backdrop-opacity-90{ + --tw-backdrop-opacity: opacity(0.9); + } + + .\32xl\:backdrop-opacity-95{ + --tw-backdrop-opacity: opacity(0.95); + } + + .\32xl\:backdrop-opacity-100{ + --tw-backdrop-opacity: opacity(1); + } + + .\32xl\:backdrop-saturate-0{ + --tw-backdrop-saturate: saturate(0); + } + + .\32xl\:backdrop-saturate-50{ + --tw-backdrop-saturate: saturate(.5); + } + + .\32xl\:backdrop-saturate-100{ + --tw-backdrop-saturate: saturate(1); + } + + .\32xl\:backdrop-saturate-150{ + --tw-backdrop-saturate: saturate(1.5); + } + + .\32xl\:backdrop-saturate-200{ + --tw-backdrop-saturate: saturate(2); + } + + .\32xl\:backdrop-sepia-0{ + --tw-backdrop-sepia: sepia(0); + } + + .\32xl\:backdrop-sepia{ + --tw-backdrop-sepia: sepia(100%); + } + + .\32xl\:transition-none{ + transition-property: none; + } + + .\32xl\:transition-all{ + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition{ + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: background-color, border-color, 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; + } + + .\32xl\:transition-colors{ + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity{ + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow{ + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform{ + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:delay-75{ + transition-delay: 75ms; + } + + .\32xl\:delay-100{ + transition-delay: 100ms; + } + + .\32xl\:delay-150{ + transition-delay: 150ms; + } + + .\32xl\:delay-200{ + transition-delay: 200ms; + } + + .\32xl\:delay-300{ + transition-delay: 300ms; + } + + .\32xl\:delay-500{ + transition-delay: 500ms; + } + + .\32xl\:delay-700{ + transition-delay: 700ms; + } + + .\32xl\:delay-1000{ + transition-delay: 1000ms; + } + + .\32xl\:duration-75{ + transition-duration: 75ms; + } + + .\32xl\:duration-100{ + transition-duration: 100ms; + } + + .\32xl\:duration-150{ + transition-duration: 150ms; + } + + .\32xl\:duration-200{ + transition-duration: 200ms; + } + + .\32xl\:duration-300{ + transition-duration: 300ms; + } + + .\32xl\:duration-500{ + transition-duration: 500ms; + } + + .\32xl\:duration-700{ + transition-duration: 700ms; + } + + .\32xl\:duration-1000{ + transition-duration: 1000ms; + } + + .\32xl\:ease-linear{ + transition-timing-function: linear; + } + + .\32xl\:ease-in{ + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out{ + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out{ + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} \ No newline at end of file diff --git a/test/input/revealjs-demo/main.js b/test/input/revealjs-demo/main.js new file mode 100644 index 0000000..8914a10 --- /dev/null +++ b/test/input/revealjs-demo/main.js @@ -0,0 +1,630 @@ +/******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; +/******/ +/******/ // The require function +/******/ function __webpack_require__(moduleId) { +/******/ +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) { +/******/ return installedModules[moduleId].exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ i: moduleId, +/******/ l: false, +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); +/******/ +/******/ // Flag the module as loaded +/******/ module.l = true; +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/******/ +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; +/******/ +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); +/******/ } +/******/ }; +/******/ +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ +/******/ // create a fake namespace object +/******/ // mode & 1: value is a module id, require it +/******/ // mode & 2: merge all properties of value into the ns +/******/ // mode & 4: return value when already ns object +/******/ // mode & 8|1: behave like require +/******/ __webpack_require__.t = function(value, mode) { +/******/ if(mode & 1) value = __webpack_require__(value); +/******/ if(mode & 8) return value; +/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; +/******/ var ns = Object.create(null); +/******/ __webpack_require__.r(ns); +/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); +/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); +/******/ return ns; +/******/ }; +/******/ +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __webpack_require__.n = function(module) { +/******/ var getter = module && module.__esModule ? +/******/ function getDefault() { return module['default']; } : +/******/ function getModuleExports() { return module; }; +/******/ __webpack_require__.d(getter, 'a', getter); +/******/ return getter; +/******/ }; +/******/ +/******/ // Object.prototype.hasOwnProperty.call +/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; +/******/ +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; +/******/ +/******/ +/******/ // Load entry module and return exports +/******/ return __webpack_require__(__webpack_require__.s = "./js/main.js"); +/******/ }) +/************************************************************************/ +/******/ ({ + +/***/ "./js/components/hover.js": +/*!********************************!*\ + !*** ./js/components/hover.js ***! + \********************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Directional hover effect copied from https://hakim.se.\n */\nlet lastMouseX = 0,\n lastMouseY = 0;\nlet pointerDirectionX = 0,\n pointerDirectionY = 0;\nlet hoverTimeout;\nlet lastMouseLeave;\n\nlet transform = (element, x, y, scale) => {\n element.style.transform = 'scale(' + scale + ') translate(' + x + 'px,' + y + 'px)';\n};\n\nlet transformOrigin = (element, x, y) => {\n let tx = event.offsetX / element.offsetWidth * 100;\n let ty = event.offsetY / element.offsetHeight * 100;\n tx = Math.min(Math.max(tx, 0), 100);\n ty = Math.min(Math.max(ty, 0), 100);\n element.style.transformOrigin = Math.round(tx) + '% ' + Math.round(ty) + '%';\n};\n\nlet bindDirectionalHovers = (element, childSelector) => {\n let children = Array.from(element.querySelectorAll(childSelector));\n element.addEventListener('mouseenter', function (event) {\n clearTimeout(hoverTimeout); // Move the children into their start positions\n\n children.forEach(childElement => {\n transformOrigin(childElement, event.offsetX, event.offsetY);\n let scale = Date.now() - lastMouseLeave < 200 ? 1 : 0.7;\n childElement.classList.add('no-transition');\n transform(childElement, -16 * pointerDirectionX, -16 * pointerDirectionY, scale);\n childElement.offsetHeight;\n childElement.classList.remove('no-transition');\n }); // Wait until the next cycle and trigger the hover effect\n\n hoverTimeout = setTimeout(() => {\n element.classList.add('hover');\n }, 1);\n }, false);\n element.addEventListener('mouseleave', function (event) {\n lastMouseLeave = Date.now();\n clearTimeout(hoverTimeout); // Remove the hover effect and move the child in the\n // direction of the mouse\n\n element.classList.remove('hover');\n children.forEach(childElement => {\n transformOrigin(childElement, event.offsetX, event.offsetY);\n transform(childElement, 16 * pointerDirectionX, 16 * pointerDirectionY, 0.7);\n });\n }, false);\n};\n\ndocument.addEventListener('mousemove', () => {\n if (lastMouseX && lastMouseY) {\n let ox = event.pageX - lastMouseX;\n let oy = event.pageY - lastMouseY; // let longestMovement = Math.max( Math.abs( ox ), Math.abs( oy ) );\n // let sx = ox/longestMovement;\n // let sy = oy/longestMovement;\n\n pointerDirectionX = ox / 6;\n pointerDirectionY = oy / 6;\n pointerDirectionX = Math.max(Math.min(pointerDirectionX, 2), -2);\n pointerDirectionY = Math.max(Math.min(pointerDirectionY, 2), -2);\n }\n\n lastMouseX = event.pageX;\n lastMouseY = event.pageY;\n});\ndocument.addEventListener('scroll', event => {\n lastMouseX = null;\n lastMouseY = null;\n pointerDirectionX = 0;\n pointerDirectionY = 0;\n}, {\n passive: true\n});\n/* harmony default export */ __webpack_exports__[\"default\"] = (selector => {\n if (!/ipad|iphone|ipod|android|windows\\sphone/gi.test(navigator.userAgent)) {\n // Wrap anchors in the markup we need for hover effects\n Array.from(document.querySelectorAll(selector)).forEach(element => {\n element.classList.add('r-anchor');\n element.innerHTML = '' + element.innerHTML + '';\n });\n Array.from(document.querySelectorAll('.r-anchor')).forEach(element => {\n bindDirectionalHovers(element, '.r-anchor-background');\n });\n }\n});\n\n//# sourceURL=webpack:///./js/components/hover.js?"); + +/***/ }), + +/***/ "./js/components/navigation.js": +/*!*************************************!*\ + !*** ./js/components/navigation.js ***! + \*************************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => {\n let sidebar = document.querySelector('.sidebar');\n\n if (sidebar) {\n // Update the selected item in the navigation to\n // match the current URL & hash.\n let updateSelection = () => {\n let currentURL = window.location.pathname.replace(/\\/$/, '') + '/' + window.location.hash;\n let newSelection = sidebar.querySelector('.nav-link[href=\"' + currentURL + '\"]');\n\n if (newSelection) {\n let selectedItem = sidebar.querySelector('.nav-link.selected');\n if (selectedItem) selectedItem.classList.remove('selected');\n newSelection.classList.add('selected');\n }\n };\n\n updateSelection();\n window.addEventListener('hashchange', updateSelection); // Remember the sidebar scroll position between page loads\n\n let storedScrollTop = parseInt(sessionStorage.getItem('sidebar-scroll-top'), 10);\n let sidebarScroller = document.querySelector('.sidebar-scroller');\n\n if (!isNaN(storedScrollTop)) {\n sidebarScroller.scrollTop = storedScrollTop;\n } else {\n let selectedItem = sidebar.querySelector('.nav-link.selected');\n\n if (selectedItem.offsetTop > sidebarScroller.offsetHeight * 0.8) {\n sidebarScroller.scrollTop = selectedItem.offsetTop - sidebarScroller.offsetHeight * 0.8;\n }\n }\n\n window.addEventListener('beforeunload', () => {\n sessionStorage.setItem('sidebar-scroll-top', sidebarScroller.scrollTop);\n }); // Toggle the mobile nav.\n\n document.querySelector('.menu-toggle').addEventListener('click', () => {\n sidebar.classList.toggle('hidden');\n document.documentElement.classList.toggle('menu-visible', !sidebar.classList.contains('hidden'));\n });\n }\n});\n\n//# sourceURL=webpack:///./js/components/navigation.js?"); + +/***/ }), + +/***/ "./js/components/prefetch.js": +/*!***********************************!*\ + !*** ./js/components/prefetch.js ***! + \***********************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var lodash_debounce__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash/debounce */ \"./node_modules/lodash/debounce.js\");\n/* harmony import */ var lodash_debounce__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash_debounce__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => {\n let loader = document.createElement('link');\n loader.setAttribute('rel', 'prefetch prerender');\n let prefetch = lodash_debounce__WEBPACK_IMPORTED_MODULE_0___default()(href => {\n loader.setAttribute('href', href);\n document.head.appendChild(loader);\n }, 300);\n Array.from(document.querySelectorAll('a[href^=\"/\"]')).forEach(link => {\n link.addEventListener('mouseover', () => {\n prefetch(link.getAttribute('href'));\n });\n });\n});\n\n//# sourceURL=webpack:///./js/components/prefetch.js?"); + +/***/ }), + +/***/ "./js/components/search.js": +/*!*********************************!*\ + !*** ./js/components/search.js ***! + \*********************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var lunr__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lunr */ \"./node_modules/lunr/lunr.js\");\n/* harmony import */ var lunr__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lunr__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var lodash_trim__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash/trim */ \"./node_modules/lodash/trim.js\");\n/* harmony import */ var lodash_trim__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(lodash_trim__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash/throttle */ \"./node_modules/lodash/throttle.js\");\n/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(lodash_throttle__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var lodash_debounce__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash/debounce */ \"./node_modules/lodash/debounce.js\");\n/* harmony import */ var lodash_debounce__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(lodash_debounce__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var components_hover_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! components/hover.js */ \"./js/components/hover.js\");\n\n\n\n\n // Based on:\n// https://www.raymondcamden.com/2019/10/20/adding-search-to-your-eleventy-static-site-with-lunr\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (async () => {\n const SEARCH_RESULT_LIMIT = 3;\n const searchInput = document.querySelector('.search-input');\n const searchResults = document.querySelector('.search-results');\n const searchShortcutModifier = document.querySelector('.search-shortcut-modifier');\n let docs;\n let index;\n\n async function load() {\n setState('loading', 'Loading...');\n let result = await fetch('/api/search.json');\n docs = await result.json();\n index = lunr__WEBPACK_IMPORTED_MODULE_0___default()(function () {\n this.ref('id');\n this.field('title');\n this.field('content');\n docs.forEach((doc, index) => {\n doc.id = index;\n this.add(doc);\n });\n });\n }\n\n let search = lodash_debounce__WEBPACK_IMPORTED_MODULE_3___default()(searchTerm => {\n // Make sure we're loaded\n if (docs) {\n let results = index.search(searchTerm).map(r => {\n return docs[r.ref];\n }).slice(0, SEARCH_RESULT_LIMIT);\n\n if (results.length) {\n searchResults.innerHTML = results.map(renderSearchResult.bind(undefined, searchTerm)).join('');\n Object(components_hover_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])('.search-result');\n setState('has-results');\n } else {\n setState('no-results', `No results for \"${searchTerm}\"`);\n }\n }\n }, 250);\n\n function renderSearchResult(searchTerm, result) {\n let searchTermMatcher = new RegExp(searchTerm.split(' ').join('|'), 'i');\n let title = highlightWords(result.title, searchTermMatcher);\n let content = '';\n let contentMatch = result.content.match(searchTermMatcher);\n\n if (contentMatch) {\n let start = contentMatch.index;\n let end = start + contentMatch[0].length; // Include surrounding text\n\n start = Math.max(start - 30, 0);\n end = Math.max(end + 110, result.content.length);\n let value = result.content.slice(start, end).trim();\n\n if (value.length > 0) {\n value = value.replace(/\\s*[\\n]+\\s*/g, '\\n');\n value = value.replace(/^\\s+|\\s+$/g, '');\n content = ['

', start > 0 ? '...' : '', highlightWords(value, searchTermMatcher), end < result.content.length ? '...' : '', '

'].join('');\n }\n }\n\n return `\n\t\t\t\n\t\t\t\t

${title}

\n\t\t\t\t${content}\n\t\t\t
\n\t\t\t
\n\t\t`;\n }\n\n function highlightWords(string, wordExpression) {\n return string.replace(new RegExp(wordExpression, 'gi'), '$&');\n }\n\n function setState(state, description) {\n searchResults.dataset.state = state;\n\n if (typeof description === 'string') {\n searchResults.innerHTML = `${description}`;\n }\n }\n\n let updateFixedPosition = lodash_throttle__WEBPACK_IMPORTED_MODULE_2___default()(() => {\n let bounds = searchInput.getBoundingClientRect();\n searchResults.style.top = Math.round(bounds.bottom) + 'px';\n }, 33);\n\n function show() {\n if (!isVisible()) {\n document.documentElement.classList.add('search-visible');\n document.addEventListener('mousedown', onDocumentMouseDown);\n document.addEventListener('keydown', onDocumentKeyDown); // Our search results are position fixed on small screens,\n // but on the homepage the header is pushed down from the\n // top of the screen... et voilà:\n\n if (document.querySelector('.header').offsetTop > 0 && getComputedStyle(searchResults).position === 'fixed') {\n document.addEventListener('scroll', updateFixedPosition, {\n passive: true\n });\n updateFixedPosition();\n } else {\n searchResults.style.top = '';\n } // Lazy-load the first time the search field is shown\n\n\n if (!docs) {\n load().then(() => {\n let searchTerm = searchInput.value.trim();\n\n if (searchTerm && isVisible()) {\n search(searchTerm);\n }\n }, () => {\n setState('loading-error', 'Failed to load search data 😭');\n });\n }\n }\n }\n\n function hide() {\n if (isVisible()) {\n document.documentElement.classList.remove('search-visible');\n document.removeEventListener('mousedown', onDocumentMouseDown);\n document.removeEventListener('keydown', onDocumentKeyDown);\n document.removeEventListener('scroll', updateFixedPosition);\n }\n }\n\n function isVisible() {\n return document.documentElement.classList.contains('search-visible');\n }\n /**\n * Moves focus between the search input & results.\n */\n\n\n function moveFocus(offset = 1) {\n let focusables = [searchInput, ...document.querySelectorAll('.search-result')];\n let index = focusables.indexOf(document.activeElement);\n let target = index === -1 ? focusables[1] : focusables[index + offset];\n if (target) target.focus();\n }\n\n searchInput.addEventListener('focus', show);\n searchInput.addEventListener('input', event => {\n show();\n let searchTerm = searchInput.value.trim();\n\n if (searchTerm) {\n search(searchTerm);\n } else {\n setState('no-term', 'Enter a search term');\n }\n });\n document.addEventListener('keydown', event => {\n if (event.key === '/' || event.key === 'k' && (event.metaKey || event.ctrlKey)) {\n searchInput.focus();\n searchInput.select();\n event.preventDefault();\n }\n }); // only bound while search is visible\n\n function onDocumentKeyDown(event) {\n if (event.key === 'Escape') {\n searchInput.blur();\n hide();\n } else if (event.key === 'Enter') {\n searchInput.blur();\n hide(); // If there are results, but no result is focused, open the\n // first one\n\n let results = document.querySelectorAll('.search-result');\n\n if (results.length && document.activeElement.matches('.search-result') === false) {\n window.location = results[0].getAttribute('href');\n }\n } else if (event.key === 'ArrowUp' || event.key === 'Tab' && event.shiftKey) {\n moveFocus(-1);\n event.preventDefault();\n } else if (event.key === 'ArrowDown' || event.key === 'Tab') {\n moveFocus(1);\n event.preventDefault();\n }\n }\n\n function onDocumentMouseDown(event) {\n if (!event.target.closest('.search')) {\n hide();\n }\n }\n});\n\n//# sourceURL=webpack:///./js/components/search.js?"); + +/***/ }), + +/***/ "./js/main.js": +/*!********************!*\ + !*** ./js/main.js ***! + \********************/ +/*! no exports provided */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var pages_home_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! pages/home.js */ \"./js/pages/home.js\");\n/* harmony import */ var pages_demo_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! pages/demo.js */ \"./js/pages/demo.js\");\n/* harmony import */ var components_search_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! components/search.js */ \"./js/components/search.js\");\n/* harmony import */ var components_hover_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! components/hover.js */ \"./js/components/hover.js\");\n/* harmony import */ var components_prefetch_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! components/prefetch.js */ \"./js/components/prefetch.js\");\n/* harmony import */ var components_navigation_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! components/navigation.js */ \"./js/components/navigation.js\");\n/* harmony import */ var anchor_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! anchor-js */ \"./node_modules/anchor-js/anchor.js\");\n/* harmony import */ var anchor_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(anchor_js__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var reveal_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! reveal.js */ \"./node_modules/reveal.js/dist/reveal.esm.js\");\n/* harmony import */ var reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! reveal.js/plugin/highlight/highlight.esm.js */ \"./node_modules/reveal.js/plugin/highlight/highlight.esm.js\");\n/* harmony import */ var reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! reveal.js/plugin/markdown/markdown.esm.js */ \"./node_modules/reveal.js/plugin/markdown/markdown.esm.js\");\n/* harmony import */ var reveal_js_plugin_math_math_esm_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! reveal.js/plugin/math/math.esm.js */ \"./node_modules/reveal.js/plugin/math/math.esm.js\");\n/* harmony import */ var reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! reveal.js/plugin/zoom/zoom.esm.js */ \"./node_modules/reveal.js/plugin/zoom/zoom.esm.js\");\n\n\n\n\n\n\n\n\n\n\n\n\nconst PAGE_ID = document.body.dataset.page;\nObject(components_navigation_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"])();\nObject(components_hover_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])('.header-nav a, .header-cta, .footer a, .sidebar a:not(.selected)');\nsetupAnchors();\nsetupPage();\n\nif (document.readyState === 'complete') {\n setupAd();\n} else if (document.readyState === 'interactive') {\n document.onreadystatechange = function () {\n if (document.readyState == 'complete') {\n setupAd();\n }\n };\n}\n\nfunction setupPage() {\n setupInlineDecks();\n Object(components_prefetch_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])();\n\n if (PAGE_ID === 'home') {\n Object(pages_home_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\n Object(components_search_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])();\n } else if (PAGE_ID === 'demo') {\n Object(pages_demo_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])();\n } else {\n Object(components_search_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])();\n }\n}\n\nfunction setupAd() {\n const adUnit = document.querySelector('#_carbonads_js');\n\n if (adUnit && adUnit.hasAttribute('data-src')) {\n const adSource = adUnit.getAttribute('data-src');\n adUnit.removeAttribute('data-src');\n adUnit.setAttribute('src', adSource);\n }\n}\n\nfunction setupAnchors() {\n // Set up link anchors\n const anchors = new anchor_js__WEBPACK_IMPORTED_MODULE_6___default.a();\n anchors.options = {\n placement: 'left',\n icon: '#'\n };\n anchors.add('.article>h2, .article>h3, .article>h4');\n}\n\nfunction setupInlineDecks() {\n // Inline example decks in the docs\n Array.from(document.querySelectorAll('.reveal-example')).forEach(deckElement => {\n // If this deck is paired with an input code block,\n // wrap them both in a shared container\n let code = deckElement.previousSibling;\n\n if (code.matches('pre')) {\n let wrapper = document.createElement('div');\n wrapper.className = 'reveal-example-wrapper';\n code.parentNode.insertBefore(wrapper, code);\n wrapper.appendChild(code);\n wrapper.appendChild(deckElement);\n }\n\n let config = {};\n\n if (deckElement.hasAttribute('data-config')) {\n config = JSON.parse(deckElement.dataset.config);\n }\n\n let deck = new reveal_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"](deckElement, {\n width: 900,\n height: 500,\n hash: false,\n respondToHashChanges: false,\n embedded: true,\n progress: false,\n keyboardCondition: 'focused',\n controlsTutorial: false,\n math: {\n config: 'TeX-AMS_HTML-full'\n },\n plugins: [reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_9__[\"default\"], reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"], reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_11__[\"default\"], reveal_js_plugin_math_math_esm_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"]],\n ...config\n });\n deck.initialize();\n });\n}\n\n//# sourceURL=webpack:///./js/main.js?"); + +/***/ }), + +/***/ "./js/pages/demo.js": +/*!**************************!*\ + !*** ./js/pages/demo.js ***! + \**************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var reveal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! reveal.js */ \"./node_modules/reveal.js/dist/reveal.esm.js\");\n/* harmony import */ var reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! reveal.js/plugin/highlight/highlight.esm.js */ \"./node_modules/reveal.js/plugin/highlight/highlight.esm.js\");\n/* harmony import */ var reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reveal.js/plugin/markdown/markdown.esm.js */ \"./node_modules/reveal.js/plugin/markdown/markdown.esm.js\");\n/* harmony import */ var reveal_js_plugin_notes_notes_esm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! reveal.js/plugin/notes/notes.esm.js */ \"./node_modules/reveal.js/plugin/notes/notes.esm.js\");\n/* harmony import */ var reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! reveal.js/plugin/zoom/zoom.esm.js */ \"./node_modules/reveal.js/plugin/zoom/zoom.esm.js\");\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => {\n let deck = new reveal_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"](document.querySelector('.reveal'), {\n hash: true,\n plugins: [reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"], reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"], reveal_js_plugin_notes_notes_esm_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"], reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]]\n });\n deck.initialize(); // Make the Reveal object globally available on the /demo page\n\n window.Reveal = deck;\n});\n\n//# sourceURL=webpack:///./js/pages/demo.js?"); + +/***/ }), + +/***/ "./js/pages/home.js": +/*!**************************!*\ + !*** ./js/pages/home.js ***! + \**************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var reveal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! reveal.js */ \"./node_modules/reveal.js/dist/reveal.esm.js\");\n/* harmony import */ var reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! reveal.js/plugin/highlight/highlight.esm.js */ \"./node_modules/reveal.js/plugin/highlight/highlight.esm.js\");\n/* harmony import */ var reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reveal.js/plugin/markdown/markdown.esm.js */ \"./node_modules/reveal.js/plugin/markdown/markdown.esm.js\");\n/* harmony import */ var reveal_js_plugin_notes_notes_esm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! reveal.js/plugin/notes/notes.esm.js */ \"./node_modules/reveal.js/plugin/notes/notes.esm.js\");\n/* harmony import */ var reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! reveal.js/plugin/zoom/zoom.esm.js */ \"./node_modules/reveal.js/plugin/zoom/zoom.esm.js\");\n/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash/throttle */ \"./node_modules/lodash/throttle.js\");\n/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(lodash_throttle__WEBPACK_IMPORTED_MODULE_5__);\n\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => {\n let deck = new reveal_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"](document.querySelector('.reveal-demo .reveal'), {\n embedded: true,\n hash: true,\n margin: 0.1,\n url: 'https://revealjs.com/demo',\n plugins: [reveal_js_plugin_markdown_markdown_esm_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"], reveal_js_plugin_highlight_highlight_esm_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"], reveal_js_plugin_notes_notes_esm_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"], reveal_js_plugin_zoom_zoom_esm_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]]\n });\n deck.initialize().then(() => {\n setupHeader();\n setupDemoLink();\n });\n\n function setupHeader() {\n let demoLogo = document.querySelector('.demo-logo');\n\n if (demoLogo) {\n let updateVisibility = () => {\n document.documentElement.classList.toggle('logo-visible', demoLogo.getBoundingClientRect().bottom < 0);\n };\n\n updateVisibility();\n document.addEventListener('scroll', lodash_throttle__WEBPACK_IMPORTED_MODULE_5___default()(updateVisibility, 100), {\n passive: true\n });\n }\n }\n\n function setupDemoLink() {\n const anchor = document.querySelector('.demo-link');\n anchor.addEventListener('click', event => {\n event.preventDefault();\n window.scrollTo(0, 0);\n highlightDemo();\n });\n }\n\n function highlightDemo() {\n let scrollListener = () => {\n if (window.scrollY) {\n document.documentElement.classList.remove('highlight-demo');\n document.removeEventListener('scroll', scrollListener);\n }\n };\n\n document.documentElement.classList.add('highlight-demo');\n document.addEventListener('scroll', scrollListener, {\n passive: true\n });\n } // There's a number of links to revealjs.com?print-pdf out\n // there to demonstrate the PDF export feature. This new\n // site no longer has a printable presentation on the home\n // page so we redirect those links to /demo?print-pdf.\n\n\n if (/print\\-pdf/.test(location.search)) {\n window.location = '/demo' + window.location.search;\n }\n\n if (/demo/.test(location.search)) {\n highlightDemo();\n }\n});\n\n//# sourceURL=webpack:///./js/pages/home.js?"); + +/***/ }), + +/***/ "./node_modules/anchor-js/anchor.js": +/*!******************************************!*\ + !*** ./node_modules/anchor-js/anchor.js ***! + \******************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* eslint-env amd */\n/* globals module:false */\n\n// https://github.com/umdjs/umd/blob/master/templates/returnExports.js\n(function (root, factory) {\n 'use strict';\n\n if (true) {\n // AMD. Register as an anonymous module.\n !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\n\t\t\t\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n } else {}\n}(this, function () {\n 'use strict';\n\n function AnchorJS(options) {\n this.options = options || {};\n this.elements = [];\n\n /**\n * Assigns options to the internal options object, and provides defaults.\n * @param {Object} opts - Options object\n */\n function _applyRemainingDefaultOptions(opts) {\n opts.icon = Object.prototype.hasOwnProperty.call(opts, 'icon') ? opts.icon : '\\uE9CB'; // Accepts characters (and also URLs?), like '#', '¶', '❡', or '§'.\n opts.visible = Object.prototype.hasOwnProperty.call(opts, 'visible') ? opts.visible : 'hover'; // Also accepts 'always' & 'touch'\n opts.placement = Object.prototype.hasOwnProperty.call(opts, 'placement') ? opts.placement : 'right'; // Also accepts 'left'\n opts.ariaLabel = Object.prototype.hasOwnProperty.call(opts, 'ariaLabel') ? opts.ariaLabel : 'Anchor'; // Accepts any text.\n opts.class = Object.prototype.hasOwnProperty.call(opts, 'class') ? opts.class : ''; // Accepts any class name.\n opts.base = Object.prototype.hasOwnProperty.call(opts, 'base') ? opts.base : ''; // Accepts any base URI.\n // Using Math.floor here will ensure the value is Number-cast and an integer.\n opts.truncate = Object.prototype.hasOwnProperty.call(opts, 'truncate') ? Math.floor(opts.truncate) : 64; // Accepts any value that can be typecast to a number.\n opts.titleText = Object.prototype.hasOwnProperty.call(opts, 'titleText') ? opts.titleText : ''; // Accepts any text.\n }\n\n _applyRemainingDefaultOptions(this.options);\n\n /**\n * Checks to see if this device supports touch. Uses criteria pulled from Modernizr:\n * https://github.com/Modernizr/Modernizr/blob/da22eb27631fc4957f67607fe6042e85c0a84656/feature-detects/touchevents.js#L40\n * @return {Boolean} - true if the current device supports touch.\n */\n this.isTouchDevice = function() {\n return Boolean('ontouchstart' in window || window.TouchEvent || window.DocumentTouch && document instanceof DocumentTouch);\n };\n\n /**\n * Add anchor links to page elements.\n * @param {String|Array|Nodelist} selector - A CSS selector for targeting the elements you wish to add anchor links\n * to. Also accepts an array or nodeList containing the relavant elements.\n * @return {this} - The AnchorJS object\n */\n this.add = function(selector) {\n var elements,\n elsWithIds,\n idList,\n elementID,\n i,\n index,\n count,\n tidyText,\n newTidyText,\n anchor,\n visibleOptionToUse,\n hrefBase,\n indexesToDrop = [];\n\n // We reapply options here because somebody may have overwritten the default options object when setting options.\n // For example, this overwrites all options but visible:\n //\n // anchors.options = { visible: 'always'; }\n _applyRemainingDefaultOptions(this.options);\n\n visibleOptionToUse = this.options.visible;\n if (visibleOptionToUse === 'touch') {\n visibleOptionToUse = this.isTouchDevice() ? 'always' : 'hover';\n }\n\n // Provide a sensible default selector, if none is given.\n if (!selector) {\n selector = 'h2, h3, h4, h5, h6';\n }\n\n elements = _getElements(selector);\n\n if (elements.length === 0) {\n return this;\n }\n\n _addBaselineStyles();\n\n // We produce a list of existing IDs so we don't generate a duplicate.\n elsWithIds = document.querySelectorAll('[id]');\n idList = [].map.call(elsWithIds, function(el) {\n return el.id;\n });\n\n for (i = 0; i < elements.length; i++) {\n if (this.hasAnchorJSLink(elements[i])) {\n indexesToDrop.push(i);\n continue;\n }\n\n if (elements[i].hasAttribute('id')) {\n elementID = elements[i].getAttribute('id');\n } else if (elements[i].hasAttribute('data-anchor-id')) {\n elementID = elements[i].getAttribute('data-anchor-id');\n } else {\n tidyText = this.urlify(elements[i].textContent);\n\n // Compare our generated ID to existing IDs (and increment it if needed)\n // before we add it to the page.\n newTidyText = tidyText;\n count = 0;\n do {\n if (index !== undefined) {\n newTidyText = tidyText + '-' + count;\n }\n\n index = idList.indexOf(newTidyText);\n count += 1;\n } while (index !== -1);\n\n index = undefined;\n idList.push(newTidyText);\n\n elements[i].setAttribute('id', newTidyText);\n elementID = newTidyText;\n }\n\n // The following code efficiently builds this DOM structure:\n // `\n // ;`\n anchor = document.createElement('a');\n anchor.className = 'anchorjs-link ' + this.options.class;\n anchor.setAttribute('aria-label', this.options.ariaLabel);\n anchor.setAttribute('data-anchorjs-icon', this.options.icon);\n if (this.options.titleText) {\n anchor.title = this.options.titleText;\n }\n\n // Adjust the href if there's a tag. See https://github.com/bryanbraun/anchorjs/issues/98\n hrefBase = document.querySelector('base') ? window.location.pathname + window.location.search : '';\n hrefBase = this.options.base || hrefBase;\n anchor.href = hrefBase + '#' + elementID;\n\n if (visibleOptionToUse === 'always') {\n anchor.style.opacity = '1';\n }\n\n if (this.options.icon === '\\uE9CB') {\n anchor.style.font = '1em/1 anchorjs-icons';\n\n // We set lineHeight = 1 here because the `anchorjs-icons` font family could otherwise affect the\n // height of the heading. This isn't the case for icons with `placement: left`, so we restore\n // line-height: inherit in that case, ensuring they remain positioned correctly. For more info,\n // see https://github.com/bryanbraun/anchorjs/issues/39.\n if (this.options.placement === 'left') {\n anchor.style.lineHeight = 'inherit';\n }\n }\n\n if (this.options.placement === 'left') {\n anchor.style.position = 'absolute';\n anchor.style.marginLeft = '-1em';\n anchor.style.paddingRight = '.5em';\n elements[i].insertBefore(anchor, elements[i].firstChild);\n } else { // if the option provided is `right` (or anything else).\n anchor.style.paddingLeft = '.375em';\n elements[i].appendChild(anchor);\n }\n }\n\n for (i = 0; i < indexesToDrop.length; i++) {\n elements.splice(indexesToDrop[i] - i, 1);\n }\n\n this.elements = this.elements.concat(elements);\n\n return this;\n };\n\n /**\n * Removes all anchorjs-links from elements targeted by the selector.\n * @param {String|Array|Nodelist} selector - A CSS selector string targeting elements with anchor links,\n * OR a nodeList / array containing the DOM elements.\n * @return {this} - The AnchorJS object\n */\n this.remove = function(selector) {\n var index,\n domAnchor,\n elements = _getElements(selector);\n\n for (var i = 0; i < elements.length; i++) {\n domAnchor = elements[i].querySelector('.anchorjs-link');\n if (domAnchor) {\n // Drop the element from our main list, if it's in there.\n index = this.elements.indexOf(elements[i]);\n if (index !== -1) {\n this.elements.splice(index, 1);\n }\n\n // Remove the anchor from the DOM.\n elements[i].removeChild(domAnchor);\n }\n }\n\n return this;\n };\n\n /**\n * Removes all anchorjs links. Mostly used for tests.\n */\n this.removeAll = function() {\n this.remove(this.elements);\n };\n\n /**\n * Urlify - Refine text so it makes a good ID.\n *\n * To do this, we remove apostrophes, replace non-safe characters with hyphens,\n * remove extra hyphens, truncate, trim hyphens, and make lowercase.\n *\n * @param {String} text - Any text. Usually pulled from the webpage element we are linking to.\n * @return {String} - hyphen-delimited text for use in IDs and URLs.\n */\n this.urlify = function(text) {\n // Decode HTML characters such as ' ' first.\n var textareaElement = document.createElement('textarea');\n textareaElement.innerHTML = text;\n text = textareaElement.value;\n\n // Regex for finding the non-safe URL characters (many need escaping):\n // & +$,:;=?@\"#{}|^~[`%!'<>]./()*\\ (newlines, tabs, backspace, vertical tabs, and non-breaking space)\n var nonsafeChars = /[& +$,:;=?@\"#{}|^~[`%!'<>\\]./()*\\\\\\n\\t\\b\\v\\u00A0]/g;\n\n // The reason we include this _applyRemainingDefaultOptions is so urlify can be called independently,\n // even after setting options. This can be useful for tests or other applications.\n if (!this.options.truncate) {\n _applyRemainingDefaultOptions(this.options);\n }\n\n // Note: we trim hyphens after truncating because truncating can cause dangling hyphens.\n // Example string: // \" ⚡⚡ Don't forget: URL fragments should be i18n-friendly, hyphenated, short, and clean.\"\n return text.trim() // \"⚡⚡ Don't forget: URL fragments should be i18n-friendly, hyphenated, short, and clean.\"\n .replace(/'/gi, '') // \"⚡⚡ Dont forget: URL fragments should be i18n-friendly, hyphenated, short, and clean.\"\n .replace(nonsafeChars, '-') // \"⚡⚡-Dont-forget--URL-fragments-should-be-i18n-friendly--hyphenated--short--and-clean-\"\n .replace(/-{2,}/g, '-') // \"⚡⚡-Dont-forget-URL-fragments-should-be-i18n-friendly-hyphenated-short-and-clean-\"\n .substring(0, this.options.truncate) // \"⚡⚡-Dont-forget-URL-fragments-should-be-i18n-friendly-hyphenated-\"\n .replace(/^-+|-+$/gm, '') // \"⚡⚡-Dont-forget-URL-fragments-should-be-i18n-friendly-hyphenated\"\n .toLowerCase(); // \"⚡⚡-dont-forget-url-fragments-should-be-i18n-friendly-hyphenated\"\n };\n\n /**\n * Determines if this element already has an AnchorJS link on it.\n * Uses this technique: https://stackoverflow.com/a/5898748/1154642\n * @param {HTMLElement} el - a DOM node\n * @return {Boolean} true/false\n */\n this.hasAnchorJSLink = function(el) {\n var hasLeftAnchor = el.firstChild && (' ' + el.firstChild.className + ' ').indexOf(' anchorjs-link ') > -1,\n hasRightAnchor = el.lastChild && (' ' + el.lastChild.className + ' ').indexOf(' anchorjs-link ') > -1;\n\n return hasLeftAnchor || hasRightAnchor || false;\n };\n\n /**\n * Turns a selector, nodeList, or array of elements into an array of elements (so we can use array methods).\n * It also throws errors on any other inputs. Used to handle inputs to .add and .remove.\n * @param {String|Array|Nodelist} input - A CSS selector string targeting elements with anchor links,\n * OR a nodeList / array containing the DOM elements.\n * @return {Array} - An array containing the elements we want.\n */\n function _getElements(input) {\n var elements;\n if (typeof input === 'string' || input instanceof String) {\n // See https://davidwalsh.name/nodelist-array for the technique transforming nodeList -> Array.\n elements = [].slice.call(document.querySelectorAll(input));\n // I checked the 'input instanceof NodeList' test in IE9 and modern browsers and it worked for me.\n } else if (Array.isArray(input) || input instanceof NodeList) {\n elements = [].slice.call(input);\n } else {\n throw new TypeError('The selector provided to AnchorJS was invalid.');\n }\n\n return elements;\n }\n\n /**\n * _addBaselineStyles\n * Adds baseline styles to the page, used by all AnchorJS links irregardless of configuration.\n */\n function _addBaselineStyles() {\n // We don't want to add global baseline styles if they've been added before.\n if (document.head.querySelector('style.anchorjs') !== null) {\n return;\n }\n\n var style = document.createElement('style'),\n linkRule =\n '.anchorjs-link{' +\n 'opacity:0;' +\n 'text-decoration:none;' +\n '-webkit-font-smoothing:antialiased;' +\n '-moz-osx-font-smoothing:grayscale' +\n '}',\n hoverRule =\n ':hover>.anchorjs-link,' +\n '.anchorjs-link:focus{' +\n 'opacity:1' +\n '}',\n anchorjsLinkFontFace =\n '@font-face{' +\n 'font-family:anchorjs-icons;' + // Icon from icomoon; 10px wide & 10px tall; 2 empty below & 4 above\n 'src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format(\"truetype\")' +\n '}',\n pseudoElContent =\n '[data-anchorjs-icon]::after{' +\n 'content:attr(data-anchorjs-icon)' +\n '}',\n firstStyleEl;\n\n style.className = 'anchorjs';\n style.appendChild(document.createTextNode('')); // Necessary for Webkit.\n\n // We place it in the head with the other style tags, if possible, so as to\n // not look out of place. We insert before the others so these styles can be\n // overridden if necessary.\n firstStyleEl = document.head.querySelector('[rel=\"stylesheet\"],style');\n if (firstStyleEl === undefined) {\n document.head.appendChild(style);\n } else {\n document.head.insertBefore(style, firstStyleEl);\n }\n\n style.sheet.insertRule(linkRule, style.sheet.cssRules.length);\n style.sheet.insertRule(hoverRule, style.sheet.cssRules.length);\n style.sheet.insertRule(pseudoElContent, style.sheet.cssRules.length);\n style.sheet.insertRule(anchorjsLinkFontFace, style.sheet.cssRules.length);\n }\n }\n\n return AnchorJS;\n}));\n\n\n//# sourceURL=webpack:///./node_modules/anchor-js/anchor.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_Symbol.js": +/*!****************************************!*\ + !*** ./node_modules/lodash/_Symbol.js ***! + \****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\nmodule.exports = Symbol;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Symbol.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_arrayMap.js": +/*!******************************************!*\ + !*** ./node_modules/lodash/_arrayMap.js ***! + \******************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * A specialized version of `_.map` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\nfunction arrayMap(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = iteratee(array[index], index, array);\n }\n return result;\n}\n\nmodule.exports = arrayMap;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arrayMap.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_asciiToArray.js": +/*!**********************************************!*\ + !*** ./node_modules/lodash/_asciiToArray.js ***! + \**********************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * Converts an ASCII `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction asciiToArray(string) {\n return string.split('');\n}\n\nmodule.exports = asciiToArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_asciiToArray.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseFindIndex.js": +/*!***********************************************!*\ + !*** ./node_modules/lodash/_baseFindIndex.js ***! + \***********************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * The base implementation of `_.findIndex` and `_.findLastIndex` without\n * support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} predicate The function invoked per iteration.\n * @param {number} fromIndex The index to search from.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction baseFindIndex(array, predicate, fromIndex, fromRight) {\n var length = array.length,\n index = fromIndex + (fromRight ? 1 : -1);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (predicate(array[index], index, array)) {\n return index;\n }\n }\n return -1;\n}\n\nmodule.exports = baseFindIndex;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseFindIndex.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseGetTag.js": +/*!********************************************!*\ + !*** ./node_modules/lodash/_baseGetTag.js ***! + \********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\"),\n getRawTag = __webpack_require__(/*! ./_getRawTag */ \"./node_modules/lodash/_getRawTag.js\"),\n objectToString = __webpack_require__(/*! ./_objectToString */ \"./node_modules/lodash/_objectToString.js\");\n\n/** `Object#toString` result references. */\nvar nullTag = '[object Null]',\n undefinedTag = '[object Undefined]';\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\nmodule.exports = baseGetTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseGetTag.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseIndexOf.js": +/*!*********************************************!*\ + !*** ./node_modules/lodash/_baseIndexOf.js ***! + \*********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseFindIndex = __webpack_require__(/*! ./_baseFindIndex */ \"./node_modules/lodash/_baseFindIndex.js\"),\n baseIsNaN = __webpack_require__(/*! ./_baseIsNaN */ \"./node_modules/lodash/_baseIsNaN.js\"),\n strictIndexOf = __webpack_require__(/*! ./_strictIndexOf */ \"./node_modules/lodash/_strictIndexOf.js\");\n\n/**\n * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction baseIndexOf(array, value, fromIndex) {\n return value === value\n ? strictIndexOf(array, value, fromIndex)\n : baseFindIndex(array, baseIsNaN, fromIndex);\n}\n\nmodule.exports = baseIndexOf;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIndexOf.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseIsNaN.js": +/*!*******************************************!*\ + !*** ./node_modules/lodash/_baseIsNaN.js ***! + \*******************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * The base implementation of `_.isNaN` without support for number objects.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n */\nfunction baseIsNaN(value) {\n return value !== value;\n}\n\nmodule.exports = baseIsNaN;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsNaN.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseSlice.js": +/*!*******************************************!*\ + !*** ./node_modules/lodash/_baseSlice.js ***! + \*******************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\nfunction baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n}\n\nmodule.exports = baseSlice;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseSlice.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseToString.js": +/*!**********************************************!*\ + !*** ./node_modules/lodash/_baseToString.js ***! + \**********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\"),\n arrayMap = __webpack_require__(/*! ./_arrayMap */ \"./node_modules/lodash/_arrayMap.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n/**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\nfunction baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isArray(value)) {\n // Recursively convert values (susceptible to call stack limits).\n return arrayMap(value, baseToString) + '';\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = baseToString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseToString.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_baseTrim.js": +/*!******************************************!*\ + !*** ./node_modules/lodash/_baseTrim.js ***! + \******************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var trimmedEndIndex = __webpack_require__(/*! ./_trimmedEndIndex */ \"./node_modules/lodash/_trimmedEndIndex.js\");\n\n/** Used to match leading whitespace. */\nvar reTrimStart = /^\\s+/;\n\n/**\n * The base implementation of `_.trim`.\n *\n * @private\n * @param {string} string The string to trim.\n * @returns {string} Returns the trimmed string.\n */\nfunction baseTrim(string) {\n return string\n ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '')\n : string;\n}\n\nmodule.exports = baseTrim;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseTrim.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_castSlice.js": +/*!*******************************************!*\ + !*** ./node_modules/lodash/_castSlice.js ***! + \*******************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseSlice = __webpack_require__(/*! ./_baseSlice */ \"./node_modules/lodash/_baseSlice.js\");\n\n/**\n * Casts `array` to a slice if it's needed.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {number} start The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the cast slice.\n */\nfunction castSlice(array, start, end) {\n var length = array.length;\n end = end === undefined ? length : end;\n return (!start && end >= length) ? array : baseSlice(array, start, end);\n}\n\nmodule.exports = castSlice;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_castSlice.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_charsEndIndex.js": +/*!***********************************************!*\ + !*** ./node_modules/lodash/_charsEndIndex.js ***! + \***********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseIndexOf = __webpack_require__(/*! ./_baseIndexOf */ \"./node_modules/lodash/_baseIndexOf.js\");\n\n/**\n * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the last unmatched string symbol.\n */\nfunction charsEndIndex(strSymbols, chrSymbols) {\n var index = strSymbols.length;\n\n while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n}\n\nmodule.exports = charsEndIndex;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_charsEndIndex.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_charsStartIndex.js": +/*!*************************************************!*\ + !*** ./node_modules/lodash/_charsStartIndex.js ***! + \*************************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseIndexOf = __webpack_require__(/*! ./_baseIndexOf */ \"./node_modules/lodash/_baseIndexOf.js\");\n\n/**\n * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the first unmatched string symbol.\n */\nfunction charsStartIndex(strSymbols, chrSymbols) {\n var index = -1,\n length = strSymbols.length;\n\n while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n}\n\nmodule.exports = charsStartIndex;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_charsStartIndex.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_freeGlobal.js": +/*!********************************************!*\ + !*** ./node_modules/lodash/_freeGlobal.js ***! + \********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("/* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\nmodule.exports = freeGlobal;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/lodash/_freeGlobal.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_getRawTag.js": +/*!*******************************************!*\ + !*** ./node_modules/lodash/_getRawTag.js ***! + \*******************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\nmodule.exports = getRawTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getRawTag.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_hasUnicode.js": +/*!********************************************!*\ + !*** ./node_modules/lodash/_hasUnicode.js ***! + \********************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/** Used to compose unicode character classes. */\nvar rsAstralRange = '\\\\ud800-\\\\udfff',\n rsComboMarksRange = '\\\\u0300-\\\\u036f',\n reComboHalfMarksRange = '\\\\ufe20-\\\\ufe2f',\n rsComboSymbolsRange = '\\\\u20d0-\\\\u20ff',\n rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,\n rsVarRange = '\\\\ufe0e\\\\ufe0f';\n\n/** Used to compose unicode capture groups. */\nvar rsZWJ = '\\\\u200d';\n\n/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */\nvar reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']');\n\n/**\n * Checks if `string` contains Unicode symbols.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {boolean} Returns `true` if a symbol is found, else `false`.\n */\nfunction hasUnicode(string) {\n return reHasUnicode.test(string);\n}\n\nmodule.exports = hasUnicode;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hasUnicode.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_objectToString.js": +/*!************************************************!*\ + !*** ./node_modules/lodash/_objectToString.js ***! + \************************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\nmodule.exports = objectToString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_objectToString.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_root.js": +/*!**************************************!*\ + !*** ./node_modules/lodash/_root.js ***! + \**************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ \"./node_modules/lodash/_freeGlobal.js\");\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\nmodule.exports = root;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_root.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_strictIndexOf.js": +/*!***********************************************!*\ + !*** ./node_modules/lodash/_strictIndexOf.js ***! + \***********************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * A specialized version of `_.indexOf` which performs strict equality\n * comparisons of values, i.e. `===`.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction strictIndexOf(array, value, fromIndex) {\n var index = fromIndex - 1,\n length = array.length;\n\n while (++index < length) {\n if (array[index] === value) {\n return index;\n }\n }\n return -1;\n}\n\nmodule.exports = strictIndexOf;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_strictIndexOf.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_stringToArray.js": +/*!***********************************************!*\ + !*** ./node_modules/lodash/_stringToArray.js ***! + \***********************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var asciiToArray = __webpack_require__(/*! ./_asciiToArray */ \"./node_modules/lodash/_asciiToArray.js\"),\n hasUnicode = __webpack_require__(/*! ./_hasUnicode */ \"./node_modules/lodash/_hasUnicode.js\"),\n unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */ \"./node_modules/lodash/_unicodeToArray.js\");\n\n/**\n * Converts `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction stringToArray(string) {\n return hasUnicode(string)\n ? unicodeToArray(string)\n : asciiToArray(string);\n}\n\nmodule.exports = stringToArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stringToArray.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_trimmedEndIndex.js": +/*!*************************************************!*\ + !*** ./node_modules/lodash/_trimmedEndIndex.js ***! + \*************************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/** Used to match a single whitespace character. */\nvar reWhitespace = /\\s/;\n\n/**\n * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace\n * character of `string`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {number} Returns the index of the last non-whitespace character.\n */\nfunction trimmedEndIndex(string) {\n var index = string.length;\n\n while (index-- && reWhitespace.test(string.charAt(index))) {}\n return index;\n}\n\nmodule.exports = trimmedEndIndex;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_trimmedEndIndex.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/_unicodeToArray.js": +/*!************************************************!*\ + !*** ./node_modules/lodash/_unicodeToArray.js ***! + \************************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/** Used to compose unicode character classes. */\nvar rsAstralRange = '\\\\ud800-\\\\udfff',\n rsComboMarksRange = '\\\\u0300-\\\\u036f',\n reComboHalfMarksRange = '\\\\ufe20-\\\\ufe2f',\n rsComboSymbolsRange = '\\\\u20d0-\\\\u20ff',\n rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,\n rsVarRange = '\\\\ufe0e\\\\ufe0f';\n\n/** Used to compose unicode capture groups. */\nvar rsAstral = '[' + rsAstralRange + ']',\n rsCombo = '[' + rsComboRange + ']',\n rsFitz = '\\\\ud83c[\\\\udffb-\\\\udfff]',\n rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\n rsNonAstral = '[^' + rsAstralRange + ']',\n rsRegional = '(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}',\n rsSurrPair = '[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]',\n rsZWJ = '\\\\u200d';\n\n/** Used to compose unicode regexes. */\nvar reOptMod = rsModifier + '?',\n rsOptVar = '[' + rsVarRange + ']?',\n rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\n rsSeq = rsOptVar + reOptMod + rsOptJoin,\n rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';\n\n/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */\nvar reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');\n\n/**\n * Converts a Unicode `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\nfunction unicodeToArray(string) {\n return string.match(reUnicode) || [];\n}\n\nmodule.exports = unicodeToArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_unicodeToArray.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/debounce.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/debounce.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\"),\n now = __webpack_require__(/*! ./now */ \"./node_modules/lodash/now.js\"),\n toNumber = __webpack_require__(/*! ./toNumber */ \"./node_modules/lodash/toNumber.js\");\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeMax = Math.max,\n nativeMin = Math.min;\n\n/**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked. The debounced function comes with a `cancel` method to cancel\n * delayed `func` invocations and a `flush` method to immediately invoke them.\n * Provide `options` to indicate whether `func` should be invoked on the\n * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\n * with the last arguments provided to the debounced function. Subsequent\n * calls to the debounced function return the result of the last `func`\n * invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the debounced function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.debounce` and `_.throttle`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to debounce.\n * @param {number} [wait=0] The number of milliseconds to delay.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=false]\n * Specify invoking on the leading edge of the timeout.\n * @param {number} [options.maxWait]\n * The maximum time `func` is allowed to be delayed before it's invoked.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new debounced function.\n * @example\n *\n * // Avoid costly calculations while the window size is in flux.\n * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n *\n * // Invoke `sendMail` when clicked, debouncing subsequent calls.\n * jQuery(element).on('click', _.debounce(sendMail, 300, {\n * 'leading': true,\n * 'trailing': false\n * }));\n *\n * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\n * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\n * var source = new EventSource('/stream');\n * jQuery(source).on('message', debounced);\n *\n * // Cancel the trailing debounced invocation.\n * jQuery(window).on('popstate', debounced.cancel);\n */\nfunction debounce(func, wait, options) {\n var lastArgs,\n lastThis,\n maxWait,\n result,\n timerId,\n lastCallTime,\n lastInvokeTime = 0,\n leading = false,\n maxing = false,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n wait = toNumber(wait) || 0;\n if (isObject(options)) {\n leading = !!options.leading;\n maxing = 'maxWait' in options;\n maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n\n function invokeFunc(time) {\n var args = lastArgs,\n thisArg = lastThis;\n\n lastArgs = lastThis = undefined;\n lastInvokeTime = time;\n result = func.apply(thisArg, args);\n return result;\n }\n\n function leadingEdge(time) {\n // Reset any `maxWait` timer.\n lastInvokeTime = time;\n // Start the timer for the trailing edge.\n timerId = setTimeout(timerExpired, wait);\n // Invoke the leading edge.\n return leading ? invokeFunc(time) : result;\n }\n\n function remainingWait(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime,\n timeWaiting = wait - timeSinceLastCall;\n\n return maxing\n ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)\n : timeWaiting;\n }\n\n function shouldInvoke(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime;\n\n // Either this is the first call, activity has stopped and we're at the\n // trailing edge, the system time has gone backwards and we're treating\n // it as the trailing edge, or we've hit the `maxWait` limit.\n return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\n (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\n }\n\n function timerExpired() {\n var time = now();\n if (shouldInvoke(time)) {\n return trailingEdge(time);\n }\n // Restart the timer.\n timerId = setTimeout(timerExpired, remainingWait(time));\n }\n\n function trailingEdge(time) {\n timerId = undefined;\n\n // Only invoke if we have `lastArgs` which means `func` has been\n // debounced at least once.\n if (trailing && lastArgs) {\n return invokeFunc(time);\n }\n lastArgs = lastThis = undefined;\n return result;\n }\n\n function cancel() {\n if (timerId !== undefined) {\n clearTimeout(timerId);\n }\n lastInvokeTime = 0;\n lastArgs = lastCallTime = lastThis = timerId = undefined;\n }\n\n function flush() {\n return timerId === undefined ? result : trailingEdge(now());\n }\n\n function debounced() {\n var time = now(),\n isInvoking = shouldInvoke(time);\n\n lastArgs = arguments;\n lastThis = this;\n lastCallTime = time;\n\n if (isInvoking) {\n if (timerId === undefined) {\n return leadingEdge(lastCallTime);\n }\n if (maxing) {\n // Handle invocations in a tight loop.\n clearTimeout(timerId);\n timerId = setTimeout(timerExpired, wait);\n return invokeFunc(lastCallTime);\n }\n }\n if (timerId === undefined) {\n timerId = setTimeout(timerExpired, wait);\n }\n return result;\n }\n debounced.cancel = cancel;\n debounced.flush = flush;\n return debounced;\n}\n\nmodule.exports = debounce;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/debounce.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/isArray.js": +/*!****************************************!*\ + !*** ./node_modules/lodash/isArray.js ***! + \****************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\nmodule.exports = isArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isArray.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/isObject.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/isObject.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\nmodule.exports = isObject;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isObject.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/isObjectLike.js": +/*!*********************************************!*\ + !*** ./node_modules/lodash/isObjectLike.js ***! + \*********************************************/ +/*! no static exports found */ +/***/ (function(module, exports) { + +eval("/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\nmodule.exports = isObjectLike;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isObjectLike.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/isSymbol.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/isSymbol.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && baseGetTag(value) == symbolTag);\n}\n\nmodule.exports = isSymbol;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isSymbol.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/now.js": +/*!************************************!*\ + !*** ./node_modules/lodash/now.js ***! + \************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/**\n * Gets the timestamp of the number of milliseconds that have elapsed since\n * the Unix epoch (1 January 1970 00:00:00 UTC).\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Date\n * @returns {number} Returns the timestamp.\n * @example\n *\n * _.defer(function(stamp) {\n * console.log(_.now() - stamp);\n * }, _.now());\n * // => Logs the number of milliseconds it took for the deferred invocation.\n */\nvar now = function() {\n return root.Date.now();\n};\n\nmodule.exports = now;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/now.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/throttle.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/throttle.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var debounce = __webpack_require__(/*! ./debounce */ \"./node_modules/lodash/debounce.js\"),\n isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\");\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/**\n * Creates a throttled function that only invokes `func` at most once per\n * every `wait` milliseconds. The throttled function comes with a `cancel`\n * method to cancel delayed `func` invocations and a `flush` method to\n * immediately invoke them. Provide `options` to indicate whether `func`\n * should be invoked on the leading and/or trailing edge of the `wait`\n * timeout. The `func` is invoked with the last arguments provided to the\n * throttled function. Subsequent calls to the throttled function return the\n * result of the last `func` invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the throttled function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.throttle` and `_.debounce`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to throttle.\n * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=true]\n * Specify invoking on the leading edge of the timeout.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new throttled function.\n * @example\n *\n * // Avoid excessively updating the position while scrolling.\n * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\n *\n * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\n * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\n * jQuery(element).on('click', throttled);\n *\n * // Cancel the trailing throttled invocation.\n * jQuery(window).on('popstate', throttled.cancel);\n */\nfunction throttle(func, wait, options) {\n var leading = true,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (isObject(options)) {\n leading = 'leading' in options ? !!options.leading : leading;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n return debounce(func, wait, {\n 'leading': leading,\n 'maxWait': wait,\n 'trailing': trailing\n });\n}\n\nmodule.exports = throttle;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/throttle.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/toNumber.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/toNumber.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseTrim = __webpack_require__(/*! ./_baseTrim */ \"./node_modules/lodash/_baseTrim.js\"),\n isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\"),\n isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar NAN = 0 / 0;\n\n/** Used to detect bad signed hexadecimal string values. */\nvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n/** Used to detect binary string values. */\nvar reIsBinary = /^0b[01]+$/i;\n\n/** Used to detect octal string values. */\nvar reIsOctal = /^0o[0-7]+$/i;\n\n/** Built-in method references without a dependency on `root`. */\nvar freeParseInt = parseInt;\n\n/**\n * Converts `value` to a number.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n * @example\n *\n * _.toNumber(3.2);\n * // => 3.2\n *\n * _.toNumber(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toNumber(Infinity);\n * // => Infinity\n *\n * _.toNumber('3.2');\n * // => 3.2\n */\nfunction toNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n if (isObject(value)) {\n var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n value = isObject(other) ? (other + '') : other;\n }\n if (typeof value != 'string') {\n return value === 0 ? value : +value;\n }\n value = baseTrim(value);\n var isBinary = reIsBinary.test(value);\n return (isBinary || reIsOctal.test(value))\n ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n : (reIsBadHex.test(value) ? NAN : +value);\n}\n\nmodule.exports = toNumber;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/toNumber.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/toString.js": +/*!*****************************************!*\ + !*** ./node_modules/lodash/toString.js ***! + \*****************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseToString = __webpack_require__(/*! ./_baseToString */ \"./node_modules/lodash/_baseToString.js\");\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\nmodule.exports = toString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/toString.js?"); + +/***/ }), + +/***/ "./node_modules/lodash/trim.js": +/*!*************************************!*\ + !*** ./node_modules/lodash/trim.js ***! + \*************************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var baseToString = __webpack_require__(/*! ./_baseToString */ \"./node_modules/lodash/_baseToString.js\"),\n baseTrim = __webpack_require__(/*! ./_baseTrim */ \"./node_modules/lodash/_baseTrim.js\"),\n castSlice = __webpack_require__(/*! ./_castSlice */ \"./node_modules/lodash/_castSlice.js\"),\n charsEndIndex = __webpack_require__(/*! ./_charsEndIndex */ \"./node_modules/lodash/_charsEndIndex.js\"),\n charsStartIndex = __webpack_require__(/*! ./_charsStartIndex */ \"./node_modules/lodash/_charsStartIndex.js\"),\n stringToArray = __webpack_require__(/*! ./_stringToArray */ \"./node_modules/lodash/_stringToArray.js\"),\n toString = __webpack_require__(/*! ./toString */ \"./node_modules/lodash/toString.js\");\n\n/**\n * Removes leading and trailing whitespace or specified characters from `string`.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to trim.\n * @param {string} [chars=whitespace] The characters to trim.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {string} Returns the trimmed string.\n * @example\n *\n * _.trim(' abc ');\n * // => 'abc'\n *\n * _.trim('-_-abc-_-', '_-');\n * // => 'abc'\n *\n * _.map([' foo ', ' bar '], _.trim);\n * // => ['foo', 'bar']\n */\nfunction trim(string, chars, guard) {\n string = toString(string);\n if (string && (guard || chars === undefined)) {\n return baseTrim(string);\n }\n if (!string || !(chars = baseToString(chars))) {\n return string;\n }\n var strSymbols = stringToArray(string),\n chrSymbols = stringToArray(chars),\n start = charsStartIndex(strSymbols, chrSymbols),\n end = charsEndIndex(strSymbols, chrSymbols) + 1;\n\n return castSlice(strSymbols, start, end).join('');\n}\n\nmodule.exports = trim;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/trim.js?"); + +/***/ }), + +/***/ "./node_modules/lunr/lunr.js": +/*!***********************************!*\ + !*** ./node_modules/lunr/lunr.js ***! + \***********************************/ +/*! no static exports found */ +/***/ (function(module, exports, __webpack_require__) { + +eval("var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\n * Copyright (C) 2020 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * A convenience function for configuring and constructing\n * a new lunr Index.\n *\n * A lunr.Builder instance is created and the pipeline setup\n * with a trimmer, stop word filter and stemmer.\n *\n * This builder object is yielded to the configuration function\n * that is passed as a parameter, allowing the list of fields\n * and other builder parameters to be customised.\n *\n * All documents _must_ be added within the passed config function.\n *\n * @example\n * var idx = lunr(function () {\n * this.field('title')\n * this.field('body')\n * this.ref('id')\n *\n * documents.forEach(function (doc) {\n * this.add(doc)\n * }, this)\n * })\n *\n * @see {@link lunr.Builder}\n * @see {@link lunr.Pipeline}\n * @see {@link lunr.trimmer}\n * @see {@link lunr.stopWordFilter}\n * @see {@link lunr.stemmer}\n * @namespace {function} lunr\n */\nvar lunr = function (config) {\n var builder = new lunr.Builder\n\n builder.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n builder.searchPipeline.add(\n lunr.stemmer\n )\n\n config.call(builder, builder)\n return builder.build()\n}\n\nlunr.version = \"2.3.9\"\n/*!\n * lunr.utils\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n * @namespace lunr.utils\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf lunr.utils\n * @function\n */\nlunr.utils.warn = (function (global) {\n /* eslint-disable no-console */\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n /* eslint-enable no-console */\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf lunr.utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n\n/**\n * Clones an object.\n *\n * Will create a copy of an existing object such that any mutations\n * on the copy cannot affect the original.\n *\n * Only shallow objects are supported, passing a nested object to this\n * function will cause a TypeError.\n *\n * Objects with primitives, and arrays of primitives are supported.\n *\n * @param {Object} obj The object to clone.\n * @return {Object} a clone of the passed object.\n * @throws {TypeError} when a nested object is passed.\n * @memberOf Utils\n */\nlunr.utils.clone = function (obj) {\n if (obj === null || obj === undefined) {\n return obj\n }\n\n var clone = Object.create(null),\n keys = Object.keys(obj)\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i],\n val = obj[key]\n\n if (Array.isArray(val)) {\n clone[key] = val.slice()\n continue\n }\n\n if (typeof val === 'string' ||\n typeof val === 'number' ||\n typeof val === 'boolean') {\n clone[key] = val\n continue\n }\n\n throw new TypeError(\"clone is not deep and does not support nested objects\")\n }\n\n return clone\n}\nlunr.FieldRef = function (docRef, fieldName, stringValue) {\n this.docRef = docRef\n this.fieldName = fieldName\n this._stringValue = stringValue\n}\n\nlunr.FieldRef.joiner = \"/\"\n\nlunr.FieldRef.fromString = function (s) {\n var n = s.indexOf(lunr.FieldRef.joiner)\n\n if (n === -1) {\n throw \"malformed field ref string\"\n }\n\n var fieldRef = s.slice(0, n),\n docRef = s.slice(n + 1)\n\n return new lunr.FieldRef (docRef, fieldRef, s)\n}\n\nlunr.FieldRef.prototype.toString = function () {\n if (this._stringValue == undefined) {\n this._stringValue = this.fieldName + lunr.FieldRef.joiner + this.docRef\n }\n\n return this._stringValue\n}\n/*!\n * lunr.Set\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A lunr set.\n *\n * @constructor\n */\nlunr.Set = function (elements) {\n this.elements = Object.create(null)\n\n if (elements) {\n this.length = elements.length\n\n for (var i = 0; i < this.length; i++) {\n this.elements[elements[i]] = true\n }\n } else {\n this.length = 0\n }\n}\n\n/**\n * A complete set that contains all elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.complete = {\n intersect: function (other) {\n return other\n },\n\n union: function () {\n return this\n },\n\n contains: function () {\n return true\n }\n}\n\n/**\n * An empty set that contains no elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.empty = {\n intersect: function () {\n return this\n },\n\n union: function (other) {\n return other\n },\n\n contains: function () {\n return false\n }\n}\n\n/**\n * Returns true if this set contains the specified object.\n *\n * @param {object} object - Object whose presence in this set is to be tested.\n * @returns {boolean} - True if this set contains the specified object.\n */\nlunr.Set.prototype.contains = function (object) {\n return !!this.elements[object]\n}\n\n/**\n * Returns a new set containing only the elements that are present in both\n * this set and the specified set.\n *\n * @param {lunr.Set} other - set to intersect with this set.\n * @returns {lunr.Set} a new set that is the intersection of this and the specified set.\n */\n\nlunr.Set.prototype.intersect = function (other) {\n var a, b, elements, intersection = []\n\n if (other === lunr.Set.complete) {\n return this\n }\n\n if (other === lunr.Set.empty) {\n return other\n }\n\n if (this.length < other.length) {\n a = this\n b = other\n } else {\n a = other\n b = this\n }\n\n elements = Object.keys(a.elements)\n\n for (var i = 0; i < elements.length; i++) {\n var element = elements[i]\n if (element in b.elements) {\n intersection.push(element)\n }\n }\n\n return new lunr.Set (intersection)\n}\n\n/**\n * Returns a new set combining the elements of this and the specified set.\n *\n * @param {lunr.Set} other - set to union with this set.\n * @return {lunr.Set} a new set that is the union of this and the specified set.\n */\n\nlunr.Set.prototype.union = function (other) {\n if (other === lunr.Set.complete) {\n return lunr.Set.complete\n }\n\n if (other === lunr.Set.empty) {\n return this\n }\n\n return new lunr.Set(Object.keys(this.elements).concat(Object.keys(other.elements)))\n}\n/**\n * A function to calculate the inverse document frequency for\n * a posting. This is shared between the builder and the index\n *\n * @private\n * @param {object} posting - The posting for a given term\n * @param {number} documentCount - The total number of documents.\n */\nlunr.idf = function (posting, documentCount) {\n var documentsWithTerm = 0\n\n for (var fieldName in posting) {\n if (fieldName == '_index') continue // Ignore the term index, its not a field\n documentsWithTerm += Object.keys(posting[fieldName]).length\n }\n\n var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5)\n\n return Math.log(1 + Math.abs(x))\n}\n\n/**\n * A token wraps a string representation of a token\n * as it is passed through the text processing pipeline.\n *\n * @constructor\n * @param {string} [str=''] - The string token being wrapped.\n * @param {object} [metadata={}] - Metadata associated with this token.\n */\nlunr.Token = function (str, metadata) {\n this.str = str || \"\"\n this.metadata = metadata || {}\n}\n\n/**\n * Returns the token string that is being wrapped by this object.\n *\n * @returns {string}\n */\nlunr.Token.prototype.toString = function () {\n return this.str\n}\n\n/**\n * A token update function is used when updating or optionally\n * when cloning a token.\n *\n * @callback lunr.Token~updateFunction\n * @param {string} str - The string representation of the token.\n * @param {Object} metadata - All metadata associated with this token.\n */\n\n/**\n * Applies the given function to the wrapped string token.\n *\n * @example\n * token.update(function (str, metadata) {\n * return str.toUpperCase()\n * })\n *\n * @param {lunr.Token~updateFunction} fn - A function to apply to the token string.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.update = function (fn) {\n this.str = fn(this.str, this.metadata)\n return this\n}\n\n/**\n * Creates a clone of this token. Optionally a function can be\n * applied to the cloned token.\n *\n * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.clone = function (fn) {\n fn = fn || function (s) { return s }\n return new lunr.Token (fn(this.str, this.metadata), this.metadata)\n}\n/*!\n * lunr.tokenizer\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.separator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * This tokenizer will convert its parameter to a string by calling `toString` and\n * then will split this string on the character in `lunr.tokenizer.separator`.\n * Arrays will have their elements converted to strings and wrapped in a lunr.Token.\n *\n * Optional metadata can be passed to the tokenizer, this metadata will be cloned and\n * added as metadata to every token that is created from the object to be tokenized.\n *\n * @static\n * @param {?(string|object|object[])} obj - The object to convert into tokens\n * @param {?object} metadata - Optional metadata to associate with every token\n * @returns {lunr.Token[]}\n * @see {@link lunr.Pipeline}\n */\nlunr.tokenizer = function (obj, metadata) {\n if (obj == null || obj == undefined) {\n return []\n }\n\n if (Array.isArray(obj)) {\n return obj.map(function (t) {\n return new lunr.Token(\n lunr.utils.asString(t).toLowerCase(),\n lunr.utils.clone(metadata)\n )\n })\n }\n\n var str = obj.toString().toLowerCase(),\n len = str.length,\n tokens = []\n\n for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) {\n var char = str.charAt(sliceEnd),\n sliceLength = sliceEnd - sliceStart\n\n if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) {\n\n if (sliceLength > 0) {\n var tokenMetadata = lunr.utils.clone(metadata) || {}\n tokenMetadata[\"position\"] = [sliceStart, sliceLength]\n tokenMetadata[\"index\"] = tokens.length\n\n tokens.push(\n new lunr.Token (\n str.slice(sliceStart, sliceEnd),\n tokenMetadata\n )\n )\n }\n\n sliceStart = sliceEnd + 1\n }\n\n }\n\n return tokens\n}\n\n/**\n * The separator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.separator = /[\\s\\-]+/\n/*!\n * lunr.Pipeline\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = Object.create(null)\n\n/**\n * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token\n * string as well as all known metadata. A pipeline function can mutate the token string\n * or mutate (or add) metadata for a given token.\n *\n * A pipeline function can indicate that the passed token should be discarded by returning\n * null, undefined or an empty string. This token will not be passed to any downstream pipeline\n * functions and will not be added to the index.\n *\n * Multiple tokens can be returned by returning an array of tokens. Each token will be passed\n * to any downstream pipeline functions and all will returned tokens will be added to the index.\n *\n * Any number of pipeline functions may be chained together using a lunr.Pipeline.\n *\n * @interface lunr.PipelineFunction\n * @param {lunr.Token} token - A token from the document being processed.\n * @param {number} i - The index of this token in the complete list of tokens for this document/field.\n * @param {lunr.Token[]} tokens - All tokens for this document/field.\n * @returns {(?lunr.Token|lunr.Token[])}\n */\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @param {String} label - The label to register this function with\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @private\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised - The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load unregistered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {lunr.PipelineFunction} fn The function to remove from the pipeline.\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var stackLength = this._stack.length\n\n for (var i = 0; i < stackLength; i++) {\n var fn = this._stack[i]\n var memo = []\n\n for (var j = 0; j < tokens.length; j++) {\n var result = fn(tokens[j], j, tokens)\n\n if (result === null || result === void 0 || result === '') continue\n\n if (Array.isArray(result)) {\n for (var k = 0; k < result.length; k++) {\n memo.push(result[k])\n }\n } else {\n memo.push(result)\n }\n }\n\n tokens = memo\n }\n\n return tokens\n}\n\n/**\n * Convenience method for passing a string through a pipeline and getting\n * strings out. This method takes care of wrapping the passed string in a\n * token and mapping the resulting tokens back to strings.\n *\n * @param {string} str - The string to pass through the pipeline.\n * @param {?object} metadata - Optional metadata to associate with the token\n * passed to the pipeline.\n * @returns {string[]}\n */\nlunr.Pipeline.prototype.runString = function (str, metadata) {\n var token = new lunr.Token (str, metadata)\n\n return this.run([token]).map(function (t) {\n return t.toString()\n })\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A vector is used to construct the vector space of documents and queries. These\n * vectors support operations to determine the similarity between two documents or\n * a document and a query.\n *\n * Normally no parameters are required for initializing a vector, but in the case of\n * loading a previously dumped vector the raw elements can be provided to the constructor.\n *\n * For performance reasons vectors are implemented with a flat array, where an elements\n * index is immediately followed by its value. E.g. [index, value, index, value]. This\n * allows the underlying array to be as sparse as possible and still offer decent\n * performance when being used for vector calculations.\n *\n * @constructor\n * @param {Number[]} [elements] - The flat list of element index and element value pairs.\n */\nlunr.Vector = function (elements) {\n this._magnitude = 0\n this.elements = elements || []\n}\n\n\n/**\n * Calculates the position within the vector to insert a given index.\n *\n * This is used internally by insert and upsert. If there are duplicate indexes then\n * the position is returned as if the value for that index were to be updated, but it\n * is the callers responsibility to check whether there is a duplicate at that index\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @returns {Number}\n */\nlunr.Vector.prototype.positionForIndex = function (index) {\n // For an empty vector the tuple can be inserted at the beginning\n if (this.elements.length == 0) {\n return 0\n }\n\n var start = 0,\n end = this.elements.length / 2,\n sliceLength = end - start,\n pivotPoint = Math.floor(sliceLength / 2),\n pivotIndex = this.elements[pivotPoint * 2]\n\n while (sliceLength > 1) {\n if (pivotIndex < index) {\n start = pivotPoint\n }\n\n if (pivotIndex > index) {\n end = pivotPoint\n }\n\n if (pivotIndex == index) {\n break\n }\n\n sliceLength = end - start\n pivotPoint = start + Math.floor(sliceLength / 2)\n pivotIndex = this.elements[pivotPoint * 2]\n }\n\n if (pivotIndex == index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex > index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex < index) {\n return (pivotPoint + 1) * 2\n }\n}\n\n/**\n * Inserts an element at an index within the vector.\n *\n * Does not allow duplicates, will throw an error if there is already an entry\n * for this index.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n */\nlunr.Vector.prototype.insert = function (insertIdx, val) {\n this.upsert(insertIdx, val, function () {\n throw \"duplicate index\"\n })\n}\n\n/**\n * Inserts or updates an existing index within the vector.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n * @param {function} fn - A function that is called for updates, the existing value and the\n * requested value are passed as arguments\n */\nlunr.Vector.prototype.upsert = function (insertIdx, val, fn) {\n this._magnitude = 0\n var position = this.positionForIndex(insertIdx)\n\n if (this.elements[position] == insertIdx) {\n this.elements[position + 1] = fn(this.elements[position + 1], val)\n } else {\n this.elements.splice(position, 0, insertIdx, val)\n }\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n\n var sumOfSquares = 0,\n elementsLength = this.elements.length\n\n for (var i = 1; i < elementsLength; i += 2) {\n var val = this.elements[i]\n sumOfSquares += val * val\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The vector to compute the dot product with.\n * @returns {Number}\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var dotProduct = 0,\n a = this.elements, b = otherVector.elements,\n aLen = a.length, bLen = b.length,\n aVal = 0, bVal = 0,\n i = 0, j = 0\n\n while (i < aLen && j < bLen) {\n aVal = a[i], bVal = b[j]\n if (aVal < bVal) {\n i += 2\n } else if (aVal > bVal) {\n j += 2\n } else if (aVal == bVal) {\n dotProduct += a[i + 1] * b[j + 1]\n i += 2\n j += 2\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the similarity between this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The other vector to calculate the\n * similarity with.\n * @returns {Number}\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / this.magnitude() || 0\n}\n\n/**\n * Converts the vector to an array of the elements within the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toArray = function () {\n var output = new Array (this.elements.length / 2)\n\n for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) {\n output[j] = this.elements[i]\n }\n\n return output\n}\n\n/**\n * A JSON serializable representation of the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toJSON = function () {\n return this.elements\n}\n/* eslint-disable */\n/*!\n * lunr.stemmer\n * Copyright (C) 2020 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token - The string to stem\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n * @function\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return function (token) {\n return token.update(porterStemmer);\n }\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @function\n * @param {Array} token The token to pass through the filter\n * @returns {lunr.PipelineFunction}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token.toString()] !== token.toString()) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @function\n * @implements {lunr.PipelineFunction}\n * @params {lunr.Token} token - A token to check for being a stop word.\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the beginning and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token The token to pass through the filter\n * @returns {lunr.Token}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.update(function (s) {\n return s.replace(/^\\W+/, '').replace(/\\W+$/, '')\n })\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.TokenSet\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A token set is used to store the unique list of all tokens\n * within an index. Token sets are also used to represent an\n * incoming query to the index, this query token set and index\n * token set are then intersected to find which tokens to look\n * up in the inverted index.\n *\n * A token set can hold multiple tokens, as in the case of the\n * index token set, or it can hold a single token as in the\n * case of a simple query token set.\n *\n * Additionally token sets are used to perform wildcard matching.\n * Leading, contained and trailing wildcards are supported, and\n * from this edit distance matching can also be provided.\n *\n * Token sets are implemented as a minimal finite state automata,\n * where both common prefixes and suffixes are shared between tokens.\n * This helps to reduce the space used for storing the token set.\n *\n * @constructor\n */\nlunr.TokenSet = function () {\n this.final = false\n this.edges = {}\n this.id = lunr.TokenSet._nextId\n lunr.TokenSet._nextId += 1\n}\n\n/**\n * Keeps track of the next, auto increment, identifier to assign\n * to a new tokenSet.\n *\n * TokenSets require a unique identifier to be correctly minimised.\n *\n * @private\n */\nlunr.TokenSet._nextId = 1\n\n/**\n * Creates a TokenSet instance from the given sorted array of words.\n *\n * @param {String[]} arr - A sorted array of strings to create the set from.\n * @returns {lunr.TokenSet}\n * @throws Will throw an error if the input array is not sorted.\n */\nlunr.TokenSet.fromArray = function (arr) {\n var builder = new lunr.TokenSet.Builder\n\n for (var i = 0, len = arr.length; i < len; i++) {\n builder.insert(arr[i])\n }\n\n builder.finish()\n return builder.root\n}\n\n/**\n * Creates a token set from a query clause.\n *\n * @private\n * @param {Object} clause - A single clause from lunr.Query.\n * @param {string} clause.term - The query clause term.\n * @param {number} [clause.editDistance] - The optional edit distance for the term.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromClause = function (clause) {\n if ('editDistance' in clause) {\n return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance)\n } else {\n return lunr.TokenSet.fromString(clause.term)\n }\n}\n\n/**\n * Creates a token set representing a single string with a specified\n * edit distance.\n *\n * Insertions, deletions, substitutions and transpositions are each\n * treated as an edit distance of 1.\n *\n * Increasing the allowed edit distance will have a dramatic impact\n * on the performance of both creating and intersecting these TokenSets.\n * It is advised to keep the edit distance less than 3.\n *\n * @param {string} str - The string to create the token set from.\n * @param {number} editDistance - The allowed edit distance to match.\n * @returns {lunr.Vector}\n */\nlunr.TokenSet.fromFuzzyString = function (str, editDistance) {\n var root = new lunr.TokenSet\n\n var stack = [{\n node: root,\n editsRemaining: editDistance,\n str: str\n }]\n\n while (stack.length) {\n var frame = stack.pop()\n\n // no edit\n if (frame.str.length > 0) {\n var char = frame.str.charAt(0),\n noEditNode\n\n if (char in frame.node.edges) {\n noEditNode = frame.node.edges[char]\n } else {\n noEditNode = new lunr.TokenSet\n frame.node.edges[char] = noEditNode\n }\n\n if (frame.str.length == 1) {\n noEditNode.final = true\n }\n\n stack.push({\n node: noEditNode,\n editsRemaining: frame.editsRemaining,\n str: frame.str.slice(1)\n })\n }\n\n if (frame.editsRemaining == 0) {\n continue\n }\n\n // insertion\n if (\"*\" in frame.node.edges) {\n var insertionNode = frame.node.edges[\"*\"]\n } else {\n var insertionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = insertionNode\n }\n\n if (frame.str.length == 0) {\n insertionNode.final = true\n }\n\n stack.push({\n node: insertionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str\n })\n\n // deletion\n // can only do a deletion if we have enough edits remaining\n // and if there are characters left to delete in the string\n if (frame.str.length > 1) {\n stack.push({\n node: frame.node,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // deletion\n // just removing the last character from the str\n if (frame.str.length == 1) {\n frame.node.final = true\n }\n\n // substitution\n // can only do a substitution if we have enough edits remaining\n // and if there are characters left to substitute\n if (frame.str.length >= 1) {\n if (\"*\" in frame.node.edges) {\n var substitutionNode = frame.node.edges[\"*\"]\n } else {\n var substitutionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = substitutionNode\n }\n\n if (frame.str.length == 1) {\n substitutionNode.final = true\n }\n\n stack.push({\n node: substitutionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // transposition\n // can only do a transposition if there are edits remaining\n // and there are enough characters to transpose\n if (frame.str.length > 1) {\n var charA = frame.str.charAt(0),\n charB = frame.str.charAt(1),\n transposeNode\n\n if (charB in frame.node.edges) {\n transposeNode = frame.node.edges[charB]\n } else {\n transposeNode = new lunr.TokenSet\n frame.node.edges[charB] = transposeNode\n }\n\n if (frame.str.length == 1) {\n transposeNode.final = true\n }\n\n stack.push({\n node: transposeNode,\n editsRemaining: frame.editsRemaining - 1,\n str: charA + frame.str.slice(2)\n })\n }\n }\n\n return root\n}\n\n/**\n * Creates a TokenSet from a string.\n *\n * The string may contain one or more wildcard characters (*)\n * that will allow wildcard matching when intersecting with\n * another TokenSet.\n *\n * @param {string} str - The string to create a TokenSet from.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromString = function (str) {\n var node = new lunr.TokenSet,\n root = node\n\n /*\n * Iterates through all characters within the passed string\n * appending a node for each character.\n *\n * When a wildcard character is found then a self\n * referencing edge is introduced to continually match\n * any number of any characters.\n */\n for (var i = 0, len = str.length; i < len; i++) {\n var char = str[i],\n final = (i == len - 1)\n\n if (char == \"*\") {\n node.edges[char] = node\n node.final = final\n\n } else {\n var next = new lunr.TokenSet\n next.final = final\n\n node.edges[char] = next\n node = next\n }\n }\n\n return root\n}\n\n/**\n * Converts this TokenSet into an array of strings\n * contained within the TokenSet.\n *\n * This is not intended to be used on a TokenSet that\n * contains wildcards, in these cases the results are\n * undefined and are likely to cause an infinite loop.\n *\n * @returns {string[]}\n */\nlunr.TokenSet.prototype.toArray = function () {\n var words = []\n\n var stack = [{\n prefix: \"\",\n node: this\n }]\n\n while (stack.length) {\n var frame = stack.pop(),\n edges = Object.keys(frame.node.edges),\n len = edges.length\n\n if (frame.node.final) {\n /* In Safari, at this point the prefix is sometimes corrupted, see:\n * https://github.com/olivernn/lunr.js/issues/279 Calling any\n * String.prototype method forces Safari to \"cast\" this string to what\n * it's supposed to be, fixing the bug. */\n frame.prefix.charAt(0)\n words.push(frame.prefix)\n }\n\n for (var i = 0; i < len; i++) {\n var edge = edges[i]\n\n stack.push({\n prefix: frame.prefix.concat(edge),\n node: frame.node.edges[edge]\n })\n }\n }\n\n return words\n}\n\n/**\n * Generates a string representation of a TokenSet.\n *\n * This is intended to allow TokenSets to be used as keys\n * in objects, largely to aid the construction and minimisation\n * of a TokenSet. As such it is not designed to be a human\n * friendly representation of the TokenSet.\n *\n * @returns {string}\n */\nlunr.TokenSet.prototype.toString = function () {\n // NOTE: Using Object.keys here as this.edges is very likely\n // to enter 'hash-mode' with many keys being added\n //\n // avoiding a for-in loop here as it leads to the function\n // being de-optimised (at least in V8). From some simple\n // benchmarks the performance is comparable, but allowing\n // V8 to optimize may mean easy performance wins in the future.\n\n if (this._str) {\n return this._str\n }\n\n var str = this.final ? '1' : '0',\n labels = Object.keys(this.edges).sort(),\n len = labels.length\n\n for (var i = 0; i < len; i++) {\n var label = labels[i],\n node = this.edges[label]\n\n str = str + label + node.id\n }\n\n return str\n}\n\n/**\n * Returns a new TokenSet that is the intersection of\n * this TokenSet and the passed TokenSet.\n *\n * This intersection will take into account any wildcards\n * contained within the TokenSet.\n *\n * @param {lunr.TokenSet} b - An other TokenSet to intersect with.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.prototype.intersect = function (b) {\n var output = new lunr.TokenSet,\n frame = undefined\n\n var stack = [{\n qNode: b,\n output: output,\n node: this\n }]\n\n while (stack.length) {\n frame = stack.pop()\n\n // NOTE: As with the #toString method, we are using\n // Object.keys and a for loop instead of a for-in loop\n // as both of these objects enter 'hash' mode, causing\n // the function to be de-optimised in V8\n var qEdges = Object.keys(frame.qNode.edges),\n qLen = qEdges.length,\n nEdges = Object.keys(frame.node.edges),\n nLen = nEdges.length\n\n for (var q = 0; q < qLen; q++) {\n var qEdge = qEdges[q]\n\n for (var n = 0; n < nLen; n++) {\n var nEdge = nEdges[n]\n\n if (nEdge == qEdge || qEdge == '*') {\n var node = frame.node.edges[nEdge],\n qNode = frame.qNode.edges[qEdge],\n final = node.final && qNode.final,\n next = undefined\n\n if (nEdge in frame.output.edges) {\n // an edge already exists for this character\n // no need to create a new node, just set the finality\n // bit unless this node is already final\n next = frame.output.edges[nEdge]\n next.final = next.final || final\n\n } else {\n // no edge exists yet, must create one\n // set the finality bit and insert it\n // into the output\n next = new lunr.TokenSet\n next.final = final\n frame.output.edges[nEdge] = next\n }\n\n stack.push({\n qNode: qNode,\n output: next,\n node: node\n })\n }\n }\n }\n }\n\n return output\n}\nlunr.TokenSet.Builder = function () {\n this.previousWord = \"\"\n this.root = new lunr.TokenSet\n this.uncheckedNodes = []\n this.minimizedNodes = {}\n}\n\nlunr.TokenSet.Builder.prototype.insert = function (word) {\n var node,\n commonPrefix = 0\n\n if (word < this.previousWord) {\n throw new Error (\"Out of order word insertion\")\n }\n\n for (var i = 0; i < word.length && i < this.previousWord.length; i++) {\n if (word[i] != this.previousWord[i]) break\n commonPrefix++\n }\n\n this.minimize(commonPrefix)\n\n if (this.uncheckedNodes.length == 0) {\n node = this.root\n } else {\n node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child\n }\n\n for (var i = commonPrefix; i < word.length; i++) {\n var nextNode = new lunr.TokenSet,\n char = word[i]\n\n node.edges[char] = nextNode\n\n this.uncheckedNodes.push({\n parent: node,\n char: char,\n child: nextNode\n })\n\n node = nextNode\n }\n\n node.final = true\n this.previousWord = word\n}\n\nlunr.TokenSet.Builder.prototype.finish = function () {\n this.minimize(0)\n}\n\nlunr.TokenSet.Builder.prototype.minimize = function (downTo) {\n for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) {\n var node = this.uncheckedNodes[i],\n childKey = node.child.toString()\n\n if (childKey in this.minimizedNodes) {\n node.parent.edges[node.char] = this.minimizedNodes[childKey]\n } else {\n // Cache the key for this node since\n // we know it can't change anymore\n node.child._str = childKey\n\n this.minimizedNodes[childKey] = node.child\n }\n\n this.uncheckedNodes.pop()\n }\n}\n/*!\n * lunr.Index\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * An index contains the built index of all documents and provides a query interface\n * to the index.\n *\n * Usually instances of lunr.Index will not be created using this constructor, instead\n * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be\n * used to load previously built and serialized indexes.\n *\n * @constructor\n * @param {Object} attrs - The attributes of the built search index.\n * @param {Object} attrs.invertedIndex - An index of term/field to document reference.\n * @param {Object} attrs.fieldVectors - Field vectors\n * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.\n * @param {string[]} attrs.fields - The names of indexed document fields.\n * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.\n */\nlunr.Index = function (attrs) {\n this.invertedIndex = attrs.invertedIndex\n this.fieldVectors = attrs.fieldVectors\n this.tokenSet = attrs.tokenSet\n this.fields = attrs.fields\n this.pipeline = attrs.pipeline\n}\n\n/**\n * A result contains details of a document matching a search query.\n * @typedef {Object} lunr.Index~Result\n * @property {string} ref - The reference of the document this result represents.\n * @property {number} score - A number between 0 and 1 representing how similar this document is to the query.\n * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match.\n */\n\n/**\n * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple\n * query language which itself is parsed into an instance of lunr.Query.\n *\n * For programmatically building queries it is advised to directly use lunr.Query, the query language\n * is best used for human entered text rather than program generated text.\n *\n * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported\n * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello'\n * or 'world', though those that contain both will rank higher in the results.\n *\n * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can\n * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding\n * wildcards will increase the number of documents that will be found but can also have a negative\n * impact on query performance, especially with wildcards at the beginning of a term.\n *\n * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term\n * hello in the title field will match this query. Using a field not present in the index will lead\n * to an error being thrown.\n *\n * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term\n * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported\n * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2.\n * Avoid large values for edit distance to improve query performance.\n *\n * Each term also supports a presence modifier. By default a term's presence in document is optional, however\n * this can be changed to either required or prohibited. For a term's presence to be required in a document the\n * term should be prefixed with a '+', e.g. `+foo bar` is a search for documents that must contain 'foo' and\n * optionally contain 'bar'. Conversely a leading '-' sets the terms presence to prohibited, i.e. it must not\n * appear in a document, e.g. `-foo bar` is a search for documents that do not contain 'foo' but may contain 'bar'.\n *\n * To escape special characters the backslash character '\\' can be used, this allows searches to include\n * characters that would normally be considered modifiers, e.g. `foo\\~2` will search for a term \"foo~2\" instead\n * of attempting to apply a boost of 2 to the search term \"foo\".\n *\n * @typedef {string} lunr.Index~QueryString\n * @example Simple single term query\n * hello\n * @example Multiple term query\n * hello world\n * @example term scoped to a field\n * title:hello\n * @example term with a boost of 10\n * hello^10\n * @example term with an edit distance of 2\n * hello~2\n * @example terms with presence modifiers\n * -foo +bar baz\n */\n\n/**\n * Performs a search against the index using lunr query syntax.\n *\n * Results will be returned sorted by their score, the most relevant results\n * will be returned first. For details on how the score is calculated, please see\n * the {@link https://lunrjs.com/guides/searching.html#scoring|guide}.\n *\n * For more programmatic querying use lunr.Index#query.\n *\n * @param {lunr.Index~QueryString} queryString - A string containing a lunr query.\n * @throws {lunr.QueryParseError} If the passed query string cannot be parsed.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.search = function (queryString) {\n return this.query(function (query) {\n var parser = new lunr.QueryParser(queryString, query)\n parser.parse()\n })\n}\n\n/**\n * A query builder callback provides a query object to be used to express\n * the query to perform on the index.\n *\n * @callback lunr.Index~queryBuilder\n * @param {lunr.Query} query - The query object to build up.\n * @this lunr.Query\n */\n\n/**\n * Performs a query against the index using the yielded lunr.Query object.\n *\n * If performing programmatic queries against the index, this method is preferred\n * over lunr.Index#search so as to avoid the additional query parsing overhead.\n *\n * A query object is yielded to the supplied function which should be used to\n * express the query to be run against the index.\n *\n * Note that although this function takes a callback parameter it is _not_ an\n * asynchronous operation, the callback is just yielded a query object to be\n * customized.\n *\n * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.query = function (fn) {\n // for each query clause\n // * process terms\n // * expand terms from token set\n // * find matching documents and metadata\n // * get document vectors\n // * score documents\n\n var query = new lunr.Query(this.fields),\n matchingFields = Object.create(null),\n queryVectors = Object.create(null),\n termFieldCache = Object.create(null),\n requiredMatches = Object.create(null),\n prohibitedMatches = Object.create(null)\n\n /*\n * To support field level boosts a query vector is created per\n * field. An empty vector is eagerly created to support negated\n * queries.\n */\n for (var i = 0; i < this.fields.length; i++) {\n queryVectors[this.fields[i]] = new lunr.Vector\n }\n\n fn.call(query, query)\n\n for (var i = 0; i < query.clauses.length; i++) {\n /*\n * Unless the pipeline has been disabled for this term, which is\n * the case for terms with wildcards, we need to pass the clause\n * term through the search pipeline. A pipeline returns an array\n * of processed terms. Pipeline functions may expand the passed\n * term, which means we may end up performing multiple index lookups\n * for a single query term.\n */\n var clause = query.clauses[i],\n terms = null,\n clauseMatches = lunr.Set.empty\n\n if (clause.usePipeline) {\n terms = this.pipeline.runString(clause.term, {\n fields: clause.fields\n })\n } else {\n terms = [clause.term]\n }\n\n for (var m = 0; m < terms.length; m++) {\n var term = terms[m]\n\n /*\n * Each term returned from the pipeline needs to use the same query\n * clause object, e.g. the same boost and or edit distance. The\n * simplest way to do this is to re-use the clause object but mutate\n * its term property.\n */\n clause.term = term\n\n /*\n * From the term in the clause we create a token set which will then\n * be used to intersect the indexes token set to get a list of terms\n * to lookup in the inverted index\n */\n var termTokenSet = lunr.TokenSet.fromClause(clause),\n expandedTerms = this.tokenSet.intersect(termTokenSet).toArray()\n\n /*\n * If a term marked as required does not exist in the tokenSet it is\n * impossible for the search to return any matches. We set all the field\n * scoped required matches set to empty and stop examining any further\n * clauses.\n */\n if (expandedTerms.length === 0 && clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = lunr.Set.empty\n }\n\n break\n }\n\n for (var j = 0; j < expandedTerms.length; j++) {\n /*\n * For each term get the posting and termIndex, this is required for\n * building the query vector.\n */\n var expandedTerm = expandedTerms[j],\n posting = this.invertedIndex[expandedTerm],\n termIndex = posting._index\n\n for (var k = 0; k < clause.fields.length; k++) {\n /*\n * For each field that this query term is scoped by (by default\n * all fields are in scope) we need to get all the document refs\n * that have this term in that field.\n *\n * The posting is the entry in the invertedIndex for the matching\n * term from above.\n */\n var field = clause.fields[k],\n fieldPosting = posting[field],\n matchingDocumentRefs = Object.keys(fieldPosting),\n termField = expandedTerm + \"/\" + field,\n matchingDocumentsSet = new lunr.Set(matchingDocumentRefs)\n\n /*\n * if the presence of this term is required ensure that the matching\n * documents are added to the set of required matches for this clause.\n *\n */\n if (clause.presence == lunr.Query.presence.REQUIRED) {\n clauseMatches = clauseMatches.union(matchingDocumentsSet)\n\n if (requiredMatches[field] === undefined) {\n requiredMatches[field] = lunr.Set.complete\n }\n }\n\n /*\n * if the presence of this term is prohibited ensure that the matching\n * documents are added to the set of prohibited matches for this field,\n * creating that set if it does not yet exist.\n */\n if (clause.presence == lunr.Query.presence.PROHIBITED) {\n if (prohibitedMatches[field] === undefined) {\n prohibitedMatches[field] = lunr.Set.empty\n }\n\n prohibitedMatches[field] = prohibitedMatches[field].union(matchingDocumentsSet)\n\n /*\n * Prohibited matches should not be part of the query vector used for\n * similarity scoring and no metadata should be extracted so we continue\n * to the next field\n */\n continue\n }\n\n /*\n * The query field vector is populated using the termIndex found for\n * the term and a unit value with the appropriate boost applied.\n * Using upsert because there could already be an entry in the vector\n * for the term we are working with. In that case we just add the scores\n * together.\n */\n queryVectors[field].upsert(termIndex, clause.boost, function (a, b) { return a + b })\n\n /**\n * If we've already seen this term, field combo then we've already collected\n * the matching documents and metadata, no need to go through all that again\n */\n if (termFieldCache[termField]) {\n continue\n }\n\n for (var l = 0; l < matchingDocumentRefs.length; l++) {\n /*\n * All metadata for this term/field/document triple\n * are then extracted and collected into an instance\n * of lunr.MatchData ready to be returned in the query\n * results\n */\n var matchingDocumentRef = matchingDocumentRefs[l],\n matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field),\n metadata = fieldPosting[matchingDocumentRef],\n fieldMatch\n\n if ((fieldMatch = matchingFields[matchingFieldRef]) === undefined) {\n matchingFields[matchingFieldRef] = new lunr.MatchData (expandedTerm, field, metadata)\n } else {\n fieldMatch.add(expandedTerm, field, metadata)\n }\n\n }\n\n termFieldCache[termField] = true\n }\n }\n }\n\n /**\n * If the presence was required we need to update the requiredMatches field sets.\n * We do this after all fields for the term have collected their matches because\n * the clause terms presence is required in _any_ of the fields not _all_ of the\n * fields.\n */\n if (clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = requiredMatches[field].intersect(clauseMatches)\n }\n }\n }\n\n /**\n * Need to combine the field scoped required and prohibited\n * matching documents into a global set of required and prohibited\n * matches\n */\n var allRequiredMatches = lunr.Set.complete,\n allProhibitedMatches = lunr.Set.empty\n\n for (var i = 0; i < this.fields.length; i++) {\n var field = this.fields[i]\n\n if (requiredMatches[field]) {\n allRequiredMatches = allRequiredMatches.intersect(requiredMatches[field])\n }\n\n if (prohibitedMatches[field]) {\n allProhibitedMatches = allProhibitedMatches.union(prohibitedMatches[field])\n }\n }\n\n var matchingFieldRefs = Object.keys(matchingFields),\n results = [],\n matches = Object.create(null)\n\n /*\n * If the query is negated (contains only prohibited terms)\n * we need to get _all_ fieldRefs currently existing in the\n * index. This is only done when we know that the query is\n * entirely prohibited terms to avoid any cost of getting all\n * fieldRefs unnecessarily.\n *\n * Additionally, blank MatchData must be created to correctly\n * populate the results.\n */\n if (query.isNegated()) {\n matchingFieldRefs = Object.keys(this.fieldVectors)\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n var matchingFieldRef = matchingFieldRefs[i]\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRef)\n matchingFields[matchingFieldRef] = new lunr.MatchData\n }\n }\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n /*\n * Currently we have document fields that match the query, but we\n * need to return documents. The matchData and scores are combined\n * from multiple fields belonging to the same document.\n *\n * Scores are calculated by field, using the query vectors created\n * above, and combined into a final document score using addition.\n */\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]),\n docRef = fieldRef.docRef\n\n if (!allRequiredMatches.contains(docRef)) {\n continue\n }\n\n if (allProhibitedMatches.contains(docRef)) {\n continue\n }\n\n var fieldVector = this.fieldVectors[fieldRef],\n score = queryVectors[fieldRef.fieldName].similarity(fieldVector),\n docMatch\n\n if ((docMatch = matches[docRef]) !== undefined) {\n docMatch.score += score\n docMatch.matchData.combine(matchingFields[fieldRef])\n } else {\n var match = {\n ref: docRef,\n score: score,\n matchData: matchingFields[fieldRef]\n }\n matches[docRef] = match\n results.push(match)\n }\n }\n\n /*\n * Sort the results objects by score, highest first.\n */\n return results.sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Prepares the index for JSON serialization.\n *\n * The schema for this JSON blob will be described in a\n * separate JSON schema file.\n *\n * @returns {Object}\n */\nlunr.Index.prototype.toJSON = function () {\n var invertedIndex = Object.keys(this.invertedIndex)\n .sort()\n .map(function (term) {\n return [term, this.invertedIndex[term]]\n }, this)\n\n var fieldVectors = Object.keys(this.fieldVectors)\n .map(function (ref) {\n return [ref, this.fieldVectors[ref].toJSON()]\n }, this)\n\n return {\n version: lunr.version,\n fields: this.fields,\n fieldVectors: fieldVectors,\n invertedIndex: invertedIndex,\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Loads a previously serialized lunr.Index\n *\n * @param {Object} serializedIndex - A previously serialized lunr.Index\n * @returns {lunr.Index}\n */\nlunr.Index.load = function (serializedIndex) {\n var attrs = {},\n fieldVectors = {},\n serializedVectors = serializedIndex.fieldVectors,\n invertedIndex = Object.create(null),\n serializedInvertedIndex = serializedIndex.invertedIndex,\n tokenSetBuilder = new lunr.TokenSet.Builder,\n pipeline = lunr.Pipeline.load(serializedIndex.pipeline)\n\n if (serializedIndex.version != lunr.version) {\n lunr.utils.warn(\"Version mismatch when loading serialised index. Current version of lunr '\" + lunr.version + \"' does not match serialized index '\" + serializedIndex.version + \"'\")\n }\n\n for (var i = 0; i < serializedVectors.length; i++) {\n var tuple = serializedVectors[i],\n ref = tuple[0],\n elements = tuple[1]\n\n fieldVectors[ref] = new lunr.Vector(elements)\n }\n\n for (var i = 0; i < serializedInvertedIndex.length; i++) {\n var tuple = serializedInvertedIndex[i],\n term = tuple[0],\n posting = tuple[1]\n\n tokenSetBuilder.insert(term)\n invertedIndex[term] = posting\n }\n\n tokenSetBuilder.finish()\n\n attrs.fields = serializedIndex.fields\n\n attrs.fieldVectors = fieldVectors\n attrs.invertedIndex = invertedIndex\n attrs.tokenSet = tokenSetBuilder.root\n attrs.pipeline = pipeline\n\n return new lunr.Index(attrs)\n}\n/*!\n * lunr.Builder\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.Builder performs indexing on a set of documents and\n * returns instances of lunr.Index ready for querying.\n *\n * All configuration of the index is done via the builder, the\n * fields to index, the document reference, the text processing\n * pipeline and document scoring parameters are all set on the\n * builder before indexing.\n *\n * @constructor\n * @property {string} _ref - Internal reference to the document reference field.\n * @property {string[]} _fields - Internal reference to the document fields to index.\n * @property {object} invertedIndex - The inverted index maps terms to document fields.\n * @property {object} documentTermFrequencies - Keeps track of document term frequencies.\n * @property {object} documentLengths - Keeps track of the length of documents added to the index.\n * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing.\n * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing.\n * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index.\n * @property {number} documentCount - Keeps track of the total number of documents indexed.\n * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75.\n * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2.\n * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space.\n * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index.\n */\nlunr.Builder = function () {\n this._ref = \"id\"\n this._fields = Object.create(null)\n this._documents = Object.create(null)\n this.invertedIndex = Object.create(null)\n this.fieldTermFrequencies = {}\n this.fieldLengths = {}\n this.tokenizer = lunr.tokenizer\n this.pipeline = new lunr.Pipeline\n this.searchPipeline = new lunr.Pipeline\n this.documentCount = 0\n this._b = 0.75\n this._k1 = 1.2\n this.termIndex = 0\n this.metadataWhitelist = []\n}\n\n/**\n * Sets the document field used as the document reference. Every document must have this field.\n * The type of this field in the document should be a string, if it is not a string it will be\n * coerced into a string by calling toString.\n *\n * The default ref is 'id'.\n *\n * The ref should _not_ be changed during indexing, it should be set before any documents are\n * added to the index. Changing it during indexing can lead to inconsistent results.\n *\n * @param {string} ref - The name of the reference field in the document.\n */\nlunr.Builder.prototype.ref = function (ref) {\n this._ref = ref\n}\n\n/**\n * A function that is used to extract a field from a document.\n *\n * Lunr expects a field to be at the top level of a document, if however the field\n * is deeply nested within a document an extractor function can be used to extract\n * the right field for indexing.\n *\n * @callback fieldExtractor\n * @param {object} doc - The document being added to the index.\n * @returns {?(string|object|object[])} obj - The object that will be indexed for this field.\n * @example Extracting a nested field\n * function (doc) { return doc.nested.field }\n */\n\n/**\n * Adds a field to the list of document fields that will be indexed. Every document being\n * indexed should have this field. Null values for this field in indexed documents will\n * not cause errors but will limit the chance of that document being retrieved by searches.\n *\n * All fields should be added before adding documents to the index. Adding fields after\n * a document has been indexed will have no effect on already indexed documents.\n *\n * Fields can be boosted at build time. This allows terms within that field to have more\n * importance when ranking search results. Use a field boost to specify that matches within\n * one field are more important than other fields.\n *\n * @param {string} fieldName - The name of a field to index in all documents.\n * @param {object} attributes - Optional attributes associated with this field.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this field.\n * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document.\n * @throws {RangeError} fieldName cannot contain unsupported characters '/'\n */\nlunr.Builder.prototype.field = function (fieldName, attributes) {\n if (/\\//.test(fieldName)) {\n throw new RangeError (\"Field '\" + fieldName + \"' contains illegal character '/'\")\n }\n\n this._fields[fieldName] = attributes || {}\n}\n\n/**\n * A parameter to tune the amount of field length normalisation that is applied when\n * calculating relevance scores. A value of 0 will completely disable any normalisation\n * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b\n * will be clamped to the range 0 - 1.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.b = function (number) {\n if (number < 0) {\n this._b = 0\n } else if (number > 1) {\n this._b = 1\n } else {\n this._b = number\n }\n}\n\n/**\n * A parameter that controls the speed at which a rise in term frequency results in term\n * frequency saturation. The default value is 1.2. Setting this to a higher value will give\n * slower saturation levels, a lower value will result in quicker saturation.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.k1 = function (number) {\n this._k1 = number\n}\n\n/**\n * Adds a document to the index.\n *\n * Before adding fields to the index the index should have been fully setup, with the document\n * ref and all fields to index already having been specified.\n *\n * The document must have a field name as specified by the ref (by default this is 'id') and\n * it should have all fields defined for indexing, though null or undefined values will not\n * cause errors.\n *\n * Entire documents can be boosted at build time. Applying a boost to a document indicates that\n * this document should rank higher in search results than other documents.\n *\n * @param {object} doc - The document to add to the index.\n * @param {object} attributes - Optional attributes associated with this document.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this document.\n */\nlunr.Builder.prototype.add = function (doc, attributes) {\n var docRef = doc[this._ref],\n fields = Object.keys(this._fields)\n\n this._documents[docRef] = attributes || {}\n this.documentCount += 1\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i],\n extractor = this._fields[fieldName].extractor,\n field = extractor ? extractor(doc) : doc[fieldName],\n tokens = this.tokenizer(field, {\n fields: [fieldName]\n }),\n terms = this.pipeline.run(tokens),\n fieldRef = new lunr.FieldRef (docRef, fieldName),\n fieldTerms = Object.create(null)\n\n this.fieldTermFrequencies[fieldRef] = fieldTerms\n this.fieldLengths[fieldRef] = 0\n\n // store the length of this field for this document\n this.fieldLengths[fieldRef] += terms.length\n\n // calculate term frequencies for this field\n for (var j = 0; j < terms.length; j++) {\n var term = terms[j]\n\n if (fieldTerms[term] == undefined) {\n fieldTerms[term] = 0\n }\n\n fieldTerms[term] += 1\n\n // add to inverted index\n // create an initial posting if one doesn't exist\n if (this.invertedIndex[term] == undefined) {\n var posting = Object.create(null)\n posting[\"_index\"] = this.termIndex\n this.termIndex += 1\n\n for (var k = 0; k < fields.length; k++) {\n posting[fields[k]] = Object.create(null)\n }\n\n this.invertedIndex[term] = posting\n }\n\n // add an entry for this term/fieldName/docRef to the invertedIndex\n if (this.invertedIndex[term][fieldName][docRef] == undefined) {\n this.invertedIndex[term][fieldName][docRef] = Object.create(null)\n }\n\n // store all whitelisted metadata about this token in the\n // inverted index\n for (var l = 0; l < this.metadataWhitelist.length; l++) {\n var metadataKey = this.metadataWhitelist[l],\n metadata = term.metadata[metadataKey]\n\n if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) {\n this.invertedIndex[term][fieldName][docRef][metadataKey] = []\n }\n\n this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)\n }\n }\n\n }\n}\n\n/**\n * Calculates the average document length for this index\n *\n * @private\n */\nlunr.Builder.prototype.calculateAverageFieldLengths = function () {\n\n var fieldRefs = Object.keys(this.fieldLengths),\n numberOfFields = fieldRefs.length,\n accumulator = {},\n documentsWithField = {}\n\n for (var i = 0; i < numberOfFields; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n field = fieldRef.fieldName\n\n documentsWithField[field] || (documentsWithField[field] = 0)\n documentsWithField[field] += 1\n\n accumulator[field] || (accumulator[field] = 0)\n accumulator[field] += this.fieldLengths[fieldRef]\n }\n\n var fields = Object.keys(this._fields)\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i]\n accumulator[fieldName] = accumulator[fieldName] / documentsWithField[fieldName]\n }\n\n this.averageFieldLength = accumulator\n}\n\n/**\n * Builds a vector space model of every document using lunr.Vector\n *\n * @private\n */\nlunr.Builder.prototype.createFieldVectors = function () {\n var fieldVectors = {},\n fieldRefs = Object.keys(this.fieldTermFrequencies),\n fieldRefsLength = fieldRefs.length,\n termIdfCache = Object.create(null)\n\n for (var i = 0; i < fieldRefsLength; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n fieldName = fieldRef.fieldName,\n fieldLength = this.fieldLengths[fieldRef],\n fieldVector = new lunr.Vector,\n termFrequencies = this.fieldTermFrequencies[fieldRef],\n terms = Object.keys(termFrequencies),\n termsLength = terms.length\n\n\n var fieldBoost = this._fields[fieldName].boost || 1,\n docBoost = this._documents[fieldRef.docRef].boost || 1\n\n for (var j = 0; j < termsLength; j++) {\n var term = terms[j],\n tf = termFrequencies[term],\n termIndex = this.invertedIndex[term]._index,\n idf, score, scoreWithPrecision\n\n if (termIdfCache[term] === undefined) {\n idf = lunr.idf(this.invertedIndex[term], this.documentCount)\n termIdfCache[term] = idf\n } else {\n idf = termIdfCache[term]\n }\n\n score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[fieldName])) + tf)\n score *= fieldBoost\n score *= docBoost\n scoreWithPrecision = Math.round(score * 1000) / 1000\n // Converts 1.23456789 to 1.234.\n // Reducing the precision so that the vectors take up less\n // space when serialised. Doing it now so that they behave\n // the same before and after serialisation. Also, this is\n // the fastest approach to reducing a number's precision in\n // JavaScript.\n\n fieldVector.insert(termIndex, scoreWithPrecision)\n }\n\n fieldVectors[fieldRef] = fieldVector\n }\n\n this.fieldVectors = fieldVectors\n}\n\n/**\n * Creates a token set of all tokens in the index using lunr.TokenSet\n *\n * @private\n */\nlunr.Builder.prototype.createTokenSet = function () {\n this.tokenSet = lunr.TokenSet.fromArray(\n Object.keys(this.invertedIndex).sort()\n )\n}\n\n/**\n * Builds the index, creating an instance of lunr.Index.\n *\n * This completes the indexing process and should only be called\n * once all documents have been added to the index.\n *\n * @returns {lunr.Index}\n */\nlunr.Builder.prototype.build = function () {\n this.calculateAverageFieldLengths()\n this.createFieldVectors()\n this.createTokenSet()\n\n return new lunr.Index({\n invertedIndex: this.invertedIndex,\n fieldVectors: this.fieldVectors,\n tokenSet: this.tokenSet,\n fields: Object.keys(this._fields),\n pipeline: this.searchPipeline\n })\n}\n\n/**\n * Applies a plugin to the index builder.\n *\n * A plugin is a function that is called with the index builder as its context.\n * Plugins can be used to customise or extend the behaviour of the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied when building the index.\n *\n * The plugin function will be called with the index builder as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index builder as its context.\n *\n * @param {Function} plugin The plugin to apply.\n */\nlunr.Builder.prototype.use = function (fn) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n fn.apply(this, args)\n}\n/**\n * Contains and collects metadata about a matching document.\n * A single instance of lunr.MatchData is returned as part of every\n * lunr.Index~Result.\n *\n * @constructor\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n * @property {object} metadata - A cloned collection of metadata associated with this document.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData = function (term, field, metadata) {\n var clonedMetadata = Object.create(null),\n metadataKeys = Object.keys(metadata || {})\n\n // Cloning the metadata to prevent the original\n // being mutated during match data combination.\n // Metadata is kept in an array within the inverted\n // index so cloning the data can be done with\n // Array#slice\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n clonedMetadata[key] = metadata[key].slice()\n }\n\n this.metadata = Object.create(null)\n\n if (term !== undefined) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = clonedMetadata\n }\n}\n\n/**\n * An instance of lunr.MatchData will be created for every term that matches a\n * document. However only one instance is required in a lunr.Index~Result. This\n * method combines metadata from another instance of lunr.MatchData with this\n * objects metadata.\n *\n * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData.prototype.combine = function (otherMatchData) {\n var terms = Object.keys(otherMatchData.metadata)\n\n for (var i = 0; i < terms.length; i++) {\n var term = terms[i],\n fields = Object.keys(otherMatchData.metadata[term])\n\n if (this.metadata[term] == undefined) {\n this.metadata[term] = Object.create(null)\n }\n\n for (var j = 0; j < fields.length; j++) {\n var field = fields[j],\n keys = Object.keys(otherMatchData.metadata[term][field])\n\n if (this.metadata[term][field] == undefined) {\n this.metadata[term][field] = Object.create(null)\n }\n\n for (var k = 0; k < keys.length; k++) {\n var key = keys[k]\n\n if (this.metadata[term][field][key] == undefined) {\n this.metadata[term][field][key] = otherMatchData.metadata[term][field][key]\n } else {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])\n }\n\n }\n }\n }\n}\n\n/**\n * Add metadata for a term/field pair to this instance of match data.\n *\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n */\nlunr.MatchData.prototype.add = function (term, field, metadata) {\n if (!(term in this.metadata)) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = metadata\n return\n }\n\n if (!(field in this.metadata[term])) {\n this.metadata[term][field] = metadata\n return\n }\n\n var metadataKeys = Object.keys(metadata)\n\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n\n if (key in this.metadata[term][field]) {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(metadata[key])\n } else {\n this.metadata[term][field][key] = metadata[key]\n }\n }\n}\n/**\n * A lunr.Query provides a programmatic way of defining queries to be performed\n * against a {@link lunr.Index}.\n *\n * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method\n * so the query object is pre-initialized with the right index fields.\n *\n * @constructor\n * @property {lunr.Query~Clause[]} clauses - An array of query clauses.\n * @property {string[]} allFields - An array of all available fields in a lunr.Index.\n */\nlunr.Query = function (allFields) {\n this.clauses = []\n this.allFields = allFields\n}\n\n/**\n * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause.\n *\n * This allows wildcards to be added to the beginning and end of a term without having to manually do any string\n * concatenation.\n *\n * The wildcard constants can be bitwise combined to select both leading and trailing wildcards.\n *\n * @constant\n * @default\n * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour\n * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists\n * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example query term with trailing wildcard\n * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING })\n * @example query term with leading and trailing wildcard\n * query.term('foo', {\n * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING\n * })\n */\n\nlunr.Query.wildcard = new String (\"*\")\nlunr.Query.wildcard.NONE = 0\nlunr.Query.wildcard.LEADING = 1\nlunr.Query.wildcard.TRAILING = 2\n\n/**\n * Constants for indicating what kind of presence a term must have in matching documents.\n *\n * @constant\n * @enum {number}\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example query term with required presence\n * query.term('foo', { presence: lunr.Query.presence.REQUIRED })\n */\nlunr.Query.presence = {\n /**\n * Term's presence in a document is optional, this is the default value.\n */\n OPTIONAL: 1,\n\n /**\n * Term's presence in a document is required, documents that do not contain\n * this term will not be returned.\n */\n REQUIRED: 2,\n\n /**\n * Term's presence in a document is prohibited, documents that do contain\n * this term will not be returned.\n */\n PROHIBITED: 3\n}\n\n/**\n * A single clause in a {@link lunr.Query} contains a term and details on how to\n * match that term against a {@link lunr.Index}.\n *\n * @typedef {Object} lunr.Query~Clause\n * @property {string[]} fields - The fields in an index this clause should be matched against.\n * @property {number} [boost=1] - Any boost that should be applied when matching this clause.\n * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be.\n * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline.\n * @property {number} [wildcard=lunr.Query.wildcard.NONE] - Whether the term should have wildcards appended or prepended.\n * @property {number} [presence=lunr.Query.presence.OPTIONAL] - The terms presence in any matching documents.\n */\n\n/**\n * Adds a {@link lunr.Query~Clause} to this query.\n *\n * Unless the clause contains the fields to be matched all fields will be matched. In addition\n * a default boost of 1 is applied to the clause.\n *\n * @param {lunr.Query~Clause} clause - The clause to add to this query.\n * @see lunr.Query~Clause\n * @returns {lunr.Query}\n */\nlunr.Query.prototype.clause = function (clause) {\n if (!('fields' in clause)) {\n clause.fields = this.allFields\n }\n\n if (!('boost' in clause)) {\n clause.boost = 1\n }\n\n if (!('usePipeline' in clause)) {\n clause.usePipeline = true\n }\n\n if (!('wildcard' in clause)) {\n clause.wildcard = lunr.Query.wildcard.NONE\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) {\n clause.term = \"*\" + clause.term\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) {\n clause.term = \"\" + clause.term + \"*\"\n }\n\n if (!('presence' in clause)) {\n clause.presence = lunr.Query.presence.OPTIONAL\n }\n\n this.clauses.push(clause)\n\n return this\n}\n\n/**\n * A negated query is one in which every clause has a presence of\n * prohibited. These queries require some special processing to return\n * the expected results.\n *\n * @returns boolean\n */\nlunr.Query.prototype.isNegated = function () {\n for (var i = 0; i < this.clauses.length; i++) {\n if (this.clauses[i].presence != lunr.Query.presence.PROHIBITED) {\n return false\n }\n }\n\n return true\n}\n\n/**\n * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause}\n * to the list of clauses that make up this query.\n *\n * The term is used as is, i.e. no tokenization will be performed by this method. Instead conversion\n * to a token or token-like string should be done before calling this method.\n *\n * The term will be converted to a string by calling `toString`. Multiple terms can be passed as an\n * array, each term in the array will share the same options.\n *\n * @param {object|object[]} term - The term(s) to add to the query.\n * @param {object} [options] - Any additional properties to add to the query clause.\n * @returns {lunr.Query}\n * @see lunr.Query#clause\n * @see lunr.Query~Clause\n * @example adding a single term to a query\n * query.term(\"foo\")\n * @example adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard\n * query.term(\"foo\", {\n * fields: [\"title\"],\n * boost: 10,\n * wildcard: lunr.Query.wildcard.TRAILING\n * })\n * @example using lunr.tokenizer to convert a string to tokens before using them as terms\n * query.term(lunr.tokenizer(\"foo bar\"))\n */\nlunr.Query.prototype.term = function (term, options) {\n if (Array.isArray(term)) {\n term.forEach(function (t) { this.term(t, lunr.utils.clone(options)) }, this)\n return this\n }\n\n var clause = options || {}\n clause.term = term.toString()\n\n this.clause(clause)\n\n return this\n}\nlunr.QueryParseError = function (message, start, end) {\n this.name = \"QueryParseError\"\n this.message = message\n this.start = start\n this.end = end\n}\n\nlunr.QueryParseError.prototype = new Error\nlunr.QueryLexer = function (str) {\n this.lexemes = []\n this.str = str\n this.length = str.length\n this.pos = 0\n this.start = 0\n this.escapeCharPositions = []\n}\n\nlunr.QueryLexer.prototype.run = function () {\n var state = lunr.QueryLexer.lexText\n\n while (state) {\n state = state(this)\n }\n}\n\nlunr.QueryLexer.prototype.sliceString = function () {\n var subSlices = [],\n sliceStart = this.start,\n sliceEnd = this.pos\n\n for (var i = 0; i < this.escapeCharPositions.length; i++) {\n sliceEnd = this.escapeCharPositions[i]\n subSlices.push(this.str.slice(sliceStart, sliceEnd))\n sliceStart = sliceEnd + 1\n }\n\n subSlices.push(this.str.slice(sliceStart, this.pos))\n this.escapeCharPositions.length = 0\n\n return subSlices.join('')\n}\n\nlunr.QueryLexer.prototype.emit = function (type) {\n this.lexemes.push({\n type: type,\n str: this.sliceString(),\n start: this.start,\n end: this.pos\n })\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.escapeCharacter = function () {\n this.escapeCharPositions.push(this.pos - 1)\n this.pos += 1\n}\n\nlunr.QueryLexer.prototype.next = function () {\n if (this.pos >= this.length) {\n return lunr.QueryLexer.EOS\n }\n\n var char = this.str.charAt(this.pos)\n this.pos += 1\n return char\n}\n\nlunr.QueryLexer.prototype.width = function () {\n return this.pos - this.start\n}\n\nlunr.QueryLexer.prototype.ignore = function () {\n if (this.start == this.pos) {\n this.pos += 1\n }\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.backup = function () {\n this.pos -= 1\n}\n\nlunr.QueryLexer.prototype.acceptDigitRun = function () {\n var char, charCode\n\n do {\n char = this.next()\n charCode = char.charCodeAt(0)\n } while (charCode > 47 && charCode < 58)\n\n if (char != lunr.QueryLexer.EOS) {\n this.backup()\n }\n}\n\nlunr.QueryLexer.prototype.more = function () {\n return this.pos < this.length\n}\n\nlunr.QueryLexer.EOS = 'EOS'\nlunr.QueryLexer.FIELD = 'FIELD'\nlunr.QueryLexer.TERM = 'TERM'\nlunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE'\nlunr.QueryLexer.BOOST = 'BOOST'\nlunr.QueryLexer.PRESENCE = 'PRESENCE'\n\nlunr.QueryLexer.lexField = function (lexer) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.FIELD)\n lexer.ignore()\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexTerm = function (lexer) {\n if (lexer.width() > 1) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.TERM)\n }\n\n lexer.ignore()\n\n if (lexer.more()) {\n return lunr.QueryLexer.lexText\n }\n}\n\nlunr.QueryLexer.lexEditDistance = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.EDIT_DISTANCE)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexBoost = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.BOOST)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexEOS = function (lexer) {\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n}\n\n// This matches the separator used when tokenising fields\n// within a document. These should match otherwise it is\n// not possible to search for some tokens within a document.\n//\n// It is possible for the user to change the separator on the\n// tokenizer so it _might_ clash with any other of the special\n// characters already used within the search string, e.g. :.\n//\n// This means that it is possible to change the separator in\n// such a way that makes some words unsearchable using a search\n// string.\nlunr.QueryLexer.termSeparator = lunr.tokenizer.separator\n\nlunr.QueryLexer.lexText = function (lexer) {\n while (true) {\n var char = lexer.next()\n\n if (char == lunr.QueryLexer.EOS) {\n return lunr.QueryLexer.lexEOS\n }\n\n // Escape character is '\\'\n if (char.charCodeAt(0) == 92) {\n lexer.escapeCharacter()\n continue\n }\n\n if (char == \":\") {\n return lunr.QueryLexer.lexField\n }\n\n if (char == \"~\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexEditDistance\n }\n\n if (char == \"^\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexBoost\n }\n\n // \"+\" indicates term presence is required\n // checking for length to ensure that only\n // leading \"+\" are considered\n if (char == \"+\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n // \"-\" indicates term presence is prohibited\n // checking for length to ensure that only\n // leading \"-\" are considered\n if (char == \"-\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n if (char.match(lunr.QueryLexer.termSeparator)) {\n return lunr.QueryLexer.lexTerm\n }\n }\n}\n\nlunr.QueryParser = function (str, query) {\n this.lexer = new lunr.QueryLexer (str)\n this.query = query\n this.currentClause = {}\n this.lexemeIdx = 0\n}\n\nlunr.QueryParser.prototype.parse = function () {\n this.lexer.run()\n this.lexemes = this.lexer.lexemes\n\n var state = lunr.QueryParser.parseClause\n\n while (state) {\n state = state(this)\n }\n\n return this.query\n}\n\nlunr.QueryParser.prototype.peekLexeme = function () {\n return this.lexemes[this.lexemeIdx]\n}\n\nlunr.QueryParser.prototype.consumeLexeme = function () {\n var lexeme = this.peekLexeme()\n this.lexemeIdx += 1\n return lexeme\n}\n\nlunr.QueryParser.prototype.nextClause = function () {\n var completedClause = this.currentClause\n this.query.clause(completedClause)\n this.currentClause = {}\n}\n\nlunr.QueryParser.parseClause = function (parser) {\n var lexeme = parser.peekLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.type) {\n case lunr.QueryLexer.PRESENCE:\n return lunr.QueryParser.parsePresence\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expected either a field or a term, found \" + lexeme.type\n\n if (lexeme.str.length >= 1) {\n errorMessage += \" with value '\" + lexeme.str + \"'\"\n }\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n}\n\nlunr.QueryParser.parsePresence = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.str) {\n case \"-\":\n parser.currentClause.presence = lunr.Query.presence.PROHIBITED\n break\n case \"+\":\n parser.currentClause.presence = lunr.Query.presence.REQUIRED\n break\n default:\n var errorMessage = \"unrecognised presence operator'\" + lexeme.str + \"'\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term or field, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term or field, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseField = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n if (parser.query.allFields.indexOf(lexeme.str) == -1) {\n var possibleFields = parser.query.allFields.map(function (f) { return \"'\" + f + \"'\" }).join(', '),\n errorMessage = \"unrecognised field '\" + lexeme.str + \"', possible fields: \" + possibleFields\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.fields = [lexeme.str]\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseTerm = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n parser.currentClause.term = lexeme.str.toLowerCase()\n\n if (lexeme.str.indexOf(\"*\") != -1) {\n parser.currentClause.usePipeline = false\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseEditDistance = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var editDistance = parseInt(lexeme.str, 10)\n\n if (isNaN(editDistance)) {\n var errorMessage = \"edit distance must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.editDistance = editDistance\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseBoost = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var boost = parseInt(lexeme.str, 10)\n\n if (isNaN(boost)) {\n var errorMessage = \"boost must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.boost = boost\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (true) {\n // AMD. Register as an anonymous module.\n !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\n\t\t\t\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\n\t\t\t\t__WEBPACK_AMD_DEFINE_FACTORY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__))\n } else {}\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n//# sourceURL=webpack:///./node_modules/lunr/lunr.js?"); + +/***/ }), + +/***/ "./node_modules/reveal.js/dist/reveal.esm.js": +/*!***************************************************!*\ + !*** ./node_modules/reveal.js/dist/reveal.esm.js ***! + \***************************************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\n/*!\n* reveal.js 4.4.0\n* https://revealjs.com\n* MIT licensed\n*\n* Copyright (C) 2011-2022 Hakim El Hattab, https://hakim.se\n*/\nconst e=(e,t)=>{for(let i in t)e[i]=t[i];return e},t=(e,t)=>Array.from(e.querySelectorAll(t)),i=(e,t,i)=>{i?e.classList.add(t):e.classList.remove(t)},a=e=>{if(\"string\"==typeof e){if(\"null\"===e)return null;if(\"true\"===e)return!0;if(\"false\"===e)return!1;if(e.match(/^-?[\\d\\.]+$/))return parseFloat(e)}return e},s=(e,t)=>{e.style.transform=t},n=(e,t)=>{let i=e.matches||e.matchesSelector||e.msMatchesSelector;return!(!i||!i.call(e,t))},r=(e,t)=>{if(\"function\"==typeof e.closest)return e.closest(t);for(;e;){if(n(e,t))return e;e=e.parentNode}return null},o=(e,t,i,a=\"\")=>{let s=e.querySelectorAll(\".\"+i);for(let t=0;t{let t=document.createElement(\"style\");return t.type=\"text/css\",e&&e.length>0&&(t.styleSheet?t.styleSheet.cssText=e:t.appendChild(document.createTextNode(e))),document.head.appendChild(t),t},d=()=>{let e={};location.search.replace(/[A-Z0-9]+?=([\\w\\.%-]*)/gi,(t=>{e[t.split(\"=\").shift()]=t.split(\"=\").pop()}));for(let t in e){let i=e[t];e[t]=a(unescape(i))}return void 0!==e.dependencies&&delete e.dependencies,e},c=(e,t=0)=>{if(e){let i,a=e.style.height;return e.style.height=\"0px\",e.parentNode.style.height=\"auto\",i=t-e.parentNode.offsetHeight,e.style.height=a+\"px\",e.parentNode.style.removeProperty(\"height\"),i}return t},h={mp4:\"video/mp4\",m4a:\"video/mp4\",ogv:\"video/ogg\",mpeg:\"video/mpeg\",webm:\"video/webm\"},u=navigator.userAgent,g=/(iphone|ipod|ipad|android)/gi.test(u)||\"MacIntel\"===navigator.platform&&navigator.maxTouchPoints>1;/chrome/i.test(u)&&/edge/i.test(u);const v=/android/gi.test(u);var p={};Object.defineProperty(p,\"__esModule\",{value:!0});var m=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};return\"string\"==typeof e?x(t(document.querySelectorAll(e)),i):x([e],i)[0]}}(\"undefined\"==typeof window?null:window);class b{constructor(e){this.Reveal=e,this.startEmbeddedIframe=this.startEmbeddedIframe.bind(this)}shouldPreload(e){let t=this.Reveal.getConfig().preloadIframes;return\"boolean\"!=typeof t&&(t=e.hasAttribute(\"data-preload\")),t}load(e,i={}){e.style.display=this.Reveal.getConfig().display,t(e,\"img[data-src], video[data-src], audio[data-src], iframe[data-src]\").forEach((e=>{(\"IFRAME\"!==e.tagName||this.shouldPreload(e))&&(e.setAttribute(\"src\",e.getAttribute(\"data-src\")),e.setAttribute(\"data-lazy-loaded\",\"\"),e.removeAttribute(\"data-src\"))})),t(e,\"video, audio\").forEach((e=>{let i=0;t(e,\"source[data-src]\").forEach((e=>{e.setAttribute(\"src\",e.getAttribute(\"data-src\")),e.removeAttribute(\"data-src\"),e.setAttribute(\"data-lazy-loaded\",\"\"),i+=1})),g&&\"VIDEO\"===e.tagName&&e.setAttribute(\"playsinline\",\"\"),i>0&&e.load()}));let a=e.slideBackgroundElement;if(a){a.style.display=\"block\";let t=e.slideBackgroundContentElement,s=e.getAttribute(\"data-background-iframe\");if(!1===a.hasAttribute(\"data-loaded\")){a.setAttribute(\"data-loaded\",\"true\");let n=e.getAttribute(\"data-background-image\"),r=e.getAttribute(\"data-background-video\"),o=e.hasAttribute(\"data-background-video-loop\"),l=e.hasAttribute(\"data-background-video-muted\");if(n)/^data:/.test(n.trim())?t.style.backgroundImage=`url(${n.trim()})`:t.style.backgroundImage=n.split(\",\").map((e=>`url(${encodeURI(e.trim())})`)).join(\",\");else if(r&&!this.Reveal.isSpeakerNotes()){let e=document.createElement(\"video\");o&&e.setAttribute(\"loop\",\"\"),l&&(e.muted=!0),g&&(e.muted=!0,e.setAttribute(\"playsinline\",\"\")),r.split(\",\").forEach((t=>{let i=((e=\"\")=>h[e.split(\".\").pop()])(t);e.innerHTML+=i?``:``})),t.appendChild(e)}else if(s&&!0!==i.excludeIframes){let e=document.createElement(\"iframe\");e.setAttribute(\"allowfullscreen\",\"\"),e.setAttribute(\"mozallowfullscreen\",\"\"),e.setAttribute(\"webkitallowfullscreen\",\"\"),e.setAttribute(\"allow\",\"autoplay\"),e.setAttribute(\"data-src\",s),e.style.width=\"100%\",e.style.height=\"100%\",e.style.maxHeight=\"100%\",e.style.maxWidth=\"100%\",t.appendChild(e)}}let n=t.querySelector(\"iframe[data-src]\");n&&this.shouldPreload(a)&&!/autoplay=(1|true|yes)/gi.test(s)&&n.getAttribute(\"src\")!==s&&n.setAttribute(\"src\",s)}this.layout(e)}layout(e){Array.from(e.querySelectorAll(\".r-fit-text\")).forEach((e=>{f(e,{minSize:24,maxSize:.8*this.Reveal.getConfig().height,observeMutations:!1,observeWindow:!1})}))}unload(e){e.style.display=\"none\";let i=this.Reveal.getSlideBackground(e);i&&(i.style.display=\"none\",t(i,\"iframe[src]\").forEach((e=>{e.removeAttribute(\"src\")}))),t(e,\"video[data-lazy-loaded][src], audio[data-lazy-loaded][src], iframe[data-lazy-loaded][src]\").forEach((e=>{e.setAttribute(\"data-src\",e.getAttribute(\"src\")),e.removeAttribute(\"src\")})),t(e,\"video[data-lazy-loaded] source[src], audio source[src]\").forEach((e=>{e.setAttribute(\"data-src\",e.getAttribute(\"src\")),e.removeAttribute(\"src\")}))}formatEmbeddedContent(){let e=(e,i,a)=>{t(this.Reveal.getSlidesElement(),\"iframe[\"+e+'*=\"'+i+'\"]').forEach((t=>{let i=t.getAttribute(e);i&&-1===i.indexOf(a)&&t.setAttribute(e,i+(/\\?/.test(i)?\"&\":\"?\")+a)}))};e(\"src\",\"youtube.com/embed/\",\"enablejsapi=1\"),e(\"data-src\",\"youtube.com/embed/\",\"enablejsapi=1\"),e(\"src\",\"player.vimeo.com/\",\"api=1\"),e(\"data-src\",\"player.vimeo.com/\",\"api=1\")}startEmbeddedContent(e){e&&!this.Reveal.isSpeakerNotes()&&(t(e,'img[src$=\".gif\"]').forEach((e=>{e.setAttribute(\"src\",e.getAttribute(\"src\"))})),t(e,\"video, audio\").forEach((e=>{if(r(e,\".fragment\")&&!r(e,\".fragment.visible\"))return;let t=this.Reveal.getConfig().autoPlayMedia;if(\"boolean\"!=typeof t&&(t=e.hasAttribute(\"data-autoplay\")||!!r(e,\".slide-background\")),t&&\"function\"==typeof e.play)if(e.readyState>1)this.startEmbeddedMedia({target:e});else if(g){let t=e.play();t&&\"function\"==typeof t.catch&&!1===e.controls&&t.catch((()=>{e.controls=!0,e.addEventListener(\"play\",(()=>{e.controls=!1}))}))}else e.removeEventListener(\"loadeddata\",this.startEmbeddedMedia),e.addEventListener(\"loadeddata\",this.startEmbeddedMedia)})),t(e,\"iframe[src]\").forEach((e=>{r(e,\".fragment\")&&!r(e,\".fragment.visible\")||this.startEmbeddedIframe({target:e})})),t(e,\"iframe[data-src]\").forEach((e=>{r(e,\".fragment\")&&!r(e,\".fragment.visible\")||e.getAttribute(\"src\")!==e.getAttribute(\"data-src\")&&(e.removeEventListener(\"load\",this.startEmbeddedIframe),e.addEventListener(\"load\",this.startEmbeddedIframe),e.setAttribute(\"src\",e.getAttribute(\"data-src\")))})))}startEmbeddedMedia(e){let t=!!r(e.target,\"html\"),i=!!r(e.target,\".present\");t&&i&&(e.target.currentTime=0,e.target.play()),e.target.removeEventListener(\"loadeddata\",this.startEmbeddedMedia)}startEmbeddedIframe(e){let t=e.target;if(t&&t.contentWindow){let i=!!r(e.target,\"html\"),a=!!r(e.target,\".present\");if(i&&a){let e=this.Reveal.getConfig().autoPlayMedia;\"boolean\"!=typeof e&&(e=t.hasAttribute(\"data-autoplay\")||!!r(t,\".slide-background\")),/youtube\\.com\\/embed\\//.test(t.getAttribute(\"src\"))&&e?t.contentWindow.postMessage('{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}',\"*\"):/player\\.vimeo\\.com\\//.test(t.getAttribute(\"src\"))&&e?t.contentWindow.postMessage('{\"method\":\"play\"}',\"*\"):t.contentWindow.postMessage(\"slide:start\",\"*\")}}}stopEmbeddedContent(i,a={}){a=e({unloadIframes:!0},a),i&&i.parentNode&&(t(i,\"video, audio\").forEach((e=>{e.hasAttribute(\"data-ignore\")||\"function\"!=typeof e.pause||(e.setAttribute(\"data-paused-by-reveal\",\"\"),e.pause())})),t(i,\"iframe\").forEach((e=>{e.contentWindow&&e.contentWindow.postMessage(\"slide:stop\",\"*\"),e.removeEventListener(\"load\",this.startEmbeddedIframe)})),t(i,'iframe[src*=\"youtube.com/embed/\"]').forEach((e=>{!e.hasAttribute(\"data-ignore\")&&e.contentWindow&&\"function\"==typeof e.contentWindow.postMessage&&e.contentWindow.postMessage('{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}',\"*\")})),t(i,'iframe[src*=\"player.vimeo.com/\"]').forEach((e=>{!e.hasAttribute(\"data-ignore\")&&e.contentWindow&&\"function\"==typeof e.contentWindow.postMessage&&e.contentWindow.postMessage('{\"method\":\"pause\"}',\"*\")})),!0===a.unloadIframes&&t(i,\"iframe[data-src]\").forEach((e=>{e.setAttribute(\"src\",\"about:blank\"),e.removeAttribute(\"src\")})))}}class y{constructor(e){this.Reveal=e}render(){this.element=document.createElement(\"div\"),this.element.className=\"slide-number\",this.Reveal.getRevealElement().appendChild(this.element)}configure(e,t){let i=\"none\";e.slideNumber&&!this.Reveal.isPrintingPDF()&&(\"all\"===e.showSlideNumber||\"speaker\"===e.showSlideNumber&&this.Reveal.isSpeakerNotes())&&(i=\"block\"),this.element.style.display=i}update(){this.Reveal.getConfig().slideNumber&&this.element&&(this.element.innerHTML=this.getSlideNumber())}getSlideNumber(e=this.Reveal.getCurrentSlide()){let t,i=this.Reveal.getConfig(),a=\"h.v\";if(\"function\"==typeof i.slideNumber)t=i.slideNumber(e);else{\"string\"==typeof i.slideNumber&&(a=i.slideNumber),/c/.test(a)||1!==this.Reveal.getHorizontalSlides().length||(a=\"c\");let s=e&&\"uncounted\"===e.dataset.visibility?0:1;switch(t=[],a){case\"c\":t.push(this.Reveal.getSlidePastCount(e)+s);break;case\"c/t\":t.push(this.Reveal.getSlidePastCount(e)+s,\"/\",this.Reveal.getTotalSlides());break;default:let i=this.Reveal.getIndices(e);t.push(i.h+s);let n=\"h/v\"===a?\"/\":\".\";this.Reveal.isVerticalSlide(e)&&t.push(n,i.v+1)}}let s=\"#\"+this.Reveal.location.getHash(e);return this.formatNumber(t[0],t[1],t[2],s)}formatNumber(e,t,i,a=\"#\"+this.Reveal.location.getHash()){return\"number\"!=typeof i||isNaN(i)?`\\n\\t\\t\\t\\t\\t${e}\\n\\t\\t\\t\\t\\t`:`\\n\\t\\t\\t\\t\\t${e}\\n\\t\\t\\t\\t\\t${t}\\n\\t\\t\\t\\t\\t${i}\\n\\t\\t\\t\\t\\t`}destroy(){this.element.remove()}}const w=e=>{let t=e.match(/^#([0-9a-f]{3})$/i);if(t&&t[1])return t=t[1],{r:17*parseInt(t.charAt(0),16),g:17*parseInt(t.charAt(1),16),b:17*parseInt(t.charAt(2),16)};let i=e.match(/^#([0-9a-f]{6})$/i);if(i&&i[1])return i=i[1],{r:parseInt(i.slice(0,2),16),g:parseInt(i.slice(2,4),16),b:parseInt(i.slice(4,6),16)};let a=e.match(/^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i);if(a)return{r:parseInt(a[1],10),g:parseInt(a[2],10),b:parseInt(a[3],10)};let s=e.match(/^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i);return s?{r:parseInt(s[1],10),g:parseInt(s[2],10),b:parseInt(s[3],10),a:parseFloat(s[4])}:null};class E{constructor(e){this.Reveal=e}render(){this.element=document.createElement(\"div\"),this.element.className=\"backgrounds\",this.Reveal.getRevealElement().appendChild(this.element)}create(){this.element.innerHTML=\"\",this.element.classList.add(\"no-transition\"),this.Reveal.getHorizontalSlides().forEach((e=>{let i=this.createBackground(e,this.element);t(e,\"section\").forEach((e=>{this.createBackground(e,i),i.classList.add(\"stack\")}))})),this.Reveal.getConfig().parallaxBackgroundImage?(this.element.style.backgroundImage='url(\"'+this.Reveal.getConfig().parallaxBackgroundImage+'\")',this.element.style.backgroundSize=this.Reveal.getConfig().parallaxBackgroundSize,this.element.style.backgroundRepeat=this.Reveal.getConfig().parallaxBackgroundRepeat,this.element.style.backgroundPosition=this.Reveal.getConfig().parallaxBackgroundPosition,setTimeout((()=>{this.Reveal.getRevealElement().classList.add(\"has-parallax-background\")}),1)):(this.element.style.backgroundImage=\"\",this.Reveal.getRevealElement().classList.remove(\"has-parallax-background\"))}createBackground(e,t){let i=document.createElement(\"div\");i.className=\"slide-background \"+e.className.replace(/present|past|future/,\"\");let a=document.createElement(\"div\");return a.className=\"slide-background-content\",i.appendChild(a),t.appendChild(i),e.slideBackgroundElement=i,e.slideBackgroundContentElement=a,this.sync(e),i}sync(e){const t=e.slideBackgroundElement,i=e.slideBackgroundContentElement,a={background:e.getAttribute(\"data-background\"),backgroundSize:e.getAttribute(\"data-background-size\"),backgroundImage:e.getAttribute(\"data-background-image\"),backgroundVideo:e.getAttribute(\"data-background-video\"),backgroundIframe:e.getAttribute(\"data-background-iframe\"),backgroundColor:e.getAttribute(\"data-background-color\"),backgroundGradient:e.getAttribute(\"data-background-gradient\"),backgroundRepeat:e.getAttribute(\"data-background-repeat\"),backgroundPosition:e.getAttribute(\"data-background-position\"),backgroundTransition:e.getAttribute(\"data-background-transition\"),backgroundOpacity:e.getAttribute(\"data-background-opacity\")},s=e.hasAttribute(\"data-preload\");e.classList.remove(\"has-dark-background\"),e.classList.remove(\"has-light-background\"),t.removeAttribute(\"data-loaded\"),t.removeAttribute(\"data-background-hash\"),t.removeAttribute(\"data-background-size\"),t.removeAttribute(\"data-background-transition\"),t.style.backgroundColor=\"\",i.style.backgroundSize=\"\",i.style.backgroundRepeat=\"\",i.style.backgroundPosition=\"\",i.style.backgroundImage=\"\",i.style.opacity=\"\",i.innerHTML=\"\",a.background&&(/^(http|file|\\/\\/)/gi.test(a.background)||/\\.(svg|png|jpg|jpeg|gif|bmp|webp)([?#\\s]|$)/gi.test(a.background)?e.setAttribute(\"data-background-image\",a.background):t.style.background=a.background),(a.background||a.backgroundColor||a.backgroundGradient||a.backgroundImage||a.backgroundVideo||a.backgroundIframe)&&t.setAttribute(\"data-background-hash\",a.background+a.backgroundSize+a.backgroundImage+a.backgroundVideo+a.backgroundIframe+a.backgroundColor+a.backgroundGradient+a.backgroundRepeat+a.backgroundPosition+a.backgroundTransition+a.backgroundOpacity),a.backgroundSize&&t.setAttribute(\"data-background-size\",a.backgroundSize),a.backgroundColor&&(t.style.backgroundColor=a.backgroundColor),a.backgroundGradient&&(t.style.backgroundImage=a.backgroundGradient),a.backgroundTransition&&t.setAttribute(\"data-background-transition\",a.backgroundTransition),s&&t.setAttribute(\"data-preload\",\"\"),a.backgroundSize&&(i.style.backgroundSize=a.backgroundSize),a.backgroundRepeat&&(i.style.backgroundRepeat=a.backgroundRepeat),a.backgroundPosition&&(i.style.backgroundPosition=a.backgroundPosition),a.backgroundOpacity&&(i.style.opacity=a.backgroundOpacity);let n=a.backgroundColor;if(!n||!w(n)){let e=window.getComputedStyle(t);e&&e.backgroundColor&&(n=e.backgroundColor)}if(n){const t=w(n);t&&0!==t.a&&(\"string\"==typeof(r=n)&&(r=w(r)),(r?(299*r.r+587*r.g+114*r.b)/1e3:null)<128?e.classList.add(\"has-dark-background\"):e.classList.add(\"has-light-background\"))}var r}update(e=!1){let i=this.Reveal.getCurrentSlide(),a=this.Reveal.getIndices(),s=null,n=this.Reveal.getConfig().rtl?\"future\":\"past\",r=this.Reveal.getConfig().rtl?\"past\":\"future\";if(Array.from(this.element.childNodes).forEach(((i,o)=>{i.classList.remove(\"past\",\"present\",\"future\"),oa.h?i.classList.add(r):(i.classList.add(\"present\"),s=i),(e||o===a.h)&&t(i,\".slide-background\").forEach(((e,t)=>{e.classList.remove(\"past\",\"present\",\"future\"),ta.v?e.classList.add(\"future\"):(e.classList.add(\"present\"),o===a.h&&(s=e))}))})),this.previousBackground&&this.Reveal.slideContent.stopEmbeddedContent(this.previousBackground,{unloadIframes:!this.Reveal.slideContent.shouldPreload(this.previousBackground)}),s){this.Reveal.slideContent.startEmbeddedContent(s);let e=s.querySelector(\".slide-background-content\");if(e){let t=e.style.backgroundImage||\"\";/\\.gif/i.test(t)&&(e.style.backgroundImage=\"\",window.getComputedStyle(e).opacity,e.style.backgroundImage=t)}let t=this.previousBackground?this.previousBackground.getAttribute(\"data-background-hash\"):null,i=s.getAttribute(\"data-background-hash\");i&&i===t&&s!==this.previousBackground&&this.element.classList.add(\"no-transition\"),this.previousBackground=s}i&&[\"has-light-background\",\"has-dark-background\"].forEach((e=>{i.classList.contains(e)?this.Reveal.getRevealElement().classList.add(e):this.Reveal.getRevealElement().classList.remove(e)}),this),setTimeout((()=>{this.element.classList.remove(\"no-transition\")}),1)}updateParallax(){let e=this.Reveal.getIndices();if(this.Reveal.getConfig().parallaxBackgroundImage){let t,i,a=this.Reveal.getHorizontalSlides(),s=this.Reveal.getVerticalSlides(),n=this.element.style.backgroundSize.split(\" \");1===n.length?t=i=parseInt(n[0],10):(t=parseInt(n[0],10),i=parseInt(n[1],10));let r,o,l=this.element.offsetWidth,d=a.length;r=\"number\"==typeof this.Reveal.getConfig().parallaxBackgroundHorizontal?this.Reveal.getConfig().parallaxBackgroundHorizontal:d>1?(t-l)/(d-1):0,o=r*e.h*-1;let c,h,u=this.element.offsetHeight,g=s.length;c=\"number\"==typeof this.Reveal.getConfig().parallaxBackgroundVertical?this.Reveal.getConfig().parallaxBackgroundVertical:(i-u)/(g-1),h=g>0?c*e.v:0,this.element.style.backgroundPosition=o+\"px \"+-h+\"px\"}}destroy(){this.element.remove()}}const R=/registerPlugin|registerKeyboardShortcut|addKeyBinding|addEventListener|showPreview/,S=/fade-(down|up|right|left|out|in-then-out|in-then-semi-out)|semi-fade-out|current-visible|shrink|grow/;let A=0;class k{constructor(e){this.Reveal=e}run(e,t){this.reset();let i=this.Reveal.getSlides(),a=i.indexOf(t),s=i.indexOf(e);if(e.hasAttribute(\"data-auto-animate\")&&t.hasAttribute(\"data-auto-animate\")&&e.getAttribute(\"data-auto-animate-id\")===t.getAttribute(\"data-auto-animate-id\")&&!(a>s?t:e).hasAttribute(\"data-auto-animate-restart\")){this.autoAnimateStyleSheet=this.autoAnimateStyleSheet||l();let i=this.getAutoAnimateOptions(t);e.dataset.autoAnimate=\"pending\",t.dataset.autoAnimate=\"pending\",i.slideDirection=a>s?\"forward\":\"backward\";let n=\"none\"===e.style.display;n&&(e.style.display=this.Reveal.getConfig().display);let r=this.getAutoAnimatableElements(e,t).map((e=>this.autoAnimateElements(e.from,e.to,e.options||{},i,A++)));if(n&&(e.style.display=\"none\"),\"false\"!==t.dataset.autoAnimateUnmatched&&!0===this.Reveal.getConfig().autoAnimateUnmatched){let e=.8*i.duration,a=.2*i.duration;this.getUnmatchedAutoAnimateElements(t).forEach((e=>{let t=this.getAutoAnimateOptions(e,i),a=\"unmatched\";t.duration===i.duration&&t.delay===i.delay||(a=\"unmatched-\"+A++,r.push(`[data-auto-animate=\"running\"] [data-auto-animate-target=\"${a}\"] { transition: opacity ${t.duration}s ease ${t.delay}s; }`)),e.dataset.autoAnimateTarget=a}),this),r.push(`[data-auto-animate=\"running\"] [data-auto-animate-target=\"unmatched\"] { transition: opacity ${e}s ease ${a}s; }`)}this.autoAnimateStyleSheet.innerHTML=r.join(\"\"),requestAnimationFrame((()=>{this.autoAnimateStyleSheet&&(getComputedStyle(this.autoAnimateStyleSheet).fontWeight,t.dataset.autoAnimate=\"running\")})),this.Reveal.dispatchEvent({type:\"autoanimate\",data:{fromSlide:e,toSlide:t,sheet:this.autoAnimateStyleSheet}})}}reset(){t(this.Reveal.getRevealElement(),'[data-auto-animate]:not([data-auto-animate=\"\"])').forEach((e=>{e.dataset.autoAnimate=\"\"})),t(this.Reveal.getRevealElement(),\"[data-auto-animate-target]\").forEach((e=>{delete e.dataset.autoAnimateTarget})),this.autoAnimateStyleSheet&&this.autoAnimateStyleSheet.parentNode&&(this.autoAnimateStyleSheet.parentNode.removeChild(this.autoAnimateStyleSheet),this.autoAnimateStyleSheet=null)}autoAnimateElements(e,t,i,a,s){e.dataset.autoAnimateTarget=\"\",t.dataset.autoAnimateTarget=s;let n=this.getAutoAnimateOptions(t,a);void 0!==i.delay&&(n.delay=i.delay),void 0!==i.duration&&(n.duration=i.duration),void 0!==i.easing&&(n.easing=i.easing);let r=this.getAutoAnimatableProperties(\"from\",e,i),o=this.getAutoAnimatableProperties(\"to\",t,i);if(t.classList.contains(\"fragment\")&&(delete o.styles.opacity,e.classList.contains(\"fragment\"))){(e.className.match(S)||[\"\"])[0]===(t.className.match(S)||[\"\"])[0]&&\"forward\"===a.slideDirection&&t.classList.add(\"visible\",\"disabled\")}if(!1!==i.translate||!1!==i.scale){let e=this.Reveal.getScale(),t={x:(r.x-o.x)/e,y:(r.y-o.y)/e,scaleX:r.width/o.width,scaleY:r.height/o.height};t.x=Math.round(1e3*t.x)/1e3,t.y=Math.round(1e3*t.y)/1e3,t.scaleX=Math.round(1e3*t.scaleX)/1e3,t.scaleX=Math.round(1e3*t.scaleX)/1e3;let a=!1!==i.translate&&(0!==t.x||0!==t.y),s=!1!==i.scale&&(0!==t.scaleX||0!==t.scaleY);if(a||s){let e=[];a&&e.push(`translate(${t.x}px, ${t.y}px)`),s&&e.push(`scale(${t.scaleX}, ${t.scaleY})`),r.styles.transform=e.join(\" \"),r.styles[\"transform-origin\"]=\"top left\",o.styles.transform=\"none\"}}for(let e in o.styles){const t=o.styles[e],i=r.styles[e];t===i?delete o.styles[e]:(!0===t.explicitValue&&(o.styles[e]=t.value),!0===i.explicitValue&&(r.styles[e]=i.value))}let l=\"\",d=Object.keys(o.styles);if(d.length>0){r.styles.transition=\"none\",o.styles.transition=`all ${n.duration}s ${n.easing} ${n.delay}s`,o.styles[\"transition-property\"]=d.join(\", \"),o.styles[\"will-change\"]=d.join(\", \"),l='[data-auto-animate-target=\"'+s+'\"] {'+Object.keys(r.styles).map((e=>e+\": \"+r.styles[e]+\" !important;\")).join(\"\")+'}[data-auto-animate=\"running\"] [data-auto-animate-target=\"'+s+'\"] {'+Object.keys(o.styles).map((e=>e+\": \"+o.styles[e]+\" !important;\")).join(\"\")+\"}\"}return l}getAutoAnimateOptions(t,i){let a={easing:this.Reveal.getConfig().autoAnimateEasing,duration:this.Reveal.getConfig().autoAnimateDuration,delay:0};if(a=e(a,i),t.parentNode){let e=r(t.parentNode,\"[data-auto-animate-target]\");e&&(a=this.getAutoAnimateOptions(e,a))}return t.dataset.autoAnimateEasing&&(a.easing=t.dataset.autoAnimateEasing),t.dataset.autoAnimateDuration&&(a.duration=parseFloat(t.dataset.autoAnimateDuration)),t.dataset.autoAnimateDelay&&(a.delay=parseFloat(t.dataset.autoAnimateDelay)),a}getAutoAnimatableProperties(e,t,i){let a=this.Reveal.getConfig(),s={styles:[]};if(!1!==i.translate||!1!==i.scale){let e;if(\"function\"==typeof i.measure)e=i.measure(t);else if(a.center)e=t.getBoundingClientRect();else{let i=this.Reveal.getScale();e={x:t.offsetLeft*i,y:t.offsetTop*i,width:t.offsetWidth*i,height:t.offsetHeight*i}}s.x=e.x,s.y=e.y,s.width=e.width,s.height=e.height}const n=getComputedStyle(t);return(i.styles||a.autoAnimateStyles).forEach((t=>{let i;\"string\"==typeof t&&(t={property:t}),void 0!==t.from&&\"from\"===e?i={value:t.from,explicitValue:!0}:void 0!==t.to&&\"to\"===e?i={value:t.to,explicitValue:!0}:(\"line-height\"===t.property&&(i=parseFloat(n[\"line-height\"])/parseFloat(n[\"font-size\"])),isNaN(i)&&(i=n[t.property])),\"\"!==i&&(s.styles[t.property]=i)})),s}getAutoAnimatableElements(e,t){let i=(\"function\"==typeof this.Reveal.getConfig().autoAnimateMatcher?this.Reveal.getConfig().autoAnimateMatcher:this.getAutoAnimatePairs).call(this,e,t),a=[];return i.filter(((e,t)=>{if(-1===a.indexOf(e.to))return a.push(e.to),!0}))}getAutoAnimatePairs(e,t){let i=[];const a=\"h1, h2, h3, h4, h5, h6, p, li\";return this.findAutoAnimateMatches(i,e,t,\"[data-id]\",(e=>e.nodeName+\":::\"+e.getAttribute(\"data-id\"))),this.findAutoAnimateMatches(i,e,t,a,(e=>e.nodeName+\":::\"+e.innerText)),this.findAutoAnimateMatches(i,e,t,\"img, video, iframe\",(e=>e.nodeName+\":::\"+(e.getAttribute(\"src\")||e.getAttribute(\"data-src\")))),this.findAutoAnimateMatches(i,e,t,\"pre\",(e=>e.nodeName+\":::\"+e.innerText)),i.forEach((e=>{n(e.from,a)?e.options={scale:!1}:n(e.from,\"pre\")&&(e.options={scale:!1,styles:[\"width\",\"height\"]},this.findAutoAnimateMatches(i,e.from,e.to,\".hljs .hljs-ln-code\",(e=>e.textContent),{scale:!1,styles:[],measure:this.getLocalBoundingBox.bind(this)}),this.findAutoAnimateMatches(i,e.from,e.to,\".hljs .hljs-ln-line[data-line-number]\",(e=>e.getAttribute(\"data-line-number\")),{scale:!1,styles:[\"width\"],measure:this.getLocalBoundingBox.bind(this)}))}),this),i}getLocalBoundingBox(e){const t=this.Reveal.getScale();return{x:Math.round(e.offsetLeft*t*100)/100,y:Math.round(e.offsetTop*t*100)/100,width:Math.round(e.offsetWidth*t*100)/100,height:Math.round(e.offsetHeight*t*100)/100}}findAutoAnimateMatches(e,t,i,a,s,n){let r={},o={};[].slice.call(t.querySelectorAll(a)).forEach(((e,t)=>{const i=s(e);\"string\"==typeof i&&i.length&&(r[i]=r[i]||[],r[i].push(e))})),[].slice.call(i.querySelectorAll(a)).forEach(((t,i)=>{const a=s(t);let l;if(o[a]=o[a]||[],o[a].push(t),r[a]){const e=o[a].length-1,t=r[a].length-1;r[a][e]?(l=r[a][e],r[a][e]=null):r[a][t]&&(l=r[a][t],r[a][t]=null)}l&&e.push({from:l,to:t,options:n})}))}getUnmatchedAutoAnimateElements(e){return[].slice.call(e.children).reduce(((e,t)=>{const i=t.querySelector(\"[data-auto-animate-target]\");return t.hasAttribute(\"data-auto-animate-target\")||i||e.push(t),t.querySelector(\"[data-auto-animate-target]\")&&(e=e.concat(this.getUnmatchedAutoAnimateElements(t))),e}),[])}}class L{constructor(e){this.Reveal=e}configure(e,t){!1===e.fragments?this.disable():!1===t.fragments&&this.enable()}disable(){t(this.Reveal.getSlidesElement(),\".fragment\").forEach((e=>{e.classList.add(\"visible\"),e.classList.remove(\"current-fragment\")}))}enable(){t(this.Reveal.getSlidesElement(),\".fragment\").forEach((e=>{e.classList.remove(\"visible\"),e.classList.remove(\"current-fragment\")}))}availableRoutes(){let e=this.Reveal.getCurrentSlide();if(e&&this.Reveal.getConfig().fragments){let t=e.querySelectorAll(\".fragment:not(.disabled)\"),i=e.querySelectorAll(\".fragment:not(.disabled):not(.visible)\");return{prev:t.length-i.length>0,next:!!i.length}}return{prev:!1,next:!1}}sort(e,t=!1){e=Array.from(e);let i=[],a=[],s=[];e.forEach((e=>{if(e.hasAttribute(\"data-fragment-index\")){let t=parseInt(e.getAttribute(\"data-fragment-index\"),10);i[t]||(i[t]=[]),i[t].push(e)}else a.push([e])})),i=i.concat(a);let n=0;return i.forEach((e=>{e.forEach((e=>{s.push(e),e.setAttribute(\"data-fragment-index\",n)})),n++})),!0===t?i:s}sortAll(){this.Reveal.getHorizontalSlides().forEach((e=>{let i=t(e,\"section\");i.forEach(((e,t)=>{this.sort(e.querySelectorAll(\".fragment\"))}),this),0===i.length&&this.sort(e.querySelectorAll(\".fragment\"))}))}update(e,t){let i={shown:[],hidden:[]},a=this.Reveal.getCurrentSlide();if(a&&this.Reveal.getConfig().fragments&&(t=t||this.sort(a.querySelectorAll(\".fragment\"))).length){let s=0;if(\"number\"!=typeof e){let t=this.sort(a.querySelectorAll(\".fragment.visible\")).pop();t&&(e=parseInt(t.getAttribute(\"data-fragment-index\")||0,10))}Array.from(t).forEach(((t,a)=>{if(t.hasAttribute(\"data-fragment-index\")&&(a=parseInt(t.getAttribute(\"data-fragment-index\"),10)),s=Math.max(s,a),a<=e){let s=t.classList.contains(\"visible\");t.classList.add(\"visible\"),t.classList.remove(\"current-fragment\"),a===e&&(this.Reveal.announceStatus(this.Reveal.getStatusText(t)),t.classList.add(\"current-fragment\"),this.Reveal.slideContent.startEmbeddedContent(t)),s||(i.shown.push(t),this.Reveal.dispatchEvent({target:t,type:\"visible\",bubbles:!1}))}else{let e=t.classList.contains(\"visible\");t.classList.remove(\"visible\"),t.classList.remove(\"current-fragment\"),e&&(this.Reveal.slideContent.stopEmbeddedContent(t),i.hidden.push(t),this.Reveal.dispatchEvent({target:t,type:\"hidden\",bubbles:!1}))}})),e=\"number\"==typeof e?e:-1,e=Math.max(Math.min(e,s),-1),a.setAttribute(\"data-fragment\",e)}return i}sync(e=this.Reveal.getCurrentSlide()){return this.sort(e.querySelectorAll(\".fragment\"))}goto(e,t=0){let i=this.Reveal.getCurrentSlide();if(i&&this.Reveal.getConfig().fragments){let a=this.sort(i.querySelectorAll(\".fragment:not(.disabled)\"));if(a.length){if(\"number\"!=typeof e){let t=this.sort(i.querySelectorAll(\".fragment:not(.disabled).visible\")).pop();e=t?parseInt(t.getAttribute(\"data-fragment-index\")||0,10):-1}e+=t;let s=this.update(e,a);return s.hidden.length&&this.Reveal.dispatchEvent({type:\"fragmenthidden\",data:{fragment:s.hidden[0],fragments:s.hidden}}),s.shown.length&&this.Reveal.dispatchEvent({type:\"fragmentshown\",data:{fragment:s.shown[0],fragments:s.shown}}),this.Reveal.controls.update(),this.Reveal.progress.update(),this.Reveal.getConfig().fragmentInURL&&this.Reveal.location.writeURL(),!(!s.shown.length&&!s.hidden.length)}}return!1}next(){return this.goto(null,1)}prev(){return this.goto(null,-1)}}class C{constructor(e){this.Reveal=e,this.active=!1,this.onSlideClicked=this.onSlideClicked.bind(this)}activate(){if(this.Reveal.getConfig().overview&&!this.isActive()){this.active=!0,this.Reveal.getRevealElement().classList.add(\"overview\"),this.Reveal.cancelAutoSlide(),this.Reveal.getSlidesElement().appendChild(this.Reveal.getBackgroundsElement()),t(this.Reveal.getRevealElement(),\".slides section\").forEach((e=>{e.classList.contains(\"stack\")||e.addEventListener(\"click\",this.onSlideClicked,!0)}));const e=70,i=this.Reveal.getComputedSlideSize();this.overviewSlideWidth=i.width+e,this.overviewSlideHeight=i.height+e,this.Reveal.getConfig().rtl&&(this.overviewSlideWidth=-this.overviewSlideWidth),this.Reveal.updateSlidesVisibility(),this.layout(),this.update(),this.Reveal.layout();const a=this.Reveal.getIndices();this.Reveal.dispatchEvent({type:\"overviewshown\",data:{indexh:a.h,indexv:a.v,currentSlide:this.Reveal.getCurrentSlide()}})}}layout(){this.Reveal.getHorizontalSlides().forEach(((e,i)=>{e.setAttribute(\"data-index-h\",i),s(e,\"translate3d(\"+i*this.overviewSlideWidth+\"px, 0, 0)\"),e.classList.contains(\"stack\")&&t(e,\"section\").forEach(((e,t)=>{e.setAttribute(\"data-index-h\",i),e.setAttribute(\"data-index-v\",t),s(e,\"translate3d(0, \"+t*this.overviewSlideHeight+\"px, 0)\")}))})),Array.from(this.Reveal.getBackgroundsElement().childNodes).forEach(((e,i)=>{s(e,\"translate3d(\"+i*this.overviewSlideWidth+\"px, 0, 0)\"),t(e,\".slide-background\").forEach(((e,t)=>{s(e,\"translate3d(0, \"+t*this.overviewSlideHeight+\"px, 0)\")}))}))}update(){const e=Math.min(window.innerWidth,window.innerHeight),t=Math.max(e/5,150)/e,i=this.Reveal.getIndices();this.Reveal.transformSlides({overview:[\"scale(\"+t+\")\",\"translateX(\"+-i.h*this.overviewSlideWidth+\"px)\",\"translateY(\"+-i.v*this.overviewSlideHeight+\"px)\"].join(\" \")})}deactivate(){if(this.Reveal.getConfig().overview){this.active=!1,this.Reveal.getRevealElement().classList.remove(\"overview\"),this.Reveal.getRevealElement().classList.add(\"overview-deactivating\"),setTimeout((()=>{this.Reveal.getRevealElement().classList.remove(\"overview-deactivating\")}),1),this.Reveal.getRevealElement().appendChild(this.Reveal.getBackgroundsElement()),t(this.Reveal.getRevealElement(),\".slides section\").forEach((e=>{s(e,\"\"),e.removeEventListener(\"click\",this.onSlideClicked,!0)})),t(this.Reveal.getBackgroundsElement(),\".slide-background\").forEach((e=>{s(e,\"\")})),this.Reveal.transformSlides({overview:\"\"});const e=this.Reveal.getIndices();this.Reveal.slide(e.h,e.v),this.Reveal.layout(),this.Reveal.cueAutoSlide(),this.Reveal.dispatchEvent({type:\"overviewhidden\",data:{indexh:e.h,indexv:e.v,currentSlide:this.Reveal.getCurrentSlide()}})}}toggle(e){\"boolean\"==typeof e?e?this.activate():this.deactivate():this.isActive()?this.deactivate():this.activate()}isActive(){return this.active}onSlideClicked(e){if(this.isActive()){e.preventDefault();let t=e.target;for(;t&&!t.nodeName.match(/section/gi);)t=t.parentNode;if(t&&!t.classList.contains(\"disabled\")&&(this.deactivate(),t.nodeName.match(/section/gi))){let e=parseInt(t.getAttribute(\"data-index-h\"),10),i=parseInt(t.getAttribute(\"data-index-v\"),10);this.Reveal.slide(e,i)}}}}class x{constructor(e){this.Reveal=e,this.shortcuts={},this.bindings={},this.onDocumentKeyDown=this.onDocumentKeyDown.bind(this),this.onDocumentKeyPress=this.onDocumentKeyPress.bind(this)}configure(e,t){\"linear\"===e.navigationMode?(this.shortcuts[\"→ , ↓ , SPACE , N , L , J\"]=\"Next slide\",this.shortcuts[\"← , ↑ , P , H , K\"]=\"Previous slide\"):(this.shortcuts[\"N , SPACE\"]=\"Next slide\",this.shortcuts[\"P , Shift SPACE\"]=\"Previous slide\",this.shortcuts[\"← , H\"]=\"Navigate left\",this.shortcuts[\"→ , L\"]=\"Navigate right\",this.shortcuts[\"↑ , K\"]=\"Navigate up\",this.shortcuts[\"↓ , J\"]=\"Navigate down\"),this.shortcuts[\"Alt + ←/↑/→/↓\"]=\"Navigate without fragments\",this.shortcuts[\"Shift + ←/↑/→/↓\"]=\"Jump to first/last slide\",this.shortcuts[\"B , .\"]=\"Pause\",this.shortcuts.F=\"Fullscreen\",this.shortcuts[\"ESC, O\"]=\"Slide overview\"}bind(){document.addEventListener(\"keydown\",this.onDocumentKeyDown,!1),document.addEventListener(\"keypress\",this.onDocumentKeyPress,!1)}unbind(){document.removeEventListener(\"keydown\",this.onDocumentKeyDown,!1),document.removeEventListener(\"keypress\",this.onDocumentKeyPress,!1)}addKeyBinding(e,t){\"object\"==typeof e&&e.keyCode?this.bindings[e.keyCode]={callback:t,key:e.key,description:e.description}:this.bindings[e]={callback:t,key:null,description:null}}removeKeyBinding(e){delete this.bindings[e]}triggerKey(e){this.onDocumentKeyDown({keyCode:e})}registerKeyboardShortcut(e,t){this.shortcuts[e]=t}getShortcuts(){return this.shortcuts}getBindings(){return this.bindings}onDocumentKeyPress(e){e.shiftKey&&63===e.charCode&&this.Reveal.toggleHelp()}onDocumentKeyDown(e){let t=this.Reveal.getConfig();if(\"function\"==typeof t.keyboardCondition&&!1===t.keyboardCondition(e))return!0;if(\"focused\"===t.keyboardCondition&&!this.Reveal.isFocused())return!0;let i=e.keyCode,a=!this.Reveal.isAutoSliding();this.Reveal.onUserInput(e);let s=document.activeElement&&!0===document.activeElement.isContentEditable,n=document.activeElement&&document.activeElement.tagName&&/input|textarea/i.test(document.activeElement.tagName),r=document.activeElement&&document.activeElement.className&&/speaker-notes/i.test(document.activeElement.className),o=!(-1!==[32,37,38,39,40,78,80].indexOf(e.keyCode)&&e.shiftKey||e.altKey)&&(e.shiftKey||e.altKey||e.ctrlKey||e.metaKey);if(s||n||r||o)return;let l,d=[66,86,190,191];if(\"object\"==typeof t.keyboard)for(l in t.keyboard)\"togglePause\"===t.keyboard[l]&&d.push(parseInt(l,10));if(this.Reveal.isPaused()&&-1===d.indexOf(i))return!1;let c=\"linear\"===t.navigationMode||!this.Reveal.hasHorizontalSlides()||!this.Reveal.hasVerticalSlides(),h=!1;if(\"object\"==typeof t.keyboard)for(l in t.keyboard)if(parseInt(l,10)===i){let i=t.keyboard[l];\"function\"==typeof i?i.apply(null,[e]):\"string\"==typeof i&&\"function\"==typeof this.Reveal[i]&&this.Reveal[i].call(),h=!0}if(!1===h)for(l in this.bindings)if(parseInt(l,10)===i){let t=this.bindings[l].callback;\"function\"==typeof t?t.apply(null,[e]):\"string\"==typeof t&&\"function\"==typeof this.Reveal[t]&&this.Reveal[t].call(),h=!0}!1===h&&(h=!0,80===i||33===i?this.Reveal.prev({skipFragments:e.altKey}):78===i||34===i?this.Reveal.next({skipFragments:e.altKey}):72===i||37===i?e.shiftKey?this.Reveal.slide(0):!this.Reveal.overview.isActive()&&c?this.Reveal.prev({skipFragments:e.altKey}):this.Reveal.left({skipFragments:e.altKey}):76===i||39===i?e.shiftKey?this.Reveal.slide(this.Reveal.getHorizontalSlides().length-1):!this.Reveal.overview.isActive()&&c?this.Reveal.next({skipFragments:e.altKey}):this.Reveal.right({skipFragments:e.altKey}):75===i||38===i?e.shiftKey?this.Reveal.slide(void 0,0):!this.Reveal.overview.isActive()&&c?this.Reveal.prev({skipFragments:e.altKey}):this.Reveal.up({skipFragments:e.altKey}):74===i||40===i?e.shiftKey?this.Reveal.slide(void 0,Number.MAX_VALUE):!this.Reveal.overview.isActive()&&c?this.Reveal.next({skipFragments:e.altKey}):this.Reveal.down({skipFragments:e.altKey}):36===i?this.Reveal.slide(0):35===i?this.Reveal.slide(this.Reveal.getHorizontalSlides().length-1):32===i?(this.Reveal.overview.isActive()&&this.Reveal.overview.deactivate(),e.shiftKey?this.Reveal.prev({skipFragments:e.altKey}):this.Reveal.next({skipFragments:e.altKey})):58===i||59===i||66===i||86===i||190===i||191===i?this.Reveal.togglePause():70===i?(e=>{let t=(e=e||document.documentElement).requestFullscreen||e.webkitRequestFullscreen||e.webkitRequestFullScreen||e.mozRequestFullScreen||e.msRequestFullscreen;t&&t.apply(e)})(t.embedded?this.Reveal.getViewportElement():document.documentElement):65===i?t.autoSlideStoppable&&this.Reveal.toggleAutoSlide(a):h=!1),h?e.preventDefault&&e.preventDefault():27!==i&&79!==i||(!1===this.Reveal.closeOverlay()&&this.Reveal.overview.toggle(),e.preventDefault&&e.preventDefault()),this.Reveal.cueAutoSlide()}}class P{constructor(e){var t,i,a;a=1e3,(i=\"MAX_REPLACE_STATE_FREQUENCY\")in(t=this)?Object.defineProperty(t,i,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[i]=a,this.Reveal=e,this.writeURLTimeout=0,this.replaceStateTimestamp=0,this.onWindowHashChange=this.onWindowHashChange.bind(this)}bind(){window.addEventListener(\"hashchange\",this.onWindowHashChange,!1)}unbind(){window.removeEventListener(\"hashchange\",this.onWindowHashChange,!1)}getIndicesFromHash(e=window.location.hash){let t=e.replace(/^#\\/?/,\"\"),i=t.split(\"/\");if(/^[0-9]*$/.test(i[0])||!t.length){const e=this.Reveal.getConfig();let t,a=e.hashOneBasedIndex?1:0,s=parseInt(i[0],10)-a||0,n=parseInt(i[1],10)-a||0;return e.fragmentInURL&&(t=parseInt(i[2],10),isNaN(t)&&(t=void 0)),{h:s,v:n,f:t}}{let e,i;/\\/[-\\d]+$/g.test(t)&&(i=parseInt(t.split(\"/\").pop(),10),i=isNaN(i)?void 0:i,t=t.split(\"/\").shift());try{e=document.getElementById(decodeURIComponent(t))}catch(e){}if(e)return{...this.Reveal.getIndices(e),f:i}}return null}readURL(){const e=this.Reveal.getIndices(),t=this.getIndicesFromHash();t?t.h===e.h&&t.v===e.v&&void 0===t.f||this.Reveal.slide(t.h,t.v,t.f):this.Reveal.slide(e.h||0,e.v||0)}writeURL(e){let t=this.Reveal.getConfig(),i=this.Reveal.getCurrentSlide();if(clearTimeout(this.writeURLTimeout),\"number\"==typeof e)this.writeURLTimeout=setTimeout(this.writeURL,e);else if(i){let e=this.getHash();t.history?window.location.hash=e:t.hash&&(\"/\"===e?this.debouncedReplaceState(window.location.pathname+window.location.search):this.debouncedReplaceState(\"#\"+e))}}replaceState(e){window.history.replaceState(null,null,e),this.replaceStateTimestamp=Date.now()}debouncedReplaceState(e){clearTimeout(this.replaceStateTimeout),Date.now()-this.replaceStateTimestamp>this.MAX_REPLACE_STATE_FREQUENCY?this.replaceState(e):this.replaceStateTimeout=setTimeout((()=>this.replaceState(e)),this.MAX_REPLACE_STATE_FREQUENCY)}getHash(e){let t=\"/\",i=e||this.Reveal.getCurrentSlide(),a=i?i.getAttribute(\"id\"):null;a&&(a=encodeURIComponent(a));let s=this.Reveal.getIndices(e);if(this.Reveal.getConfig().fragmentInURL||(s.f=void 0),\"string\"==typeof a&&a.length)t=\"/\"+a,s.f>=0&&(t+=\"/\"+s.f);else{let e=this.Reveal.getConfig().hashOneBasedIndex?1:0;(s.h>0||s.v>0||s.f>=0)&&(t+=s.h+e),(s.v>0||s.f>=0)&&(t+=\"/\"+(s.v+e)),s.f>=0&&(t+=\"/\"+s.f)}return t}onWindowHashChange(e){this.readURL()}}class N{constructor(e){this.Reveal=e,this.onNavigateLeftClicked=this.onNavigateLeftClicked.bind(this),this.onNavigateRightClicked=this.onNavigateRightClicked.bind(this),this.onNavigateUpClicked=this.onNavigateUpClicked.bind(this),this.onNavigateDownClicked=this.onNavigateDownClicked.bind(this),this.onNavigatePrevClicked=this.onNavigatePrevClicked.bind(this),this.onNavigateNextClicked=this.onNavigateNextClicked.bind(this)}render(){const e=this.Reveal.getConfig().rtl,i=this.Reveal.getRevealElement();this.element=document.createElement(\"aside\"),this.element.className=\"controls\",this.element.innerHTML=`\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t`,this.Reveal.getRevealElement().appendChild(this.element),this.controlsLeft=t(i,\".navigate-left\"),this.controlsRight=t(i,\".navigate-right\"),this.controlsUp=t(i,\".navigate-up\"),this.controlsDown=t(i,\".navigate-down\"),this.controlsPrev=t(i,\".navigate-prev\"),this.controlsNext=t(i,\".navigate-next\"),this.controlsRightArrow=this.element.querySelector(\".navigate-right\"),this.controlsLeftArrow=this.element.querySelector(\".navigate-left\"),this.controlsDownArrow=this.element.querySelector(\".navigate-down\")}configure(e,t){this.element.style.display=e.controls?\"block\":\"none\",this.element.setAttribute(\"data-controls-layout\",e.controlsLayout),this.element.setAttribute(\"data-controls-back-arrows\",e.controlsBackArrows)}bind(){let e=[\"touchstart\",\"click\"];v&&(e=[\"touchstart\"]),e.forEach((e=>{this.controlsLeft.forEach((t=>t.addEventListener(e,this.onNavigateLeftClicked,!1))),this.controlsRight.forEach((t=>t.addEventListener(e,this.onNavigateRightClicked,!1))),this.controlsUp.forEach((t=>t.addEventListener(e,this.onNavigateUpClicked,!1))),this.controlsDown.forEach((t=>t.addEventListener(e,this.onNavigateDownClicked,!1))),this.controlsPrev.forEach((t=>t.addEventListener(e,this.onNavigatePrevClicked,!1))),this.controlsNext.forEach((t=>t.addEventListener(e,this.onNavigateNextClicked,!1)))}))}unbind(){[\"touchstart\",\"click\"].forEach((e=>{this.controlsLeft.forEach((t=>t.removeEventListener(e,this.onNavigateLeftClicked,!1))),this.controlsRight.forEach((t=>t.removeEventListener(e,this.onNavigateRightClicked,!1))),this.controlsUp.forEach((t=>t.removeEventListener(e,this.onNavigateUpClicked,!1))),this.controlsDown.forEach((t=>t.removeEventListener(e,this.onNavigateDownClicked,!1))),this.controlsPrev.forEach((t=>t.removeEventListener(e,this.onNavigatePrevClicked,!1))),this.controlsNext.forEach((t=>t.removeEventListener(e,this.onNavigateNextClicked,!1)))}))}update(){let e=this.Reveal.availableRoutes();[...this.controlsLeft,...this.controlsRight,...this.controlsUp,...this.controlsDown,...this.controlsPrev,...this.controlsNext].forEach((e=>{e.classList.remove(\"enabled\",\"fragmented\"),e.setAttribute(\"disabled\",\"disabled\")})),e.left&&this.controlsLeft.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")})),e.right&&this.controlsRight.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")})),e.up&&this.controlsUp.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")})),e.down&&this.controlsDown.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")})),(e.left||e.up)&&this.controlsPrev.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")})),(e.right||e.down)&&this.controlsNext.forEach((e=>{e.classList.add(\"enabled\"),e.removeAttribute(\"disabled\")}));let t=this.Reveal.getCurrentSlide();if(t){let e=this.Reveal.fragments.availableRoutes();e.prev&&this.controlsPrev.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")})),e.next&&this.controlsNext.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")})),this.Reveal.isVerticalSlide(t)?(e.prev&&this.controlsUp.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")})),e.next&&this.controlsDown.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")}))):(e.prev&&this.controlsLeft.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")})),e.next&&this.controlsRight.forEach((e=>{e.classList.add(\"fragmented\",\"enabled\"),e.removeAttribute(\"disabled\")})))}if(this.Reveal.getConfig().controlsTutorial){let t=this.Reveal.getIndices();!this.Reveal.hasNavigatedVertically()&&e.down?this.controlsDownArrow.classList.add(\"highlight\"):(this.controlsDownArrow.classList.remove(\"highlight\"),this.Reveal.getConfig().rtl?!this.Reveal.hasNavigatedHorizontally()&&e.left&&0===t.v?this.controlsLeftArrow.classList.add(\"highlight\"):this.controlsLeftArrow.classList.remove(\"highlight\"):!this.Reveal.hasNavigatedHorizontally()&&e.right&&0===t.v?this.controlsRightArrow.classList.add(\"highlight\"):this.controlsRightArrow.classList.remove(\"highlight\"))}}destroy(){this.unbind(),this.element.remove()}onNavigateLeftClicked(e){e.preventDefault(),this.Reveal.onUserInput(),\"linear\"===this.Reveal.getConfig().navigationMode?this.Reveal.prev():this.Reveal.left()}onNavigateRightClicked(e){e.preventDefault(),this.Reveal.onUserInput(),\"linear\"===this.Reveal.getConfig().navigationMode?this.Reveal.next():this.Reveal.right()}onNavigateUpClicked(e){e.preventDefault(),this.Reveal.onUserInput(),this.Reveal.up()}onNavigateDownClicked(e){e.preventDefault(),this.Reveal.onUserInput(),this.Reveal.down()}onNavigatePrevClicked(e){e.preventDefault(),this.Reveal.onUserInput(),this.Reveal.prev()}onNavigateNextClicked(e){e.preventDefault(),this.Reveal.onUserInput(),this.Reveal.next()}}class M{constructor(e){this.Reveal=e,this.onProgressClicked=this.onProgressClicked.bind(this)}render(){this.element=document.createElement(\"div\"),this.element.className=\"progress\",this.Reveal.getRevealElement().appendChild(this.element),this.bar=document.createElement(\"span\"),this.element.appendChild(this.bar)}configure(e,t){this.element.style.display=e.progress?\"block\":\"none\"}bind(){this.Reveal.getConfig().progress&&this.element&&this.element.addEventListener(\"click\",this.onProgressClicked,!1)}unbind(){this.Reveal.getConfig().progress&&this.element&&this.element.removeEventListener(\"click\",this.onProgressClicked,!1)}update(){if(this.Reveal.getConfig().progress&&this.bar){let e=this.Reveal.getProgress();this.Reveal.getTotalSlides()<2&&(e=0),this.bar.style.transform=\"scaleX(\"+e+\")\"}}getMaxWidth(){return this.Reveal.getRevealElement().offsetWidth}onProgressClicked(e){this.Reveal.onUserInput(e),e.preventDefault();let t=this.Reveal.getSlides(),i=t.length,a=Math.floor(e.clientX/this.getMaxWidth()*i);this.Reveal.getConfig().rtl&&(a=i-a);let s=this.Reveal.getIndices(t[a]);this.Reveal.slide(s.h,s.v)}destroy(){this.element.remove()}}class D{constructor(e){this.Reveal=e,this.lastMouseWheelStep=0,this.cursorHidden=!1,this.cursorInactiveTimeout=0,this.onDocumentCursorActive=this.onDocumentCursorActive.bind(this),this.onDocumentMouseScroll=this.onDocumentMouseScroll.bind(this)}configure(e,t){e.mouseWheel?(document.addEventListener(\"DOMMouseScroll\",this.onDocumentMouseScroll,!1),document.addEventListener(\"mousewheel\",this.onDocumentMouseScroll,!1)):(document.removeEventListener(\"DOMMouseScroll\",this.onDocumentMouseScroll,!1),document.removeEventListener(\"mousewheel\",this.onDocumentMouseScroll,!1)),e.hideInactiveCursor?(document.addEventListener(\"mousemove\",this.onDocumentCursorActive,!1),document.addEventListener(\"mousedown\",this.onDocumentCursorActive,!1)):(this.showCursor(),document.removeEventListener(\"mousemove\",this.onDocumentCursorActive,!1),document.removeEventListener(\"mousedown\",this.onDocumentCursorActive,!1))}showCursor(){this.cursorHidden&&(this.cursorHidden=!1,this.Reveal.getRevealElement().style.cursor=\"\")}hideCursor(){!1===this.cursorHidden&&(this.cursorHidden=!0,this.Reveal.getRevealElement().style.cursor=\"none\")}destroy(){this.showCursor(),document.removeEventListener(\"DOMMouseScroll\",this.onDocumentMouseScroll,!1),document.removeEventListener(\"mousewheel\",this.onDocumentMouseScroll,!1),document.removeEventListener(\"mousemove\",this.onDocumentCursorActive,!1),document.removeEventListener(\"mousedown\",this.onDocumentCursorActive,!1)}onDocumentCursorActive(e){this.showCursor(),clearTimeout(this.cursorInactiveTimeout),this.cursorInactiveTimeout=setTimeout(this.hideCursor.bind(this),this.Reveal.getConfig().hideCursorTime)}onDocumentMouseScroll(e){if(Date.now()-this.lastMouseWheelStep>1e3){this.lastMouseWheelStep=Date.now();let t=e.detail||-e.wheelDelta;t>0?this.Reveal.next():t<0&&this.Reveal.prev()}}}const I=(e,t)=>{const i=document.createElement(\"script\");i.type=\"text/javascript\",i.async=!1,i.defer=!1,i.src=e,\"function\"==typeof t&&(i.onload=i.onreadystatechange=e=>{(\"load\"===e.type||/loaded|complete/.test(i.readyState))&&(i.onload=i.onreadystatechange=i.onerror=null,t())},i.onerror=e=>{i.onload=i.onreadystatechange=i.onerror=null,t(new Error(\"Failed loading script: \"+i.src+\"\\n\"+e))});const a=document.querySelector(\"head\");a.insertBefore(i,a.lastChild)};class T{constructor(e){this.Reveal=e,this.state=\"idle\",this.registeredPlugins={},this.asyncDependencies=[]}load(e,t){return this.state=\"loading\",e.forEach(this.registerPlugin.bind(this)),new Promise((e=>{let i=[],a=0;if(t.forEach((e=>{e.condition&&!e.condition()||(e.async?this.asyncDependencies.push(e):i.push(e))})),i.length){a=i.length;const t=t=>{t&&\"function\"==typeof t.callback&&t.callback(),0==--a&&this.initPlugins().then(e)};i.forEach((e=>{\"string\"==typeof e.id?(this.registerPlugin(e),t(e)):\"string\"==typeof e.src?I(e.src,(()=>t(e))):(console.warn(\"Unrecognized plugin format\",e),t())}))}else this.initPlugins().then(e)}))}initPlugins(){return new Promise((e=>{let t=Object.values(this.registeredPlugins),i=t.length;if(0===i)this.loadAsync().then(e);else{let a,s=()=>{0==--i?this.loadAsync().then(e):a()},n=0;a=()=>{let e=t[n++];if(\"function\"==typeof e.init){let t=e.init(this.Reveal);t&&\"function\"==typeof t.then?t.then(s):s()}else s()},a()}}))}loadAsync(){return this.state=\"loaded\",this.asyncDependencies.length&&this.asyncDependencies.forEach((e=>{I(e.src,e.callback)})),Promise.resolve()}registerPlugin(e){2===arguments.length&&\"string\"==typeof arguments[0]?(e=arguments[1]).id=arguments[0]:\"function\"==typeof e&&(e=e());let t=e.id;\"string\"!=typeof t?console.warn(\"Unrecognized plugin format; can't find plugin.id\",e):void 0===this.registeredPlugins[t]?(this.registeredPlugins[t]=e,\"loaded\"===this.state&&\"function\"==typeof e.init&&e.init(this.Reveal)):console.warn('reveal.js: \"'+t+'\" plugin has already been registered')}hasPlugin(e){return!!this.registeredPlugins[e]}getPlugin(e){return this.registeredPlugins[e]}getRegisteredPlugins(){return this.registeredPlugins}destroy(){Object.values(this.registeredPlugins).forEach((e=>{\"function\"==typeof e.destroy&&e.destroy()})),this.registeredPlugins={},this.asyncDependencies=[]}}class F{constructor(e){this.Reveal=e}async setupPDF(){const e=this.Reveal.getConfig(),i=t(this.Reveal.getRevealElement(),\".slides section\"),a=e.slideNumber&&/all|print/i.test(e.showSlideNumber),s=this.Reveal.getComputedSlideSize(window.innerWidth,window.innerHeight),n=Math.floor(s.width*(1+e.margin)),r=Math.floor(s.height*(1+e.margin)),o=s.width,d=s.height;await new Promise(requestAnimationFrame),l(\"@page{size:\"+n+\"px \"+r+\"px; margin: 0px;}\"),l(\".reveal section>img, .reveal section>video, .reveal section>iframe{max-width: \"+o+\"px; max-height:\"+d+\"px}\"),document.documentElement.classList.add(\"print-pdf\"),document.body.style.width=n+\"px\",document.body.style.height=r+\"px\";const c=document.querySelector(\".reveal-viewport\");let h;if(c){const e=window.getComputedStyle(c);e&&e.background&&(h=e.background)}await new Promise(requestAnimationFrame),this.Reveal.layoutSlideContents(o,d),await new Promise(requestAnimationFrame);const u=i.map((e=>e.scrollHeight)),g=[],v=i[0].parentNode;let p=1;i.forEach((function(i,s){if(!1===i.classList.contains(\"stack\")){let l=(n-o)/2,c=(r-d)/2;const v=u[s];let m=Math.max(Math.ceil(v/r),1);m=Math.min(m,e.pdfMaxPagesPerSlide),(1===m&&e.center||i.classList.contains(\"center\"))&&(c=Math.max((r-v)/2,0));const f=document.createElement(\"div\");if(g.push(f),f.className=\"pdf-page\",f.style.height=(r+e.pdfPageHeightOffset)*m+\"px\",h&&(f.style.background=h),f.appendChild(i),i.style.left=l+\"px\",i.style.top=c+\"px\",i.style.width=o+\"px\",this.Reveal.slideContent.layout(i),i.slideBackgroundElement&&f.insertBefore(i.slideBackgroundElement,i),e.showNotes){const t=this.Reveal.getSlideNotes(i);if(t){const i=8,a=\"string\"==typeof e.showNotes?e.showNotes:\"inline\",s=document.createElement(\"div\");s.classList.add(\"speaker-notes\"),s.classList.add(\"speaker-notes-pdf\"),s.setAttribute(\"data-layout\",a),s.innerHTML=t,\"separate-page\"===a?g.push(s):(s.style.left=i+\"px\",s.style.bottom=i+\"px\",s.style.width=n-2*i+\"px\",f.appendChild(s))}}if(a){const e=document.createElement(\"div\");e.classList.add(\"slide-number\"),e.classList.add(\"slide-number-pdf\"),e.innerHTML=p++,f.appendChild(e)}if(e.pdfSeparateFragments){const e=this.Reveal.fragments.sort(f.querySelectorAll(\".fragment\"),!0);let t;e.forEach((function(e,i){t&&t.forEach((function(e){e.classList.remove(\"current-fragment\")})),e.forEach((function(e){e.classList.add(\"visible\",\"current-fragment\")}),this);const s=f.cloneNode(!0);if(a){const e=i+1;s.querySelector(\".slide-number-pdf\").innerHTML+=\".\"+e}g.push(s),t=e}),this),e.forEach((function(e){e.forEach((function(e){e.classList.remove(\"visible\",\"current-fragment\")}))}))}else t(f,\".fragment:not(.fade-out)\").forEach((function(e){e.classList.add(\"visible\")}))}}),this),await new Promise(requestAnimationFrame),g.forEach((e=>v.appendChild(e))),this.Reveal.slideContent.layout(this.Reveal.getSlidesElement()),this.Reveal.dispatchEvent({type:\"pdf-ready\"})}isPrintingPDF(){return/print-pdf/gi.test(window.location.search)}}class z{constructor(e){this.Reveal=e,this.touchStartX=0,this.touchStartY=0,this.touchStartCount=0,this.touchCaptured=!1,this.onPointerDown=this.onPointerDown.bind(this),this.onPointerMove=this.onPointerMove.bind(this),this.onPointerUp=this.onPointerUp.bind(this),this.onTouchStart=this.onTouchStart.bind(this),this.onTouchMove=this.onTouchMove.bind(this),this.onTouchEnd=this.onTouchEnd.bind(this)}bind(){let e=this.Reveal.getRevealElement();\"onpointerdown\"in window?(e.addEventListener(\"pointerdown\",this.onPointerDown,!1),e.addEventListener(\"pointermove\",this.onPointerMove,!1),e.addEventListener(\"pointerup\",this.onPointerUp,!1)):window.navigator.msPointerEnabled?(e.addEventListener(\"MSPointerDown\",this.onPointerDown,!1),e.addEventListener(\"MSPointerMove\",this.onPointerMove,!1),e.addEventListener(\"MSPointerUp\",this.onPointerUp,!1)):(e.addEventListener(\"touchstart\",this.onTouchStart,!1),e.addEventListener(\"touchmove\",this.onTouchMove,!1),e.addEventListener(\"touchend\",this.onTouchEnd,!1))}unbind(){let e=this.Reveal.getRevealElement();e.removeEventListener(\"pointerdown\",this.onPointerDown,!1),e.removeEventListener(\"pointermove\",this.onPointerMove,!1),e.removeEventListener(\"pointerup\",this.onPointerUp,!1),e.removeEventListener(\"MSPointerDown\",this.onPointerDown,!1),e.removeEventListener(\"MSPointerMove\",this.onPointerMove,!1),e.removeEventListener(\"MSPointerUp\",this.onPointerUp,!1),e.removeEventListener(\"touchstart\",this.onTouchStart,!1),e.removeEventListener(\"touchmove\",this.onTouchMove,!1),e.removeEventListener(\"touchend\",this.onTouchEnd,!1)}isSwipePrevented(e){if(n(e,\"video, audio\"))return!0;for(;e&&\"function\"==typeof e.hasAttribute;){if(e.hasAttribute(\"data-prevent-swipe\"))return!0;e=e.parentNode}return!1}onTouchStart(e){if(this.isSwipePrevented(e.target))return!0;this.touchStartX=e.touches[0].clientX,this.touchStartY=e.touches[0].clientY,this.touchStartCount=e.touches.length}onTouchMove(e){if(this.isSwipePrevented(e.target))return!0;let t=this.Reveal.getConfig();if(this.touchCaptured)v&&e.preventDefault();else{this.Reveal.onUserInput(e);let i=e.touches[0].clientX,a=e.touches[0].clientY;if(1===e.touches.length&&2!==this.touchStartCount){let s=this.Reveal.availableRoutes({includeFragments:!0}),n=i-this.touchStartX,r=a-this.touchStartY;n>40&&Math.abs(n)>Math.abs(r)?(this.touchCaptured=!0,\"linear\"===t.navigationMode?t.rtl?this.Reveal.next():this.Reveal.prev():this.Reveal.left()):n<-40&&Math.abs(n)>Math.abs(r)?(this.touchCaptured=!0,\"linear\"===t.navigationMode?t.rtl?this.Reveal.prev():this.Reveal.next():this.Reveal.right()):r>40&&s.up?(this.touchCaptured=!0,\"linear\"===t.navigationMode?this.Reveal.prev():this.Reveal.up()):r<-40&&s.down&&(this.touchCaptured=!0,\"linear\"===t.navigationMode?this.Reveal.next():this.Reveal.down()),t.embedded?(this.touchCaptured||this.Reveal.isVerticalSlide())&&e.preventDefault():e.preventDefault()}}}onTouchEnd(e){this.touchCaptured=!1}onPointerDown(e){e.pointerType!==e.MSPOINTER_TYPE_TOUCH&&\"touch\"!==e.pointerType||(e.touches=[{clientX:e.clientX,clientY:e.clientY}],this.onTouchStart(e))}onPointerMove(e){e.pointerType!==e.MSPOINTER_TYPE_TOUCH&&\"touch\"!==e.pointerType||(e.touches=[{clientX:e.clientX,clientY:e.clientY}],this.onTouchMove(e))}onPointerUp(e){e.pointerType!==e.MSPOINTER_TYPE_TOUCH&&\"touch\"!==e.pointerType||(e.touches=[{clientX:e.clientX,clientY:e.clientY}],this.onTouchEnd(e))}}class H{constructor(e){this.Reveal=e,this.onRevealPointerDown=this.onRevealPointerDown.bind(this),this.onDocumentPointerDown=this.onDocumentPointerDown.bind(this)}configure(e,t){e.embedded?this.blur():(this.focus(),this.unbind())}bind(){this.Reveal.getConfig().embedded&&this.Reveal.getRevealElement().addEventListener(\"pointerdown\",this.onRevealPointerDown,!1)}unbind(){this.Reveal.getRevealElement().removeEventListener(\"pointerdown\",this.onRevealPointerDown,!1),document.removeEventListener(\"pointerdown\",this.onDocumentPointerDown,!1)}focus(){\"focus\"!==this.state&&(this.Reveal.getRevealElement().classList.add(\"focused\"),document.addEventListener(\"pointerdown\",this.onDocumentPointerDown,!1)),this.state=\"focus\"}blur(){\"blur\"!==this.state&&(this.Reveal.getRevealElement().classList.remove(\"focused\"),document.removeEventListener(\"pointerdown\",this.onDocumentPointerDown,!1)),this.state=\"blur\"}isFocused(){return\"focus\"===this.state}destroy(){this.Reveal.getRevealElement().classList.remove(\"focused\")}onRevealPointerDown(e){this.focus()}onDocumentPointerDown(e){let t=r(e.target,\".reveal\");t&&t===this.Reveal.getRevealElement()||this.blur()}}class q{constructor(e){this.Reveal=e}render(){this.element=document.createElement(\"div\"),this.element.className=\"speaker-notes\",this.element.setAttribute(\"data-prevent-swipe\",\"\"),this.element.setAttribute(\"tabindex\",\"0\"),this.Reveal.getRevealElement().appendChild(this.element)}configure(e,t){e.showNotes&&this.element.setAttribute(\"data-layout\",\"string\"==typeof e.showNotes?e.showNotes:\"inline\")}update(){this.Reveal.getConfig().showNotes&&this.element&&this.Reveal.getCurrentSlide()&&!this.Reveal.print.isPrintingPDF()&&(this.element.innerHTML=this.getSlideNotes()||'No notes on this slide.')}updateVisibility(){this.Reveal.getConfig().showNotes&&this.hasNotes()&&!this.Reveal.print.isPrintingPDF()?this.Reveal.getRevealElement().classList.add(\"show-notes\"):this.Reveal.getRevealElement().classList.remove(\"show-notes\")}hasNotes(){return this.Reveal.getSlidesElement().querySelectorAll(\"[data-notes], aside.notes\").length>0}isSpeakerNotesWindow(){return!!window.location.search.match(/receiver/gi)}getSlideNotes(e=this.Reveal.getCurrentSlide()){if(e.hasAttribute(\"data-notes\"))return e.getAttribute(\"data-notes\");let t=e.querySelectorAll(\"aside.notes\");return t?Array.from(t).map((e=>e.innerHTML)).join(\"\\n\"):null}destroy(){this.element.remove()}}class B{constructor(e,t){this.diameter=100,this.diameter2=this.diameter/2,this.thickness=6,this.playing=!1,this.progress=0,this.progressOffset=1,this.container=e,this.progressCheck=t,this.canvas=document.createElement(\"canvas\"),this.canvas.className=\"playback\",this.canvas.width=this.diameter,this.canvas.height=this.diameter,this.canvas.style.width=this.diameter2+\"px\",this.canvas.style.height=this.diameter2+\"px\",this.context=this.canvas.getContext(\"2d\"),this.container.appendChild(this.canvas),this.render()}setPlaying(e){const t=this.playing;this.playing=e,!t&&this.playing?this.animate():this.render()}animate(){const e=this.progress;this.progress=this.progressCheck(),e>.8&&this.progress<.2&&(this.progressOffset=this.progress),this.render(),this.playing&&requestAnimationFrame(this.animate.bind(this))}render(){let e=this.playing?this.progress:0,t=this.diameter2-this.thickness,i=this.diameter2,a=this.diameter2,s=28;this.progressOffset+=.1*(1-this.progressOffset);const n=-Math.PI/2+e*(2*Math.PI),r=-Math.PI/2+this.progressOffset*(2*Math.PI);this.context.save(),this.context.clearRect(0,0,this.diameter,this.diameter),this.context.beginPath(),this.context.arc(i,a,t+4,0,2*Math.PI,!1),this.context.fillStyle=\"rgba( 0, 0, 0, 0.4 )\",this.context.fill(),this.context.beginPath(),this.context.arc(i,a,t,0,2*Math.PI,!1),this.context.lineWidth=this.thickness,this.context.strokeStyle=\"rgba( 255, 255, 255, 0.2 )\",this.context.stroke(),this.playing&&(this.context.beginPath(),this.context.arc(i,a,t,r,n,!1),this.context.lineWidth=this.thickness,this.context.strokeStyle=\"#fff\",this.context.stroke()),this.context.translate(i-14,a-14),this.playing?(this.context.fillStyle=\"#fff\",this.context.fillRect(0,0,10,s),this.context.fillRect(18,0,10,s)):(this.context.beginPath(),this.context.translate(4,0),this.context.moveTo(0,0),this.context.lineTo(24,14),this.context.lineTo(0,s),this.context.fillStyle=\"#fff\",this.context.fill()),this.context.restore()}on(e,t){this.canvas.addEventListener(e,t,!1)}off(e,t){this.canvas.removeEventListener(e,t,!1)}destroy(){this.playing=!1,this.canvas.parentNode&&this.container.removeChild(this.canvas)}}var O={width:960,height:700,margin:.04,minScale:.2,maxScale:2,controls:!0,controlsTutorial:!0,controlsLayout:\"bottom-right\",controlsBackArrows:\"faded\",progress:!0,slideNumber:!1,showSlideNumber:\"all\",hashOneBasedIndex:!1,hash:!1,respondToHashChanges:!0,history:!1,keyboard:!0,keyboardCondition:null,disableLayout:!1,overview:!0,center:!0,touch:!0,loop:!1,rtl:!1,navigationMode:\"default\",shuffle:!1,fragments:!0,fragmentInURL:!0,embedded:!1,help:!0,pause:!0,showNotes:!1,showHiddenSlides:!1,autoPlayMedia:null,preloadIframes:null,autoAnimate:!0,autoAnimateMatcher:null,autoAnimateEasing:\"ease\",autoAnimateDuration:1,autoAnimateUnmatched:!0,autoAnimateStyles:[\"opacity\",\"color\",\"background-color\",\"padding\",\"font-size\",\"line-height\",\"letter-spacing\",\"border-width\",\"border-color\",\"border-radius\",\"outline\",\"outline-offset\"],autoSlide:0,autoSlideStoppable:!0,autoSlideMethod:null,defaultTiming:null,mouseWheel:!1,previewLinks:!1,postMessage:!0,postMessageEvents:!1,focusBodyOnPageVisibilityChange:!0,transition:\"slide\",transitionSpeed:\"default\",backgroundTransition:\"fade\",parallaxBackgroundImage:\"\",parallaxBackgroundSize:\"\",parallaxBackgroundRepeat:\"\",parallaxBackgroundPosition:\"\",parallaxBackgroundHorizontal:null,parallaxBackgroundVertical:null,pdfMaxPagesPerSlide:Number.POSITIVE_INFINITY,pdfSeparateFragments:!0,pdfPageHeightOffset:-1,viewDistance:3,mobileViewDistance:2,display:\"block\",hideInactiveCursor:!0,hideCursorTime:5e3,dependencies:[],plugins:[]};function U(n,l){arguments.length<2&&(l=arguments[0],n=document.querySelector(\".reveal\"));const h={};let u,v,p,m,f,w={},S=!1,A={hasNavigatedHorizontally:!1,hasNavigatedVertically:!1},I=[],U=1,W={layout:\"\",overview:\"\"},K={},V=\"idle\",$=0,j=0,X=-1,Y=!1,_=new b(h),G=new y(h),J=new k(h),Q=new E(h),Z=new L(h),ee=new C(h),te=new x(h),ie=new P(h),ae=new N(h),se=new M(h),ne=new D(h),re=new T(h),oe=new F(h),le=new H(h),de=new z(h),ce=new q(h);function he(e){if(!n)throw'Unable to find presentation root (
).';if(K.wrapper=n,K.slides=n.querySelector(\".slides\"),!K.slides)throw'Unable to find slides container (
).';return w={...O,...w,...l,...e,...d()},ue(),window.addEventListener(\"load\",He,!1),re.load(w.plugins,w.dependencies).then(ge),new Promise((e=>h.on(\"ready\",e)))}function ue(){!0===w.embedded?K.viewport=r(n,\".reveal-viewport\")||n:(K.viewport=document.body,document.documentElement.classList.add(\"reveal-full-page\")),K.viewport.classList.add(\"reveal-viewport\")}function ge(){S=!0,ve(),pe(),Ee(),ye(),we(),tt(),Re(),ie.readURL(),Q.update(!0),setTimeout((()=>{K.slides.classList.remove(\"no-transition\"),K.wrapper.classList.add(\"ready\"),Pe({type:\"ready\",data:{indexh:u,indexv:v,currentSlide:m}})}),1),oe.isPrintingPDF()&&(Ae(),\"complete\"===document.readyState?oe.setupPDF():window.addEventListener(\"load\",(()=>{oe.setupPDF()})))}function ve(){w.showHiddenSlides||t(K.wrapper,'section[data-visibility=\"hidden\"]').forEach((e=>{e.parentNode.removeChild(e)}))}function pe(){K.slides.classList.add(\"no-transition\"),g?K.wrapper.classList.add(\"no-hover\"):K.wrapper.classList.remove(\"no-hover\"),Q.render(),G.render(),ae.render(),se.render(),ce.render(),K.pauseOverlay=o(K.wrapper,\"div\",\"pause-overlay\",w.controls?'':null),K.statusElement=me(),K.wrapper.setAttribute(\"role\",\"application\")}function me(){let e=K.wrapper.querySelector(\".aria-status\");return e||(e=document.createElement(\"div\"),e.style.position=\"absolute\",e.style.height=\"1px\",e.style.width=\"1px\",e.style.overflow=\"hidden\",e.style.clip=\"rect( 1px, 1px, 1px, 1px )\",e.classList.add(\"aria-status\"),e.setAttribute(\"aria-live\",\"polite\"),e.setAttribute(\"aria-atomic\",\"true\"),K.wrapper.appendChild(e)),e}function fe(e){K.statusElement.textContent=e}function be(e){let t=\"\";if(3===e.nodeType)t+=e.textContent;else if(1===e.nodeType){let i=e.getAttribute(\"aria-hidden\"),a=\"none\"===window.getComputedStyle(e).display;\"true\"===i||a||Array.from(e.childNodes).forEach((e=>{t+=be(e)}))}return t=t.trim(),\"\"===t?\"\":t+\" \"}function ye(){setInterval((()=>{0===K.wrapper.scrollTop&&0===K.wrapper.scrollLeft||(K.wrapper.scrollTop=0,K.wrapper.scrollLeft=0)}),1e3)}function we(){document.addEventListener(\"fullscreenchange\",Bt),document.addEventListener(\"webkitfullscreenchange\",Bt)}function Ee(){w.postMessage&&window.addEventListener(\"message\",Tt,!1)}function Re(t){const a={...w};if(\"object\"==typeof t&&e(w,t),!1===h.isReady())return;const s=K.wrapper.querySelectorAll(\".slides section\").length;K.wrapper.classList.remove(a.transition),K.wrapper.classList.add(w.transition),K.wrapper.setAttribute(\"data-transition-speed\",w.transitionSpeed),K.wrapper.setAttribute(\"data-background-transition\",w.backgroundTransition),K.viewport.style.setProperty(\"--slide-width\",w.width+\"px\"),K.viewport.style.setProperty(\"--slide-height\",w.height+\"px\"),w.shuffle&&it(),i(K.wrapper,\"embedded\",w.embedded),i(K.wrapper,\"rtl\",w.rtl),i(K.wrapper,\"center\",w.center),!1===w.pause&&Xe(),w.previewLinks?(Me(),De(\"[data-preview-link=false]\")):(De(),Me(\"[data-preview-link]:not([data-preview-link=false])\")),J.reset(),f&&(f.destroy(),f=null),s>1&&w.autoSlide&&w.autoSlideStoppable&&(f=new B(K.wrapper,(()=>Math.min(Math.max((Date.now()-X)/$,0),1))),f.on(\"click\",Ut),Y=!1),\"default\"!==w.navigationMode?K.wrapper.setAttribute(\"data-navigation-mode\",w.navigationMode):K.wrapper.removeAttribute(\"data-navigation-mode\"),ce.configure(w,a),le.configure(w,a),ne.configure(w,a),ae.configure(w,a),se.configure(w,a),te.configure(w,a),Z.configure(w,a),G.configure(w,a),Ze()}function Se(){window.addEventListener(\"resize\",Ht,!1),w.touch&&de.bind(),w.keyboard&&te.bind(),w.progress&&se.bind(),w.respondToHashChanges&&ie.bind(),ae.bind(),le.bind(),K.slides.addEventListener(\"click\",zt,!1),K.slides.addEventListener(\"transitionend\",Ft,!1),K.pauseOverlay.addEventListener(\"click\",Xe,!1),w.focusBodyOnPageVisibilityChange&&document.addEventListener(\"visibilitychange\",qt,!1)}function Ae(){de.unbind(),le.unbind(),te.unbind(),ae.unbind(),se.unbind(),ie.unbind(),window.removeEventListener(\"resize\",Ht,!1),K.slides.removeEventListener(\"click\",zt,!1),K.slides.removeEventListener(\"transitionend\",Ft,!1),K.pauseOverlay.removeEventListener(\"click\",Xe,!1)}function ke(){Ae(),At(),De(),ce.destroy(),le.destroy(),re.destroy(),ne.destroy(),ae.destroy(),se.destroy(),Q.destroy(),G.destroy(),document.removeEventListener(\"fullscreenchange\",Bt),document.removeEventListener(\"webkitfullscreenchange\",Bt),document.removeEventListener(\"visibilitychange\",qt,!1),window.removeEventListener(\"message\",Tt,!1),window.removeEventListener(\"load\",He,!1),K.pauseOverlay&&K.pauseOverlay.remove(),K.statusElement&&K.statusElement.remove(),document.documentElement.classList.remove(\"reveal-full-page\"),K.wrapper.classList.remove(\"ready\",\"center\",\"has-horizontal-slides\",\"has-vertical-slides\"),K.wrapper.removeAttribute(\"data-transition-speed\"),K.wrapper.removeAttribute(\"data-background-transition\"),K.viewport.classList.remove(\"reveal-viewport\"),K.viewport.style.removeProperty(\"--slide-width\"),K.viewport.style.removeProperty(\"--slide-height\"),K.slides.style.removeProperty(\"width\"),K.slides.style.removeProperty(\"height\"),K.slides.style.removeProperty(\"zoom\"),K.slides.style.removeProperty(\"left\"),K.slides.style.removeProperty(\"top\"),K.slides.style.removeProperty(\"bottom\"),K.slides.style.removeProperty(\"right\"),K.slides.style.removeProperty(\"transform\"),Array.from(K.wrapper.querySelectorAll(\".slides section\")).forEach((e=>{e.style.removeProperty(\"display\"),e.style.removeProperty(\"top\"),e.removeAttribute(\"hidden\"),e.removeAttribute(\"aria-hidden\")}))}function Le(e,t,i){n.addEventListener(e,t,i)}function Ce(e,t,i){n.removeEventListener(e,t,i)}function xe(e){\"string\"==typeof e.layout&&(W.layout=e.layout),\"string\"==typeof e.overview&&(W.overview=e.overview),W.layout?s(K.slides,W.layout+\" \"+W.overview):s(K.slides,W.overview)}function Pe({target:t=K.wrapper,type:i,data:a,bubbles:s=!0}){let n=document.createEvent(\"HTMLEvents\",1,2);return n.initEvent(i,s,!0),e(n,a),t.dispatchEvent(n),t===K.wrapper&&Ne(i),n}function Ne(t,i){if(w.postMessageEvents&&window.parent!==window.self){let a={namespace:\"reveal\",eventName:t,state:Et()};e(a,i),window.parent.postMessage(JSON.stringify(a),\"*\")}}function Me(e=\"a\"){Array.from(K.wrapper.querySelectorAll(e)).forEach((e=>{/^(http|www)/gi.test(e.getAttribute(\"href\"))&&e.addEventListener(\"click\",Ot,!1)}))}function De(e=\"a\"){Array.from(K.wrapper.querySelectorAll(e)).forEach((e=>{/^(http|www)/gi.test(e.getAttribute(\"href\"))&&e.removeEventListener(\"click\",Ot,!1)}))}function Ie(e){ze(),K.overlay=document.createElement(\"div\"),K.overlay.classList.add(\"overlay\"),K.overlay.classList.add(\"overlay-preview\"),K.wrapper.appendChild(K.overlay),K.overlay.innerHTML=`
\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t
\\n\\t\\t\\t
\\n\\t\\t\\t
\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\tUnable to load iframe. This is likely due to the site's policy (x-frame-options).\\n\\t\\t\\t\\t\\n\\t\\t\\t
`,K.overlay.querySelector(\"iframe\").addEventListener(\"load\",(e=>{K.overlay.classList.add(\"loaded\")}),!1),K.overlay.querySelector(\".close\").addEventListener(\"click\",(e=>{ze(),e.preventDefault()}),!1),K.overlay.querySelector(\".external\").addEventListener(\"click\",(e=>{ze()}),!1)}function Te(e){\"boolean\"==typeof e?e?Fe():ze():K.overlay?ze():Fe()}function Fe(){if(w.help){ze(),K.overlay=document.createElement(\"div\"),K.overlay.classList.add(\"overlay\"),K.overlay.classList.add(\"overlay-help\"),K.wrapper.appendChild(K.overlay);let e='

Keyboard Shortcuts


',t=te.getShortcuts(),i=te.getBindings();e+=\"\";for(let i in t)e+=``;for(let t in i)i[t].key&&i[t].description&&(e+=``);e+=\"
KEYACTION
${i}${t[i]}
${i[t].key}${i[t].description}
\",K.overlay.innerHTML=`\\n\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t
\\n\\t\\t\\t\\t
\\n\\t\\t\\t\\t\\t
${e}
\\n\\t\\t\\t\\t
\\n\\t\\t\\t`,K.overlay.querySelector(\".close\").addEventListener(\"click\",(e=>{ze(),e.preventDefault()}),!1)}}function ze(){return!!K.overlay&&(K.overlay.parentNode.removeChild(K.overlay),K.overlay=null,!0)}function He(){if(K.wrapper&&!oe.isPrintingPDF()){if(!w.disableLayout){g&&!w.embedded&&document.documentElement.style.setProperty(\"--vh\",.01*window.innerHeight+\"px\");const e=Be(),t=U;qe(w.width,w.height),K.slides.style.width=e.width+\"px\",K.slides.style.height=e.height+\"px\",U=Math.min(e.presentationWidth/e.width,e.presentationHeight/e.height),U=Math.max(U,w.minScale),U=Math.min(U,w.maxScale),1===U?(K.slides.style.zoom=\"\",K.slides.style.left=\"\",K.slides.style.top=\"\",K.slides.style.bottom=\"\",K.slides.style.right=\"\",xe({layout:\"\"})):(K.slides.style.zoom=\"\",K.slides.style.left=\"50%\",K.slides.style.top=\"50%\",K.slides.style.bottom=\"auto\",K.slides.style.right=\"auto\",xe({layout:\"translate(-50%, -50%) scale(\"+U+\")\"}));const i=Array.from(K.wrapper.querySelectorAll(\".slides section\"));for(let t=0,a=i.length;t .stretch, section > .r-stretch\").forEach((t=>{let a=c(t,i);if(/(img|video)/gi.test(t.nodeName)){const i=t.naturalWidth||t.videoWidth,s=t.naturalHeight||t.videoHeight,n=Math.min(e/i,a/s);t.style.width=i*n+\"px\",t.style.height=s*n+\"px\"}else t.style.width=e+\"px\",t.style.height=a+\"px\"}))}function Be(e,t){const i={width:w.width,height:w.height,presentationWidth:e||K.wrapper.offsetWidth,presentationHeight:t||K.wrapper.offsetHeight};return i.presentationWidth-=i.presentationWidth*w.margin,i.presentationHeight-=i.presentationHeight*w.margin,\"string\"==typeof i.width&&/%$/.test(i.width)&&(i.width=parseInt(i.width,10)/100*i.presentationWidth),\"string\"==typeof i.height&&/%$/.test(i.height)&&(i.height=parseInt(i.height,10)/100*i.presentationHeight),i}function Oe(e,t){\"object\"==typeof e&&\"function\"==typeof e.setAttribute&&e.setAttribute(\"data-previous-indexv\",t||0)}function Ue(e){if(\"object\"==typeof e&&\"function\"==typeof e.setAttribute&&e.classList.contains(\"stack\")){const t=e.hasAttribute(\"data-start-indexv\")?\"data-start-indexv\":\"data-previous-indexv\";return parseInt(e.getAttribute(t)||0,10)}return 0}function We(e=m){return e&&e.parentNode&&!!e.parentNode.nodeName.match(/section/i)}function Ke(){return!(!m||!We(m))&&!m.nextElementSibling}function Ve(){return 0===u&&0===v}function $e(){return!!m&&(!m.nextElementSibling&&(!We(m)||!m.parentNode.nextElementSibling))}function je(){if(w.pause){const e=K.wrapper.classList.contains(\"paused\");At(),K.wrapper.classList.add(\"paused\"),!1===e&&Pe({type:\"paused\"})}}function Xe(){const e=K.wrapper.classList.contains(\"paused\");K.wrapper.classList.remove(\"paused\"),St(),e&&Pe({type:\"resumed\"})}function Ye(e){\"boolean\"==typeof e?e?je():Xe():_e()?Xe():je()}function _e(){return K.wrapper.classList.contains(\"paused\")}function Ge(e){\"boolean\"==typeof e?e?Lt():kt():Y?Lt():kt()}function Je(){return!(!$||Y)}function Qe(e,t,i,a){if(Pe({type:\"beforeslidechange\",data:{indexh:void 0===e?u:e,indexv:void 0===t?v:t,origin:a}}).defaultPrevented)return;p=m;const s=K.wrapper.querySelectorAll(\".slides>section\");if(0===s.length)return;void 0!==t||ee.isActive()||(t=Ue(s[e])),p&&p.parentNode&&p.parentNode.classList.contains(\"stack\")&&Oe(p.parentNode,v);const n=I.concat();I.length=0;let r=u||0,o=v||0;u=at(\".slides>section\",void 0===e?u:e),v=at(\".slides>section.present>section\",void 0===t?v:t);let l=u!==r||v!==o;l||(p=null);let d=s[u],c=d.querySelectorAll(\"section\");m=c[v]||d;let h=!1;l&&p&&m&&!ee.isActive()&&(p.hasAttribute(\"data-auto-animate\")&&m.hasAttribute(\"data-auto-animate\")&&p.getAttribute(\"data-auto-animate-id\")===m.getAttribute(\"data-auto-animate-id\")&&!(u>r||v>o?m:p).hasAttribute(\"data-auto-animate-restart\")&&(h=!0,K.slides.classList.add(\"disable-slide-transitions\")),V=\"running\"),rt(),He(),ee.isActive()&&ee.update(),void 0!==i&&Z.goto(i),p&&p!==m&&(p.classList.remove(\"present\"),p.setAttribute(\"aria-hidden\",\"true\"),Ve()&&setTimeout((()=>{vt().forEach((e=>{Oe(e,0)}))}),0));e:for(let e=0,t=I.length;e{fe(be(m))})),se.update(),ae.update(),ce.update(),Q.update(),Q.updateParallax(),G.update(),Z.update(),ie.writeURL(),St(),h&&(setTimeout((()=>{K.slides.classList.remove(\"disable-slide-transitions\")}),0),w.autoAnimate&&J.run(p,m))}function Ze(){Ae(),Se(),He(),$=w.autoSlide,St(),Q.create(),ie.writeURL(),Z.sortAll(),ae.update(),se.update(),rt(),ce.update(),ce.updateVisibility(),Q.update(!0),G.update(),_.formatEmbeddedContent(),!1===w.autoPlayMedia?_.stopEmbeddedContent(m,{unloadIframes:!1}):_.startEmbeddedContent(m),ee.isActive()&&ee.layout()}function et(e=m){Q.sync(e),Z.sync(e),_.load(e),Q.update(),ce.update()}function tt(){ut().forEach((e=>{t(e,\"section\").forEach(((e,t)=>{t>0&&(e.classList.remove(\"present\"),e.classList.remove(\"past\"),e.classList.add(\"future\"),e.setAttribute(\"aria-hidden\",\"true\"))}))}))}function it(e=ut()){e.forEach(((t,i)=>{let a=e[Math.floor(Math.random()*e.length)];a.parentNode===t.parentNode&&t.parentNode.insertBefore(t,a);let s=t.querySelectorAll(\"section\");s.length&&it(s)}))}function at(e,i){let a=t(K.wrapper,e),s=a.length,n=oe.isPrintingPDF(),r=!1,o=!1;if(s){w.loop&&(i>=s&&(r=!0),(i%=s)<0&&(i=s+i,o=!0)),i=Math.max(Math.min(i,s-1),0);for(let e=0;ei?(t.classList.add(s?\"past\":\"future\"),w.fragments&&nt(t)):e===i&&w.fragments&&(r?nt(t):o&&st(t))}let e=a[i],t=e.classList.contains(\"present\");e.classList.add(\"present\"),e.removeAttribute(\"hidden\"),e.removeAttribute(\"aria-hidden\"),t||Pe({target:e,type:\"visible\",bubbles:!1});let l=e.getAttribute(\"data-state\");l&&(I=I.concat(l.split(\" \")))}else i=0;return i}function st(e){t(e,\".fragment\").forEach((e=>{e.classList.add(\"visible\"),e.classList.remove(\"current-fragment\")}))}function nt(e){t(e,\".fragment.visible\").forEach((e=>{e.classList.remove(\"visible\",\"current-fragment\")}))}function rt(){let e,i,a=ut(),s=a.length;if(s&&void 0!==u){let n=ee.isActive()?10:w.viewDistance;g&&(n=ee.isActive()?6:w.mobileViewDistance),oe.isPrintingPDF()&&(n=Number.MAX_VALUE);for(let r=0;rsection\"),i=K.wrapper.querySelectorAll(\".slides>section.present>section\"),a={left:u>0,right:u0,down:v1&&(a.left=!0,a.right=!0),i.length>1&&(a.up=!0,a.down=!0)),t.length>1&&\"linear\"===w.navigationMode&&(a.right=a.right||a.down,a.left=a.left||a.up),!0===e){let e=Z.availableRoutes();a.left=a.left||e.prev,a.up=a.up||e.prev,a.down=a.down||e.next,a.right=a.right||e.next}if(w.rtl){let e=a.left;a.left=a.right,a.right=e}return a}function lt(e=m){let t=ut(),i=0;e:for(let a=0;a0){let i=.9;t+=m.querySelectorAll(\".fragment.visible\").length/e.length*i}}return Math.min(t/(e-1),1)}function ct(e){let i,a=u,s=v;if(e){let i=We(e),n=i?e.parentNode:e,r=ut();a=Math.max(r.indexOf(n),0),s=void 0,i&&(s=Math.max(t(e.parentNode,\"section\").indexOf(e),0))}if(!e&&m){if(m.querySelectorAll(\".fragment\").length>0){let e=m.querySelector(\".current-fragment\");i=e&&e.hasAttribute(\"data-fragment-index\")?parseInt(e.getAttribute(\"data-fragment-index\"),10):m.querySelectorAll(\".fragment.visible\").length-1}}return{h:a,v:s,f:i}}function ht(){return t(K.wrapper,'.slides section:not(.stack):not([data-visibility=\"uncounted\"])')}function ut(){return t(K.wrapper,\".slides>section\")}function gt(){return t(K.wrapper,\".slides>section>section\")}function vt(){return t(K.wrapper,\".slides>section.stack\")}function pt(){return ut().length>1}function mt(){return gt().length>1}function ft(){return ht().map((e=>{let t={};for(let i=0;i{e.hasAttribute(\"data-autoplay\")&&$&&1e3*e.duration/e.playbackRate>$&&($=1e3*e.duration/e.playbackRate+1e3)}))),!$||Y||_e()||ee.isActive()||$e()&&!Z.availableRoutes().next&&!0!==w.loop||(j=setTimeout((()=>{\"function\"==typeof w.autoSlideMethod?w.autoSlideMethod():Dt(),St()}),$),X=Date.now()),f&&f.setPlaying(-1!==j)}}function At(){clearTimeout(j),j=-1}function kt(){$&&!Y&&(Y=!0,Pe({type:\"autoslidepaused\"}),clearTimeout(j),f&&f.setPlaying(!1))}function Lt(){$&&Y&&(Y=!1,Pe({type:\"autoslideresumed\"}),St())}function Ct({skipFragments:e=!1}={}){A.hasNavigatedHorizontally=!0,w.rtl?(ee.isActive()||e||!1===Z.next())&&ot().left&&Qe(u+1,\"grid\"===w.navigationMode?v:void 0):(ee.isActive()||e||!1===Z.prev())&&ot().left&&Qe(u-1,\"grid\"===w.navigationMode?v:void 0)}function xt({skipFragments:e=!1}={}){A.hasNavigatedHorizontally=!0,w.rtl?(ee.isActive()||e||!1===Z.prev())&&ot().right&&Qe(u-1,\"grid\"===w.navigationMode?v:void 0):(ee.isActive()||e||!1===Z.next())&&ot().right&&Qe(u+1,\"grid\"===w.navigationMode?v:void 0)}function Pt({skipFragments:e=!1}={}){(ee.isActive()||e||!1===Z.prev())&&ot().up&&Qe(u,v-1)}function Nt({skipFragments:e=!1}={}){A.hasNavigatedVertically=!0,(ee.isActive()||e||!1===Z.next())&&ot().down&&Qe(u,v+1)}function Mt({skipFragments:e=!1}={}){if(e||!1===Z.prev())if(ot().up)Pt({skipFragments:e});else{let i;if(i=w.rtl?t(K.wrapper,\".slides>section.future\").pop():t(K.wrapper,\".slides>section.past\").pop(),i&&i.classList.contains(\"stack\")){let e=i.querySelectorAll(\"section\").length-1||void 0;Qe(u-1,e)}else Ct({skipFragments:e})}}function Dt({skipFragments:e=!1}={}){if(A.hasNavigatedHorizontally=!0,A.hasNavigatedVertically=!0,e||!1===Z.next()){let t=ot();t.down&&t.right&&w.loop&&Ke()&&(t.down=!1),t.down?Nt({skipFragments:e}):w.rtl?Ct({skipFragments:e}):xt({skipFragments:e})}}function It(e){w.autoSlideStoppable&&kt()}function Tt(e){let t=e.data;if(\"string\"==typeof t&&\"{\"===t.charAt(0)&&\"}\"===t.charAt(t.length-1)&&(t=JSON.parse(t),t.method&&\"function\"==typeof h[t.method]))if(!1===R.test(t.method)){const e=h[t.method].apply(h,t.args);Ne(\"callback\",{method:t.method,result:e})}else console.warn('reveal.js: \"'+t.method+'\" is is blacklisted from the postMessage API')}function Ft(e){\"running\"===V&&/section/gi.test(e.target.nodeName)&&(V=\"idle\",Pe({type:\"slidetransitionend\",data:{indexh:u,indexv:v,previousSlide:p,currentSlide:m}}))}function zt(e){const t=r(e.target,'a[href^=\"#\"]');if(t){const i=t.getAttribute(\"href\"),a=ie.getIndicesFromHash(i);a&&(h.slide(a.h,a.v,a.f),e.preventDefault())}}function Ht(e){He()}function qt(e){!1===document.hidden&&document.activeElement!==document.body&&(\"function\"==typeof document.activeElement.blur&&document.activeElement.blur(),document.body.focus())}function Bt(e){(document.fullscreenElement||document.webkitFullscreenElement)===K.wrapper&&(e.stopImmediatePropagation(),setTimeout((()=>{h.layout(),h.focus.focus()}),1))}function Ot(e){if(e.currentTarget&&e.currentTarget.hasAttribute(\"href\")){let t=e.currentTarget.getAttribute(\"href\");t&&(Ie(t),e.preventDefault())}}function Ut(e){$e()&&!1===w.loop?(Qe(0,0),Lt()):Y?Lt():kt()}const Wt={VERSION:\"4.4.0\",initialize:he,configure:Re,destroy:ke,sync:Ze,syncSlide:et,syncFragments:Z.sync.bind(Z),slide:Qe,left:Ct,right:xt,up:Pt,down:Nt,prev:Mt,next:Dt,navigateLeft:Ct,navigateRight:xt,navigateUp:Pt,navigateDown:Nt,navigatePrev:Mt,navigateNext:Dt,navigateFragment:Z.goto.bind(Z),prevFragment:Z.prev.bind(Z),nextFragment:Z.next.bind(Z),on:Le,off:Ce,addEventListener:Le,removeEventListener:Ce,layout:He,shuffle:it,availableRoutes:ot,availableFragments:Z.availableRoutes.bind(Z),toggleHelp:Te,toggleOverview:ee.toggle.bind(ee),togglePause:Ye,toggleAutoSlide:Ge,isFirstSlide:Ve,isLastSlide:$e,isLastVerticalSlide:Ke,isVerticalSlide:We,isPaused:_e,isAutoSliding:Je,isSpeakerNotes:ce.isSpeakerNotesWindow.bind(ce),isOverview:ee.isActive.bind(ee),isFocused:le.isFocused.bind(le),isPrintingPDF:oe.isPrintingPDF.bind(oe),isReady:()=>S,loadSlide:_.load.bind(_),unloadSlide:_.unload.bind(_),showPreview:Ie,hidePreview:ze,addEventListeners:Se,removeEventListeners:Ae,dispatchEvent:Pe,getState:Et,setState:Rt,getProgress:dt,getIndices:ct,getSlidesAttributes:ft,getSlidePastCount:lt,getTotalSlides:bt,getSlide:yt,getPreviousSlide:()=>p,getCurrentSlide:()=>m,getSlideBackground:wt,getSlideNotes:ce.getSlideNotes.bind(ce),getSlides:ht,getHorizontalSlides:ut,getVerticalSlides:gt,hasHorizontalSlides:pt,hasVerticalSlides:mt,hasNavigatedHorizontally:()=>A.hasNavigatedHorizontally,hasNavigatedVertically:()=>A.hasNavigatedVertically,addKeyBinding:te.addKeyBinding.bind(te),removeKeyBinding:te.removeKeyBinding.bind(te),triggerKey:te.triggerKey.bind(te),registerKeyboardShortcut:te.registerKeyboardShortcut.bind(te),getComputedSlideSize:Be,getScale:()=>U,getConfig:()=>w,getQueryHash:d,getSlidePath:ie.getHash.bind(ie),getRevealElement:()=>n,getSlidesElement:()=>K.slides,getViewportElement:()=>K.viewport,getBackgroundsElement:()=>Q.element,registerPlugin:re.registerPlugin.bind(re),hasPlugin:re.hasPlugin.bind(re),getPlugin:re.getPlugin.bind(re),getPlugins:re.getRegisteredPlugins.bind(re)};return e(h,{...Wt,announceStatus:fe,getStatusText:be,print:oe,focus:le,progress:se,controls:ae,location:ie,overview:ee,fragments:Z,slideContent:_,slideNumber:G,onUserInput:It,closeOverlay:ze,updateSlidesVisibility:rt,layoutSlideContents:qe,transformSlides:xe,cueAutoSlide:St,cancelAutoSlide:At}),Wt}let W=U,K=[];W.initialize=e=>(Object.assign(W,new U(document.querySelector(\".reveal\"),e)),K.map((e=>e(W))),W.initialize()),[\"configure\",\"on\",\"off\",\"addEventListener\",\"removeEventListener\",\"registerPlugin\"].forEach((e=>{W[e]=(...t)=>{K.push((i=>i[e].call(null,...t)))}})),W.isReady=()=>!1,W.VERSION=\"4.4.0\";/* harmony default export */ __webpack_exports__[\"default\"] = (W);\n//# sourceMappingURL=reveal.esm.js.map\n\n\n//# sourceURL=webpack:///./node_modules/reveal.js/dist/reveal.esm.js?"); + +/***/ }), + +/***/ "./node_modules/reveal.js/plugin/highlight/highlight.esm.js": +/*!******************************************************************!*\ + !*** ./node_modules/reveal.js/plugin/highlight/highlight.esm.js ***! + \******************************************************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\nfunction e(t){return t instanceof Map?t.clear=t.delete=t.set=function(){throw new Error(\"map is read-only\")}:t instanceof Set&&(t.add=t.clear=t.delete=function(){throw new Error(\"set is read-only\")}),Object.freeze(t),Object.getOwnPropertyNames(t).forEach((function(a){var n=t[a];\"object\"!=typeof n||Object.isFrozen(n)||e(n)})),t}var t=e,a=e;t.default=a;class n{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function i(e){return e.replace(/&/g,\"&\").replace(//g,\">\").replace(/\"/g,\""\").replace(/'/g,\"'\")}function r(e,...t){const a=Object.create(null);for(const t in e)a[t]=e[t];return t.forEach((function(e){for(const t in e)a[t]=e[t]})),a}const s=e=>!!e.kind;class o{constructor(e,t){this.buffer=\"\",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=i(e)}openNode(e){if(!s(e))return;let t=e.kind;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){s(e)&&(this.buffer+=\"\")}value(){return this.buffer}span(e){this.buffer+=``}}class l{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return\"string\"==typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){\"string\"!=typeof e&&e.children&&(e.children.every((e=>\"string\"==typeof e))?e.children=[e.children.join(\"\")]:e.children.forEach((e=>{l._collapse(e)})))}}class c extends l{constructor(e){super(),this.options=e}addKeyword(e,t){\"\"!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){\"\"!==e&&this.add(e)}addSublanguage(e,t){const a=e.root;a.kind=t,a.sublanguage=!0,this.add(a)}toHTML(){return new o(this,this.options).value()}finalize(){return!0}}function _(e){return e?\"string\"==typeof e?e:e.source:null}const d=/\\[(?:[^\\\\\\]]|\\\\.)*\\]|\\(\\??|\\\\([1-9][0-9]*)|\\\\./;const m=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",u={begin:\"\\\\\\\\[\\\\s\\\\S]\",relevance:0},p={className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[u]},g={className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[u]},E={begin:/\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b/},S=function(e,t,a={}){const n=r({className:\"comment\",begin:e,end:t,contains:[]},a);return n.contains.push(E),n.contains.push({className:\"doctag\",begin:\"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):\",relevance:0}),n},b=S(\"//\",\"$\"),T=S(\"/\\\\*\",\"\\\\*/\"),f=S(\"#\",\"$\"),C={className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?\",relevance:0},N={className:\"number\",begin:m,relevance:0},R={className:\"number\",begin:\"\\\\b(0b[01]+)\",relevance:0},O={className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",relevance:0},h={begin:/(?=\\/[^/\\n]*\\/)/,contains:[{className:\"regexp\",begin:/\\//,end:/\\/[gimuy]*/,illegal:/\\n/,contains:[u,{begin:/\\[/,end:/\\]/,relevance:0,contains:[u]}]}]},v={className:\"title\",begin:\"[a-zA-Z]\\\\w*\",relevance:0},I={className:\"title\",begin:\"[a-zA-Z_]\\\\w*\",relevance:0},A={begin:\"\\\\.\\\\s*[a-zA-Z_]\\\\w*\",relevance:0};var y=Object.freeze({__proto__:null,MATCH_NOTHING_RE:/\\b\\B/,IDENT_RE:\"[a-zA-Z]\\\\w*\",UNDERSCORE_IDENT_RE:\"[a-zA-Z_]\\\\w*\",NUMBER_RE:\"\\\\b\\\\d+(\\\\.\\\\d+)?\",C_NUMBER_RE:m,BINARY_NUMBER_RE:\"\\\\b(0b[01]+)\",RE_STARTERS_RE:\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",SHEBANG:(e={})=>{const t=/^#![ ]*\\//;return e.binary&&(e.begin=function(...e){return e.map((e=>_(e))).join(\"\")}(t,/.*\\b/,e.binary,/\\b.*/)),r({className:\"meta\",begin:t,end:/$/,relevance:0,\"on:begin\":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:u,APOS_STRING_MODE:p,QUOTE_STRING_MODE:g,PHRASAL_WORDS_MODE:E,COMMENT:S,C_LINE_COMMENT_MODE:b,C_BLOCK_COMMENT_MODE:T,HASH_COMMENT_MODE:f,NUMBER_MODE:C,C_NUMBER_MODE:N,BINARY_NUMBER_MODE:R,CSS_NUMBER_MODE:O,REGEXP_MODE:h,TITLE_MODE:v,UNDERSCORE_TITLE_MODE:I,METHOD_GUARD:A,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{\"on:begin\":(e,t)=>{t.data._beginMatch=e[1]},\"on:end\":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})}});function D(e,t){\".\"===e.input[e.index-1]&&t.ignoreMatch()}function M(e,t){t&&e.beginKeywords&&(e.begin=\"\\\\b(\"+e.beginKeywords.split(\" \").join(\"|\")+\")(?!\\\\.)(?=\\\\b|\\\\s)\",e.__beforeBegin=D,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function L(e,t){Array.isArray(e.illegal)&&(e.illegal=function(...e){return\"(\"+e.map((e=>_(e))).join(\"|\")+\")\"}(...e.illegal))}function x(e,t){if(e.match){if(e.begin||e.end)throw new Error(\"begin & end are not supported with match\");e.begin=e.match,delete e.match}}function w(e,t){void 0===e.relevance&&(e.relevance=1)}const P=[\"of\",\"and\",\"for\",\"in\",\"not\",\"or\",\"if\",\"then\",\"parent\",\"list\",\"value\"];function k(e,t,a=\"keyword\"){const n={};return\"string\"==typeof e?i(a,e.split(\" \")):Array.isArray(e)?i(a,e):Object.keys(e).forEach((function(a){Object.assign(n,k(e[a],t,a))})),n;function i(e,a){t&&(a=a.map((e=>e.toLowerCase()))),a.forEach((function(t){const a=t.split(\"|\");n[a[0]]=[e,U(a[0],a[1])]}))}}function U(e,t){return t?Number(t):function(e){return P.includes(e.toLowerCase())}(e)?0:1}function F(e,{plugins:t}){function a(t,a){return new RegExp(_(t),\"m\"+(e.case_insensitive?\"i\":\"\")+(a?\"g\":\"\"))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=function(e){return new RegExp(e.toString()+\"|\").exec(\"\").length-1}(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map((e=>e[1]));this.matcherRe=a(function(e,t=\"|\"){let a=0;return e.map((e=>{a+=1;const t=a;let n=_(e),i=\"\";for(;n.length>0;){const e=d.exec(n);if(!e){i+=n;break}i+=n.substring(0,e.index),n=n.substring(e.index+e[0].length),\"\\\\\"===e[0][0]&&e[1]?i+=\"\\\\\"+String(Number(e[1])+t):(i+=e[0],\"(\"===e[0]&&a++)}return i})).map((e=>`(${e})`)).join(t)}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const a=t.findIndex(((e,t)=>t>0&&void 0!==e)),n=this.matchIndexes[a];return t.splice(0,a),Object.assign(t,n)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach((([e,a])=>t.addRule(e,a))),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),\"begin\"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let a=t.exec(e);if(this.resumingScanAtSamePosition())if(a&&a.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,a=t.exec(e)}return a&&(this.regexIndex+=a.position+1,this.regexIndex===this.count&&this.considerAll()),a}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes(\"self\"))throw new Error(\"ERR: contains `self` is not supported at the top-level of a language. See documentation.\");return e.classNameAliases=r(e.classNameAliases||{}),function t(n,s){const o=n;if(n.isCompiled)return o;[x].forEach((e=>e(n,s))),e.compilerExtensions.forEach((e=>e(n,s))),n.__beforeBegin=null,[M,L,w].forEach((e=>e(n,s))),n.isCompiled=!0;let l=null;if(\"object\"==typeof n.keywords&&(l=n.keywords.$pattern,delete n.keywords.$pattern),n.keywords&&(n.keywords=k(n.keywords,e.case_insensitive)),n.lexemes&&l)throw new Error(\"ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) \");return l=l||n.lexemes||/\\w+/,o.keywordPatternRe=a(l,!0),s&&(n.begin||(n.begin=/\\B|\\b/),o.beginRe=a(n.begin),n.endSameAsBegin&&(n.end=n.begin),n.end||n.endsWithParent||(n.end=/\\B|\\b/),n.end&&(o.endRe=a(n.end)),o.terminatorEnd=_(n.end)||\"\",n.endsWithParent&&s.terminatorEnd&&(o.terminatorEnd+=(n.end?\"|\":\"\")+s.terminatorEnd)),n.illegal&&(o.illegalRe=a(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return function(e){e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return r(e,{variants:null},t)})));if(e.cachedVariants)return e.cachedVariants;if(B(e))return r(e,{starts:e.starts?r(e.starts):null});if(Object.isFrozen(e))return r(e);return e}(\"self\"===e?n:e)}))),n.contains.forEach((function(e){t(e,o)})),n.starts&&t(n.starts,s),o.matcher=function(e){const t=new i;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:\"begin\"}))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:\"end\"}),e.illegal&&t.addRule(e.illegal,{type:\"illegal\"}),t}(o),o}(e)}function B(e){return!!e&&(e.endsWithParent||B(e.starts))}function G(e){const t={props:[\"language\",\"code\",\"autodetect\"],data:function(){return{detectedLanguage:\"\",unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?\"\":\"hljs \"+this.detectedLanguage},highlighted(){if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language \"${this.language}\" you specified could not be found.`),this.unknownLanguage=!0,i(this.code);let t={};return this.autoDetect?(t=e.highlightAuto(this.code),this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),t.value},autoDetect(){return!this.language||(e=this.autodetect,Boolean(e||\"\"===e));var e},ignoreIllegals:()=>!0},render(e){return e(\"pre\",{},[e(\"code\",{class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{Component:t,VuePlugin:{install(e){e.component(\"highlightjs\",t)}}}}const Y={\"after:highlightElement\":({el:e,result:t,text:a})=>{const n=V(e);if(!n.length)return;const r=document.createElement(\"div\");r.innerHTML=t.value,t.value=function(e,t,a){let n=0,r=\"\";const s=[];function o(){return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset\"}function c(e){r+=\"\"}function _(e){(\"start\"===e.event?l:c)(e.node)}for(;e.length||t.length;){let t=o();if(r+=i(a.substring(n,t[0].offset)),n=t[0].offset,t===e){s.reverse().forEach(c);do{_(t.splice(0,1)[0]),t=o()}while(t===e&&t.length&&t[0].offset===n);s.reverse().forEach(l)}else\"start\"===t[0].event?s.push(t[0].node):s.pop(),_(t.splice(0,1)[0])}return r+i(a.substr(n))}(n,V(r),a)}};function H(e){return e.nodeName.toLowerCase()}function V(e){const t=[];return function e(a,n){for(let i=a.firstChild;i;i=i.nextSibling)3===i.nodeType?n+=i.nodeValue.length:1===i.nodeType&&(t.push({event:\"start\",offset:n,node:i}),n=e(i,n),H(i).match(/br|hr|img|input/)||t.push({event:\"stop\",offset:n,node:i}));return n}(e,0),t}const q={},z=e=>{console.error(e)},$=(e,...t)=>{console.log(`WARN: ${e}`,...t)},W=(e,t)=>{q[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),q[`${e}/${t}`]=!0)},Q=i,K=r,j=Symbol(\"nomatch\");var X=function(e){const a=Object.create(null),i=Object.create(null),r=[];let s=!0;const o=/(^(<[^>]+>|\\t|)+|\\n)/gm,l=\"Could not find the language '{}', did you forget to load/include a language module?\",_={disableAutodetect:!0,name:\"Plain text\",contains:[]};let d={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\\blang(?:uage)?-([\\w-]+)\\b/i,classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:null,__emitter:c};function m(e){return d.noHighlightRe.test(e)}function u(e,t,a,n){let i=\"\",r=\"\";\"object\"==typeof t?(i=e,a=t.ignoreIllegals,r=t.language,n=void 0):(W(\"10.7.0\",\"highlight(lang, code, ...args) has been deprecated.\"),W(\"10.7.0\",\"Please use highlight(code, options) instead.\\nhttps://github.com/highlightjs/highlight.js/issues/2277\"),r=e,i=t);const s={code:i,language:r};v(\"before:highlight\",s);const o=s.result?s.result:p(s.language,s.code,a,n);return o.code=s.code,v(\"after:highlight\",o),o}function p(e,t,i,o){function c(e,t){const a=C.case_insensitive?t[0].toLowerCase():t[0];return Object.prototype.hasOwnProperty.call(e.keywords,a)&&e.keywords[a]}function _(){null!=h.subLanguage?function(){if(\"\"===A)return;let e=null;if(\"string\"==typeof h.subLanguage){if(!a[h.subLanguage])return void I.addText(A);e=p(h.subLanguage,A,!0,v[h.subLanguage]),v[h.subLanguage]=e.top}else e=g(A,h.subLanguage.length?h.subLanguage:null);h.relevance>0&&(y+=e.relevance),I.addSublanguage(e.emitter,e.language)}():function(){if(!h.keywords)return void I.addText(A);let e=0;h.keywordPatternRe.lastIndex=0;let t=h.keywordPatternRe.exec(A),a=\"\";for(;t;){a+=A.substring(e,t.index);const n=c(h,t);if(n){const[e,i]=n;if(I.addText(a),a=\"\",y+=i,e.startsWith(\"_\"))a+=t[0];else{const a=C.classNameAliases[e]||e;I.addKeyword(t[0],a)}}else a+=t[0];e=h.keywordPatternRe.lastIndex,t=h.keywordPatternRe.exec(A)}a+=A.substr(e),I.addText(a)}(),A=\"\"}function m(e){return e.className&&I.openNode(C.classNameAliases[e.className]||e.className),h=Object.create(e,{parent:{value:h}}),h}function u(e,t,a){let i=function(e,t){const a=e&&e.exec(t);return a&&0===a.index}(e.endRe,a);if(i){if(e[\"on:end\"]){const a=new n(e);e[\"on:end\"](t,a),a.isMatchIgnored&&(i=!1)}if(i){for(;e.endsParent&&e.parent;)e=e.parent;return e}}if(e.endsWithParent)return u(e.parent,t,a)}function E(e){return 0===h.matcher.regexIndex?(A+=e[0],1):(L=!0,0)}function S(e){const t=e[0],a=e.rule,i=new n(a),r=[a.__beforeBegin,a[\"on:begin\"]];for(const a of r)if(a&&(a(e,i),i.isMatchIgnored))return E(t);return a&&a.endSameAsBegin&&(a.endRe=new RegExp(t.replace(/[-/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\"),\"m\")),a.skip?A+=t:(a.excludeBegin&&(A+=t),_(),a.returnBegin||a.excludeBegin||(A=t)),m(a),a.returnBegin?0:t.length}function b(e){const a=e[0],n=t.substr(e.index),i=u(h,e,n);if(!i)return j;const r=h;r.skip?A+=a:(r.returnEnd||r.excludeEnd||(A+=a),_(),r.excludeEnd&&(A=a));do{h.className&&I.closeNode(),h.skip||h.subLanguage||(y+=h.relevance),h=h.parent}while(h!==i.parent);return i.starts&&(i.endSameAsBegin&&(i.starts.endRe=i.endRe),m(i.starts)),r.returnEnd?0:a.length}let T={};function f(a,n){const r=n&&n[0];if(A+=a,null==r)return _(),0;if(\"begin\"===T.type&&\"end\"===n.type&&T.index===n.index&&\"\"===r){if(A+=t.slice(n.index,n.index+1),!s){const t=new Error(\"0 width match regex\");throw t.languageName=e,t.badRule=T.rule,t}return 1}if(T=n,\"begin\"===n.type)return S(n);if(\"illegal\"===n.type&&!i){const e=new Error('Illegal lexeme \"'+r+'\" for mode \"'+(h.className||\"\")+'\"');throw e.mode=h,e}if(\"end\"===n.type){const e=b(n);if(e!==j)return e}if(\"illegal\"===n.type&&\"\"===r)return 1;if(M>1e5&&M>3*n.index){throw new Error(\"potential infinite loop, way more iterations than matches\")}return A+=r,r.length}const C=R(e);if(!C)throw z(l.replace(\"{}\",e)),new Error('Unknown language: \"'+e+'\"');const N=F(C,{plugins:r});let O=\"\",h=o||N;const v={},I=new d.__emitter(d);!function(){const e=[];for(let t=h;t!==C;t=t.parent)t.className&&e.unshift(t.className);e.forEach((e=>I.openNode(e)))}();let A=\"\",y=0,D=0,M=0,L=!1;try{for(h.matcher.considerAll();;){M++,L?L=!1:h.matcher.considerAll(),h.matcher.lastIndex=D;const e=h.matcher.exec(t);if(!e)break;const a=f(t.substring(D,e.index),e);D=e.index+a}return f(t.substr(D)),I.closeAllNodes(),I.finalize(),O=I.toHTML(),{relevance:Math.floor(y),value:O,language:e,illegal:!1,emitter:I,top:h}}catch(a){if(a.message&&a.message.includes(\"Illegal\"))return{illegal:!0,illegalBy:{msg:a.message,context:t.slice(D-100,D+100),mode:a.mode},sofar:O,relevance:0,value:Q(t),emitter:I};if(s)return{illegal:!1,relevance:0,value:Q(t),emitter:I,language:e,top:h,errorRaised:a};throw a}}function g(e,t){t=t||d.languages||Object.keys(a);const n=function(e){const t={relevance:0,emitter:new d.__emitter(d),value:Q(e),illegal:!1,top:_};return t.emitter.addText(e),t}(e),i=t.filter(R).filter(h).map((t=>p(t,e,!1)));i.unshift(n);const r=i.sort(((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(R(e.language).supersetOf===t.language)return 1;if(R(t.language).supersetOf===e.language)return-1}return 0})),[s,o]=r,l=s;return l.second_best=o,l}const E={\"before:highlightElement\":({el:e})=>{d.useBR&&(e.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(//g,\"\\n\"))},\"after:highlightElement\":({result:e})=>{d.useBR&&(e.value=e.value.replace(/\\n/g,\"
\"))}},S=/^(<[^>]+>|\\t)+/gm,b={\"after:highlightElement\":({result:e})=>{d.tabReplace&&(e.value=e.value.replace(S,(e=>e.replace(/\\t/g,d.tabReplace))))}};function T(e){let t=null;const a=function(e){let t=e.className+\" \";t+=e.parentNode?e.parentNode.className:\"\";const a=d.languageDetectRe.exec(t);if(a){const t=R(a[1]);return t||($(l.replace(\"{}\",a[1])),$(\"Falling back to no-highlight mode for this block.\",e)),t?a[1]:\"no-highlight\"}return t.split(/\\s+/).find((e=>m(e)||R(e)))}(e);if(m(a))return;v(\"before:highlightElement\",{el:e,language:a}),t=e;const n=t.textContent,r=a?u(n,{language:a,ignoreIllegals:!0}):g(n);v(\"after:highlightElement\",{el:e,result:r,text:n}),e.innerHTML=r.value,function(e,t,a){const n=t?i[t]:a;e.classList.add(\"hljs\"),n&&e.classList.add(n)}(e,a,r.language),e.result={language:r.language,re:r.relevance,relavance:r.relevance},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.relevance,relavance:r.second_best.relevance})}const f=()=>{if(f.called)return;f.called=!0,W(\"10.6.0\",\"initHighlighting() is deprecated. Use highlightAll() instead.\");document.querySelectorAll(\"pre code\").forEach(T)};let C=!1;function N(){if(\"loading\"===document.readyState)return void(C=!0);document.querySelectorAll(\"pre code\").forEach(T)}function R(e){return e=(e||\"\").toLowerCase(),a[e]||a[i[e]]}function O(e,{languageName:t}){\"string\"==typeof e&&(e=[e]),e.forEach((e=>{i[e.toLowerCase()]=t}))}function h(e){const t=R(e);return t&&!t.disableAutodetect}function v(e,t){const a=e;r.forEach((function(e){e[a]&&e[a](t)}))}\"undefined\"!=typeof window&&window.addEventListener&&window.addEventListener(\"DOMContentLoaded\",(function(){C&&N()}),!1),Object.assign(e,{highlight:u,highlightAuto:g,highlightAll:N,fixMarkup:function(e){return W(\"10.2.0\",\"fixMarkup will be removed entirely in v11.0\"),W(\"10.2.0\",\"Please see https://github.com/highlightjs/highlight.js/issues/2534\"),t=e,d.tabReplace||d.useBR?t.replace(o,(e=>\"\\n\"===e?d.useBR?\"
\":e:d.tabReplace?e.replace(/\\t/g,d.tabReplace):e)):t;var t},highlightElement:T,highlightBlock:function(e){return W(\"10.7.0\",\"highlightBlock will be removed entirely in v12.0\"),W(\"10.7.0\",\"Please use highlightElement now.\"),T(e)},configure:function(e){e.useBR&&(W(\"10.3.0\",\"'useBR' will be removed entirely in v11.0\"),W(\"10.3.0\",\"Please see https://github.com/highlightjs/highlight.js/issues/2559\")),d=K(d,e)},initHighlighting:f,initHighlightingOnLoad:function(){W(\"10.6.0\",\"initHighlightingOnLoad() is deprecated. Use highlightAll() instead.\"),C=!0},registerLanguage:function(t,n){let i=null;try{i=n(e)}catch(e){if(z(\"Language definition for '{}' could not be registered.\".replace(\"{}\",t)),!s)throw e;z(e),i=_}i.name||(i.name=t),a[t]=i,i.rawDefinition=n.bind(null,e),i.aliases&&O(i.aliases,{languageName:t})},unregisterLanguage:function(e){delete a[e];for(const t of Object.keys(i))i[t]===e&&delete i[t]},listLanguages:function(){return Object.keys(a)},getLanguage:R,registerAliases:O,requireLanguage:function(e){W(\"10.4.0\",\"requireLanguage will be removed entirely in v11.\"),W(\"10.4.0\",\"Please see https://github.com/highlightjs/highlight.js/pull/2844\");const t=R(e);if(t)return t;throw new Error(\"The '{}' language is required, but not loaded.\".replace(\"{}\",e))},autoDetection:h,inherit:K,addPlugin:function(e){!function(e){e[\"before:highlightBlock\"]&&!e[\"before:highlightElement\"]&&(e[\"before:highlightElement\"]=t=>{e[\"before:highlightBlock\"](Object.assign({block:t.el},t))}),e[\"after:highlightBlock\"]&&!e[\"after:highlightElement\"]&&(e[\"after:highlightElement\"]=t=>{e[\"after:highlightBlock\"](Object.assign({block:t.el},t))})}(e),r.push(e)},vuePlugin:G(e).VuePlugin}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString=\"10.7.2\";for(const e in y)\"object\"==typeof y[e]&&t(y[e]);return Object.assign(e,y),e.addPlugin(E),e.addPlugin(Y),e.addPlugin(b),e}({});var Z=function(e){var t=\"[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]+\",a=\"далее возврат вызватьисключение выполнить для если и из или иначе иначеесли исключение каждого конецесли конецпопытки конеццикла не новый перейти перем по пока попытка прервать продолжить тогда цикл экспорт \",n=\"null истина ложь неопределено\",i=e.inherit(e.NUMBER_MODE),r={className:\"string\",begin:'\"|\\\\|',end:'\"|$',contains:[{begin:'\"\"'}]},s={begin:\"'\",end:\"'\",excludeBegin:!0,excludeEnd:!0,contains:[{className:\"number\",begin:\"\\\\d{4}([\\\\.\\\\\\\\/:-]?\\\\d{2}){0,5}\"}]},o=e.inherit(e.C_LINE_COMMENT_MODE);return{name:\"1C:Enterprise\",case_insensitive:!0,keywords:{$pattern:t,keyword:a,built_in:\"разделительстраниц разделительстрок символтабуляции ansitooem oemtoansi ввестивидсубконто ввестиперечисление ввестипериод ввестиплансчетов выбранныйплансчетов датагод датамесяц датачисло заголовоксистемы значениевстроку значениеизстроки каталогиб каталогпользователя кодсимв конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лог лог10 максимальноеколичествосубконто названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найтиссылки началопериодаби началостандартногоинтервала начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода обработкаожидания основнойжурналрасчетов основнойплансчетов основнойязык очиститьокносообщений периодстр получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта префиксавтонумерации пропись пустоезначение разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо симв создатьобъект статусвозврата стрколичествострок сформироватьпозициюдокумента счетпокоду текущеевремя типзначения типзначениястр установитьтана установитьтапо фиксшаблон шаблон acos asin atan base64значение base64строка cos exp log log10 pow sin sqrt tan xmlзначение xmlстрока xmlтип xmlтипзнч активноеокно безопасныйрежим безопасныйрежимразделенияданных булево ввестидату ввестизначение ввестистроку ввестичисло возможностьчтенияxml вопрос восстановитьзначение врег выгрузитьжурналрегистрации выполнитьобработкуоповещения выполнитьпроверкуправдоступа вычислить год данныеформывзначение дата день деньгода деньнедели добавитьмесяц заблокироватьданныедляредактирования заблокироватьработупользователя завершитьработусистемы загрузитьвнешнююкомпоненту закрытьсправку записатьjson записатьxml записатьдатуjson записьжурналарегистрации заполнитьзначениясвойств запроситьразрешениепользователя запуститьприложение запуститьсистему зафиксироватьтранзакцию значениевданныеформы значениевстрокувнутр значениевфайл значениезаполнено значениеизстрокивнутр значениеизфайла изxmlтипа импортмоделиxdto имякомпьютера имяпользователя инициализироватьпредопределенныеданные информацияобошибке каталогбиблиотекимобильногоустройства каталогвременныхфайлов каталогдокументов каталогпрограммы кодироватьстроку кодлокализацииинформационнойбазы кодсимвола командасистемы конецгода конецдня конецквартала конецмесяца конецминуты конецнедели конецчаса конфигурациябазыданныхизмененадинамически конфигурацияизменена копироватьданныеформы копироватьфайл краткоепредставлениеошибки лев макс местноевремя месяц мин минута монопольныйрежим найти найтинедопустимыесимволыxml найтиокнопонавигационнойссылке найтипомеченныенаудаление найтипоссылкам найтифайлы началогода началодня началоквартала началомесяца началоминуты началонедели началочаса начатьзапросразрешенияпользователя начатьзапускприложения начатькопированиефайла начатьперемещениефайла начатьподключениевнешнейкомпоненты начатьподключениерасширенияработыскриптографией начатьподключениерасширенияработысфайлами начатьпоискфайлов начатьполучениекаталогавременныхфайлов начатьполучениекаталогадокументов начатьполучениерабочегокаталогаданныхпользователя начатьполучениефайлов начатьпомещениефайла начатьпомещениефайлов начатьсозданиедвоичныхданныхизфайла начатьсозданиекаталога начатьтранзакцию начатьудалениефайлов начатьустановкувнешнейкомпоненты начатьустановкурасширенияработыскриптографией начатьустановкурасширенияработысфайлами неделягода необходимостьзавершениясоединения номерсеансаинформационнойбазы номерсоединенияинформационнойбазы нрег нстр обновитьинтерфейс обновитьнумерациюобъектов обновитьповторноиспользуемыезначения обработкапрерыванияпользователя объединитьфайлы окр описаниеошибки оповестить оповеститьобизменении отключитьобработчикзапросанастроекклиенталицензирования отключитьобработчикожидания отключитьобработчикоповещения открытьзначение открытьиндекссправки открытьсодержаниесправки открытьсправку открытьформу открытьформумодально отменитьтранзакцию очиститьжурналрегистрации очиститьнастройкипользователя очиститьсообщения параметрыдоступа перейтипонавигационнойссылке переместитьфайл подключитьвнешнююкомпоненту подключитьобработчикзапросанастроекклиенталицензирования подключитьобработчикожидания подключитьобработчикоповещения подключитьрасширениеработыскриптографией подключитьрасширениеработысфайлами подробноепредставлениеошибки показатьвводдаты показатьвводзначения показатьвводстроки показатьвводчисла показатьвопрос показатьзначение показатьинформациюобошибке показатьнакарте показатьоповещениепользователя показатьпредупреждение полноеимяпользователя получитьcomобъект получитьxmlтип получитьадреспоместоположению получитьблокировкусеансов получитьвремязавершенияспящегосеанса получитьвремязасыпанияпассивногосеанса получитьвремяожиданияблокировкиданных получитьданныевыбора получитьдополнительныйпараметрклиенталицензирования получитьдопустимыекодылокализации получитьдопустимыечасовыепояса получитьзаголовокклиентскогоприложения получитьзаголовоксистемы получитьзначенияотборажурналарегистрации получитьидентификаторконфигурации получитьизвременногохранилища получитьимявременногофайла получитьимяклиенталицензирования получитьинформациюэкрановклиента получитьиспользованиежурналарегистрации получитьиспользованиесобытияжурналарегистрации получитькраткийзаголовокприложения получитьмакетоформления получитьмаскувсефайлы получитьмаскувсефайлыклиента получитьмаскувсефайлысервера получитьместоположениепоадресу получитьминимальнуюдлинупаролейпользователей получитьнавигационнуюссылку получитьнавигационнуюссылкуинформационнойбазы получитьобновлениеконфигурациибазыданных получитьобновлениепредопределенныхданныхинформационнойбазы получитьобщиймакет получитьобщуюформу получитьокна получитьоперативнуюотметкувремени получитьотключениебезопасногорежима получитьпараметрыфункциональныхопцийинтерфейса получитьполноеимяпредопределенногозначения получитьпредставлениянавигационныхссылок получитьпроверкусложностипаролейпользователей получитьразделительпути получитьразделительпутиклиента получитьразделительпутисервера получитьсеансыинформационнойбазы получитьскоростьклиентскогосоединения получитьсоединенияинформационнойбазы получитьсообщенияпользователю получитьсоответствиеобъектаиформы получитьсоставстандартногоинтерфейсаodata получитьструктурухранениябазыданных получитьтекущийсеансинформационнойбазы получитьфайл получитьфайлы получитьформу получитьфункциональнуюопцию получитьфункциональнуюопциюинтерфейса получитьчасовойпоясинформационнойбазы пользователиос поместитьвовременноехранилище поместитьфайл поместитьфайлы прав праводоступа предопределенноезначение представлениекодалокализации представлениепериода представлениеправа представлениеприложения представлениесобытияжурналарегистрации представлениечасовогопояса предупреждение прекратитьработусистемы привилегированныйрежим продолжитьвызов прочитатьjson прочитатьxml прочитатьдатуjson пустаястрока рабочийкаталогданныхпользователя разблокироватьданныедляредактирования разделитьфайл разорватьсоединениесвнешнимисточникомданных раскодироватьстроку рольдоступна секунда сигнал символ скопироватьжурналрегистрации смещениелетнеговремени смещениестандартноговремени соединитьбуферыдвоичныхданных создатькаталог создатьфабрикуxdto сокрл сокрлп сокрп сообщить состояние сохранитьзначение сохранитьнастройкипользователя сред стрдлина стрзаканчиваетсяна стрзаменить стрнайти стрначинаетсяс строка строкасоединенияинформационнойбазы стрполучитьстроку стрразделить стрсоединить стрсравнить стрчисловхождений стрчислострок стршаблон текущаядата текущаядатасеанса текущаяуниверсальнаядата текущаяуниверсальнаядатавмиллисекундах текущийвариантинтерфейсаклиентскогоприложения текущийвариантосновногошрифтаклиентскогоприложения текущийкодлокализации текущийрежимзапуска текущийязык текущийязыксистемы тип типзнч транзакцияактивна трег удалитьданныеинформационнойбазы удалитьизвременногохранилища удалитьобъекты удалитьфайлы универсальноевремя установитьбезопасныйрежим установитьбезопасныйрежимразделенияданных установитьблокировкусеансов установитьвнешнююкомпоненту установитьвремязавершенияспящегосеанса установитьвремязасыпанияпассивногосеанса установитьвремяожиданияблокировкиданных установитьзаголовокклиентскогоприложения установитьзаголовоксистемы установитьиспользованиежурналарегистрации установитьиспользованиесобытияжурналарегистрации установитькраткийзаголовокприложения установитьминимальнуюдлинупаролейпользователей установитьмонопольныйрежим установитьнастройкиклиенталицензирования установитьобновлениепредопределенныхданныхинформационнойбазы установитьотключениебезопасногорежима установитьпараметрыфункциональныхопцийинтерфейса установитьпривилегированныйрежим установитьпроверкусложностипаролейпользователей установитьрасширениеработыскриптографией установитьрасширениеработысфайлами установитьсоединениесвнешнимисточникомданных установитьсоответствиеобъектаиформы установитьсоставстандартногоинтерфейсаodata установитьчасовойпоясинформационнойбазы установитьчасовойпояссеанса формат цел час часовойпояс часовойпояссеанса число числопрописью этоадресвременногохранилища wsссылки библиотекакартинок библиотекамакетовоформлениякомпоновкиданных библиотекастилей бизнеспроцессы внешниеисточникиданных внешниеобработки внешниеотчеты встроенныепокупки главныйинтерфейс главныйстиль документы доставляемыеуведомления журналыдокументов задачи информацияобинтернетсоединении использованиерабочейдаты историяработыпользователя константы критерииотбора метаданные обработки отображениерекламы отправкадоставляемыхуведомлений отчеты панельзадачос параметрзапуска параметрысеанса перечисления планывидоврасчета планывидовхарактеристик планыобмена планысчетов полнотекстовыйпоиск пользователиинформационнойбазы последовательности проверкавстроенныхпокупок рабочаядата расширенияконфигурации регистрыбухгалтерии регистрынакопления регистрырасчета регистрысведений регламентныезадания сериализаторxdto справочники средствагеопозиционирования средствакриптографии средствамультимедиа средстваотображениярекламы средствапочты средствателефонии фабрикаxdto файловыепотоки фоновыезадания хранилищанастроек хранилищевариантовотчетов хранилищенастроекданныхформ хранилищеобщихнастроек хранилищепользовательскихнастроекдинамическихсписков хранилищепользовательскихнастроекотчетов хранилищесистемныхнастроек \",class:\"webцвета windowsцвета windowsшрифты библиотекакартинок рамкистиля символы цветастиля шрифтыстиля автоматическоесохранениеданныхформывнастройках автонумерациявформе автораздвижениесерий анимациядиаграммы вариантвыравниванияэлементовизаголовков вариантуправлениявысотойтаблицы вертикальнаяпрокруткаформы вертикальноеположение вертикальноеположениеэлемента видгруппыформы виддекорацииформы виддополненияэлементаформы видизмененияданных видкнопкиформы видпереключателя видподписейкдиаграмме видполяформы видфлажка влияниеразмеранапузырекдиаграммы горизонтальноеположение горизонтальноеположениеэлемента группировкаколонок группировкаподчиненныхэлементовформы группыиэлементы действиеперетаскивания дополнительныйрежимотображения допустимыедействияперетаскивания интервалмеждуэлементамиформы использованиевывода использованиеполосыпрокрутки используемоезначениеточкибиржевойдиаграммы историявыборапривводе источникзначенийоситочекдиаграммы источникзначенияразмерапузырькадиаграммы категориягруппыкоманд максимумсерий начальноеотображениедерева начальноеотображениесписка обновлениетекстаредактирования ориентациядендрограммы ориентациядиаграммы ориентацияметокдиаграммы ориентацияметоксводнойдиаграммы ориентацияэлементаформы отображениевдиаграмме отображениевлегендедиаграммы отображениегруппыкнопок отображениезаголовкашкалыдиаграммы отображениезначенийсводнойдиаграммы отображениезначенияизмерительнойдиаграммы отображениеинтерваладиаграммыганта отображениекнопки отображениекнопкивыбора отображениеобсужденийформы отображениеобычнойгруппы отображениеотрицательныхзначенийпузырьковойдиаграммы отображениепанелипоиска отображениеподсказки отображениепредупрежденияприредактировании отображениеразметкиполосырегулирования отображениестраницформы отображениетаблицы отображениетекстазначениядиаграммыганта отображениеуправленияобычнойгруппы отображениефигурыкнопки палитрацветовдиаграммы поведениеобычнойгруппы поддержкамасштабадендрограммы поддержкамасштабадиаграммыганта поддержкамасштабасводнойдиаграммы поисквтаблицепривводе положениезаголовкаэлементаформы положениекартинкикнопкиформы положениекартинкиэлементаграфическойсхемы положениекоманднойпанелиформы положениекоманднойпанелиэлементаформы положениеопорнойточкиотрисовки положениеподписейкдиаграмме положениеподписейшкалызначенийизмерительнойдиаграммы положениесостоянияпросмотра положениестрокипоиска положениетекстасоединительнойлинии положениеуправленияпоиском положениешкалывремени порядокотображенияточекгоризонтальнойгистограммы порядоксерийвлегендедиаграммы размеркартинки расположениезаголовкашкалыдиаграммы растягиваниеповертикалидиаграммыганта режимавтоотображениясостояния режимвводастроктаблицы режимвыборанезаполненного режимвыделениядаты режимвыделениястрокитаблицы режимвыделениятаблицы режимизмененияразмера режимизменениясвязанногозначения режимиспользованиядиалогапечати режимиспользованияпараметракоманды режиммасштабированияпросмотра режимосновногоокнаклиентскогоприложения режимоткрытияокнаформы режимотображениявыделения режимотображениягеографическойсхемы режимотображениязначенийсерии режимотрисовкисеткиграфическойсхемы режимполупрозрачностидиаграммы режимпробеловдиаграммы режимразмещениянастранице режимредактированияколонки режимсглаживаниядиаграммы режимсглаживанияиндикатора режимсписказадач сквозноевыравнивание сохранениеданныхформывнастройках способзаполнениятекстазаголовкашкалыдиаграммы способопределенияограничивающегозначениядиаграммы стандартнаягруппакоманд стандартноеоформление статусоповещенияпользователя стильстрелки типаппроксимациилиниитрендадиаграммы типдиаграммы типединицышкалывремени типимпортасерийслоягеографическойсхемы типлиниигеографическойсхемы типлиниидиаграммы типмаркерагеографическойсхемы типмаркерадиаграммы типобластиоформления типорганизацииисточникаданныхгеографическойсхемы типотображениясериислоягеографическойсхемы типотображенияточечногообъектагеографическойсхемы типотображенияшкалыэлементалегендыгеографическойсхемы типпоискаобъектовгеографическойсхемы типпроекциигеографическойсхемы типразмещенияизмерений типразмещенияреквизитовизмерений типрамкиэлементауправления типсводнойдиаграммы типсвязидиаграммыганта типсоединениязначенийпосериямдиаграммы типсоединенияточекдиаграммы типсоединительнойлинии типстороныэлементаграфическойсхемы типформыотчета типшкалырадарнойдиаграммы факторлиниитрендадиаграммы фигуракнопки фигурыграфическойсхемы фиксациявтаблице форматдняшкалывремени форматкартинки ширинаподчиненныхэлементовформы виддвижениябухгалтерии виддвижениянакопления видпериодарегистрарасчета видсчета видточкимаршрутабизнеспроцесса использованиеагрегатарегистранакопления использованиегруппиэлементов использованиережимапроведения использованиесреза периодичностьагрегатарегистранакопления режимавтовремя режимзаписидокумента режимпроведениядокумента авторегистрацияизменений допустимыйномерсообщения отправкаэлементаданных получениеэлементаданных использованиерасшифровкитабличногодокумента ориентациястраницы положениеитоговколоноксводнойтаблицы положениеитоговстроксводнойтаблицы положениетекстаотносительнокартинки расположениезаголовкагруппировкитабличногодокумента способчтениязначенийтабличногодокумента типдвустороннейпечати типзаполненияобластитабличногодокумента типкурсоровтабличногодокумента типлиниирисункатабличногодокумента типлинииячейкитабличногодокумента типнаправленияпереходатабличногодокумента типотображениявыделениятабличногодокумента типотображениялинийсводнойтаблицы типразмещениятекстатабличногодокумента типрисункатабличногодокумента типсмещениятабличногодокумента типузоратабличногодокумента типфайлатабличногодокумента точностьпечати чередованиерасположениястраниц отображениевремениэлементовпланировщика типфайлаформатированногодокумента обходрезультатазапроса типзаписизапроса видзаполнениярасшифровкипостроителяотчета типдобавленияпредставлений типизмеренияпостроителяотчета типразмещенияитогов доступкфайлу режимдиалогавыборафайла режимоткрытияфайла типизмеренияпостроителязапроса видданныханализа методкластеризации типединицыинтервалавременианализаданных типзаполнениятаблицырезультатаанализаданных типиспользованиячисловыхзначенийанализаданных типисточникаданныхпоискаассоциаций типколонкианализаданныхдереворешений типколонкианализаданныхкластеризация типколонкианализаданныхобщаястатистика типколонкианализаданныхпоискассоциаций типколонкианализаданныхпоискпоследовательностей типколонкимоделипрогноза типмерырасстоянияанализаданных типотсеченияправилассоциации типполяанализаданных типстандартизациианализаданных типупорядочиванияправилассоциациианализаданных типупорядочиванияшаблоновпоследовательностейанализаданных типупрощениядереварешений wsнаправлениепараметра вариантxpathxs вариантзаписидатыjson вариантпростоготипаxs видгруппымоделиxs видфасетаxdto действиепостроителяdom завершенностьпростоготипаxs завершенностьсоставноготипаxs завершенностьсхемыxs запрещенныеподстановкиxs исключениягруппподстановкиxs категорияиспользованияатрибутаxs категорияограниченияидентичностиxs категорияограниченияпространствименxs методнаследованияxs модельсодержимогоxs назначениетипаxml недопустимыеподстановкиxs обработкапробельныхсимволовxs обработкасодержимогоxs ограничениезначенияxs параметрыотбораузловdom переносстрокjson позициявдокументеdom пробельныесимволыxml типатрибутаxml типзначенияjson типканоническогоxml типкомпонентыxs типпроверкиxml типрезультатаdomxpath типузлаdom типузлаxml формаxml формапредставленияxs форматдатыjson экранированиесимволовjson видсравнениякомпоновкиданных действиеобработкирасшифровкикомпоновкиданных направлениесортировкикомпоновкиданных расположениевложенныхэлементоврезультатакомпоновкиданных расположениеитоговкомпоновкиданных расположениегруппировкикомпоновкиданных расположениеполейгруппировкикомпоновкиданных расположениеполякомпоновкиданных расположениереквизитовкомпоновкиданных расположениересурсовкомпоновкиданных типбухгалтерскогоостаткакомпоновкиданных типвыводатекстакомпоновкиданных типгруппировкикомпоновкиданных типгруппыэлементовотборакомпоновкиданных типдополненияпериодакомпоновкиданных типзаголовкаполейкомпоновкиданных типмакетагруппировкикомпоновкиданных типмакетаобластикомпоновкиданных типостаткакомпоновкиданных типпериодакомпоновкиданных типразмещениятекстакомпоновкиданных типсвязинаборовданныхкомпоновкиданных типэлементарезультатакомпоновкиданных расположениелегендыдиаграммыкомпоновкиданных типпримененияотборакомпоновкиданных режимотображенияэлементанастройкикомпоновкиданных режимотображениянастроеккомпоновкиданных состояниеэлементанастройкикомпоновкиданных способвосстановлениянастроеккомпоновкиданных режимкомпоновкирезультата использованиепараметракомпоновкиданных автопозицияресурсовкомпоновкиданных вариантиспользованиягруппировкикомпоновкиданных расположениересурсоввдиаграммекомпоновкиданных фиксациякомпоновкиданных использованиеусловногооформлениякомпоновкиданных важностьинтернетпочтовогосообщения обработкатекстаинтернетпочтовогосообщения способкодированияинтернетпочтовоговложения способкодированиянеasciiсимволовинтернетпочтовогосообщения типтекстапочтовогосообщения протоколинтернетпочты статусразборапочтовогосообщения режимтранзакциизаписижурналарегистрации статустранзакциизаписижурналарегистрации уровеньжурналарегистрации расположениехранилищасертификатовкриптографии режимвключениясертификатовкриптографии режимпроверкисертификатакриптографии типхранилищасертификатовкриптографии кодировкаименфайловвzipфайле методсжатияzip методшифрованияzip режимвосстановленияпутейфайловzip режимобработкиподкаталоговzip режимсохраненияпутейzip уровеньсжатияzip звуковоеоповещение направлениепереходакстроке позициявпотоке порядокбайтов режимблокировкиданных режимуправленияблокировкойданных сервисвстроенныхпокупок состояниефоновогозадания типподписчикадоставляемыхуведомлений уровеньиспользованиязащищенногосоединенияftp направлениепорядкасхемызапроса типдополненияпериодамисхемызапроса типконтрольнойточкисхемызапроса типобъединениясхемызапроса типпараметрадоступнойтаблицысхемызапроса типсоединениясхемызапроса httpметод автоиспользованиеобщегореквизита автопрефиксномеразадачи вариантвстроенногоязыка видиерархии видрегистранакопления видтаблицывнешнегоисточникаданных записьдвиженийприпроведении заполнениепоследовательностей индексирование использованиебазыпланавидоврасчета использованиебыстроговыбора использованиеобщегореквизита использованиеподчинения использованиеполнотекстовогопоиска использованиеразделяемыхданныхобщегореквизита использованиереквизита назначениеиспользованияприложения назначениерасширенияконфигурации направлениепередачи обновлениепредопределенныхданных оперативноепроведение основноепредставлениевидарасчета основноепредставлениевидахарактеристики основноепредставлениезадачи основноепредставлениепланаобмена основноепредставлениесправочника основноепредставлениесчета перемещениеграницыприпроведении периодичностьномерабизнеспроцесса периодичностьномерадокумента периодичностьрегистрарасчета периодичностьрегистрасведений повторноеиспользованиевозвращаемыхзначений полнотекстовыйпоискпривводепостроке принадлежностьобъекта проведение разделениеаутентификацииобщегореквизита разделениеданныхобщегореквизита разделениерасширенийконфигурацииобщегореквизита режимавтонумерацииобъектов режимзаписирегистра режимиспользованиямодальности режимиспользованиясинхронныхвызововрасширенийплатформыивнешнихкомпонент режимповторногоиспользованиясеансов режимполученияданныхвыборапривводепостроке режимсовместимости режимсовместимостиинтерфейса режимуправленияблокировкойданныхпоумолчанию сериикодовпланавидовхарактеристик сериикодовпланасчетов сериикодовсправочника созданиепривводе способвыбора способпоискастрокипривводепостроке способредактирования типданныхтаблицывнешнегоисточникаданных типкодапланавидоврасчета типкодасправочника типмакета типномерабизнеспроцесса типномерадокумента типномеразадачи типформы удалениедвижений важностьпроблемыприменениярасширенияконфигурации вариантинтерфейсаклиентскогоприложения вариантмасштабаформклиентскогоприложения вариантосновногошрифтаклиентскогоприложения вариантстандартногопериода вариантстандартнойдатыначала видграницы видкартинки видотображенияполнотекстовогопоиска видрамки видсравнения видцвета видчисловогозначения видшрифта допустимаядлина допустимыйзнак использованиеbyteordermark использованиеметаданныхполнотекстовогопоиска источникрасширенийконфигурации клавиша кодвозвратадиалога кодировкаxbase кодировкатекста направлениепоиска направлениесортировки обновлениепредопределенныхданных обновлениеприизмененииданных отображениепанелиразделов проверказаполнения режимдиалогавопрос режимзапускаклиентскогоприложения режимокругления режимоткрытияформприложения режимполнотекстовогопоиска скоростьклиентскогосоединения состояниевнешнегоисточникаданных состояниеобновленияконфигурациибазыданных способвыборасертификатаwindows способкодированиястроки статуссообщения типвнешнейкомпоненты типплатформы типповеденияклавишиenter типэлементаинформацииовыполненииобновленияконфигурациибазыданных уровеньизоляциитранзакций хешфункция частидаты\",type:\"comобъект ftpсоединение httpзапрос httpсервисответ httpсоединение wsопределения wsпрокси xbase анализданных аннотацияxs блокировкаданных буфердвоичныхданных включениеxs выражениекомпоновкиданных генераторслучайныхчисел географическаясхема географическиекоординаты графическаясхема группамоделиxs данныерасшифровкикомпоновкиданных двоичныеданные дендрограмма диаграмма диаграммаганта диалогвыборафайла диалогвыборацвета диалогвыборашрифта диалограсписаниярегламентногозадания диалогредактированиястандартногопериода диапазон документdom документhtml документацияxs доставляемоеуведомление записьdom записьfastinfoset записьhtml записьjson записьxml записьzipфайла записьданных записьтекста записьузловdom запрос защищенноесоединениеopenssl значенияполейрасшифровкикомпоновкиданных извлечениетекста импортxs интернетпочта интернетпочтовоесообщение интернетпочтовыйпрофиль интернетпрокси интернетсоединение информациядляприложенияxs использованиеатрибутаxs использованиесобытияжурналарегистрации источникдоступныхнастроеккомпоновкиданных итераторузловdom картинка квалификаторыдаты квалификаторыдвоичныхданных квалификаторыстроки квалификаторычисла компоновщикмакетакомпоновкиданных компоновщикнастроеккомпоновкиданных конструктормакетаоформлениякомпоновкиданных конструкторнастроеккомпоновкиданных конструкторформатнойстроки линия макеткомпоновкиданных макетобластикомпоновкиданных макетоформлениякомпоновкиданных маскаxs менеджеркриптографии наборсхемxml настройкикомпоновкиданных настройкисериализацииjson обработкакартинок обработкарасшифровкикомпоновкиданных обходдереваdom объявлениеатрибутаxs объявлениенотацииxs объявлениеэлементаxs описаниеиспользованиясобытиядоступжурналарегистрации описаниеиспользованиясобытияотказвдоступежурналарегистрации описаниеобработкирасшифровкикомпоновкиданных описаниепередаваемогофайла описаниетипов определениегруппыатрибутовxs определениегруппымоделиxs определениеограниченияидентичностиxs определениепростоготипаxs определениесоставноготипаxs определениетипадокументаdom определенияxpathxs отборкомпоновкиданных пакетотображаемыхдокументов параметрвыбора параметркомпоновкиданных параметрызаписиjson параметрызаписиxml параметрычтенияxml переопределениеxs планировщик полеанализаданных полекомпоновкиданных построительdom построительзапроса построительотчета построительотчетаанализаданных построительсхемxml поток потоквпамяти почта почтовоесообщение преобразованиеxsl преобразованиекканоническомуxml процессорвыводарезультатакомпоновкиданныхвколлекциюзначений процессорвыводарезультатакомпоновкиданныхвтабличныйдокумент процессоркомпоновкиданных разыменовательпространствименdom рамка расписаниерегламентногозадания расширенноеимяxml результатчтенияданных своднаядиаграмма связьпараметравыбора связьпотипу связьпотипукомпоновкиданных сериализаторxdto сертификатклиентаwindows сертификатклиентафайл сертификаткриптографии сертификатыудостоверяющихцентровwindows сертификатыудостоверяющихцентровфайл сжатиеданных системнаяинформация сообщениепользователю сочетаниеклавиш сравнениезначений стандартнаядатаначала стандартныйпериод схемаxml схемакомпоновкиданных табличныйдокумент текстовыйдокумент тестируемоеприложение типданныхxml уникальныйидентификатор фабрикаxdto файл файловыйпоток фасетдлиныxs фасетколичестваразрядовдробнойчастиxs фасетмаксимальноговключающегозначенияxs фасетмаксимальногоисключающегозначенияxs фасетмаксимальнойдлиныxs фасетминимальноговключающегозначенияxs фасетминимальногоисключающегозначенияxs фасетминимальнойдлиныxs фасетобразцаxs фасетобщегоколичестваразрядовxs фасетперечисленияxs фасетпробельныхсимволовxs фильтрузловdom форматированнаястрока форматированныйдокумент фрагментxs хешированиеданных хранилищезначения цвет чтениеfastinfoset чтениеhtml чтениеjson чтениеxml чтениеzipфайла чтениеданных чтениетекста чтениеузловdom шрифт элементрезультатакомпоновкиданных comsafearray деревозначений массив соответствие списокзначений структура таблицазначений фиксированнаяструктура фиксированноесоответствие фиксированныймассив \",literal:n},contains:[{className:\"meta\",begin:\"#|&\",end:\"$\",keywords:{$pattern:t,\"meta-keyword\":a+\"загрузитьизфайла вебклиент вместо внешнеесоединение клиент конецобласти мобильноеприложениеклиент мобильноеприложениесервер наклиенте наклиентенасервере наклиентенасерверебезконтекста насервере насерверебезконтекста область перед после сервер толстыйклиентобычноеприложение толстыйклиентуправляемоеприложение тонкийклиент \"},contains:[o]},{className:\"function\",variants:[{begin:\"процедура|функция\",end:\"\\\\)\",keywords:\"процедура функция\"},{begin:\"конецпроцедуры|конецфункции\",keywords:\"конецпроцедуры конецфункции\"}],contains:[{begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,contains:[{className:\"params\",begin:t,end:\",\",excludeEnd:!0,endsWithParent:!0,keywords:{$pattern:t,keyword:\"знач\",literal:n},contains:[i,r,s]},o]},e.inherit(e.TITLE_MODE,{begin:t})]},o,{className:\"symbol\",begin:\"~\",end:\";|:\",excludeEnd:!0},i,r,s]}};function J(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var ee=function(e){const t={ruleDeclaration:/^[a-zA-Z][a-zA-Z0-9-]*/,unexpectedChars:/[!@#$^&',?+~`|:]/},a=e.COMMENT(/;/,/$/),n={className:\"attribute\",begin:J(t.ruleDeclaration,/(?=\\s*=)/)};return{name:\"Augmented Backus-Naur Form\",illegal:t.unexpectedChars,keywords:[\"ALPHA\",\"BIT\",\"CHAR\",\"CR\",\"CRLF\",\"CTL\",\"DIGIT\",\"DQUOTE\",\"HEXDIG\",\"HTAB\",\"LF\",\"LWSP\",\"OCTET\",\"SP\",\"VCHAR\",\"WSP\"],contains:[n,a,{className:\"symbol\",begin:/%b[0-1]+(-[0-1]+|(\\.[0-1]+)+){0,1}/},{className:\"symbol\",begin:/%d[0-9]+(-[0-9]+|(\\.[0-9]+)+){0,1}/},{className:\"symbol\",begin:/%x[0-9A-F]+(-[0-9A-F]+|(\\.[0-9A-F]+)+){0,1}/},{className:\"symbol\",begin:/%[si]/},e.QUOTE_STRING_MODE,e.NUMBER_MODE]}};function te(e){return e?\"string\"==typeof e?e:e.source:null}function ae(...e){return e.map((e=>te(e))).join(\"\")}function ne(...e){return\"(\"+e.map((e=>te(e))).join(\"|\")+\")\"}var ie=function(e){const t=[\"GET\",\"POST\",\"HEAD\",\"PUT\",\"DELETE\",\"CONNECT\",\"OPTIONS\",\"PATCH\",\"TRACE\"];return{name:\"Apache Access Log\",contains:[{className:\"number\",begin:/^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b/,relevance:5},{className:\"number\",begin:/\\b\\d+\\b/,relevance:0},{className:\"string\",begin:ae(/\"/,ne(...t)),end:/\"/,keywords:t,illegal:/\\n/,relevance:5,contains:[{begin:/HTTP\\/[12]\\.\\d'/,relevance:5}]},{className:\"string\",begin:/\\[\\d[^\\]\\n]{8,}\\]/,illegal:/\\n/,relevance:1},{className:\"string\",begin:/\\[/,end:/\\]/,illegal:/\\n/,relevance:0},{className:\"string\",begin:/\"Mozilla\\/\\d\\.\\d \\(/,end:/\"/,illegal:/\\n/,relevance:3},{className:\"string\",begin:/\"/,end:/\"/,illegal:/\\n/,relevance:0}]}};function re(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var se=function(e){const t={className:\"rest_arg\",begin:/[.]{3}/,end:/[a-zA-Z_$][a-zA-Z0-9_$]*/,relevance:10};return{name:\"ActionScript\",aliases:[\"as\"],keywords:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"class\",beginKeywords:\"package\",end:/\\{/,contains:[e.TITLE_MODE]},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.TITLE_MODE]},{className:\"meta\",beginKeywords:\"import include\",end:/;/,keywords:{\"meta-keyword\":\"import include\"}},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,illegal:/\\S/,contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t]},{begin:re(/:\\s*/,/([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)/)}]},e.METHOD_GUARD],illegal:/#/}};var oe=function(e){const t=\"[A-Za-z](_?[A-Za-z0-9.])*\",a=\"[]\\\\{\\\\}%#'\\\"\",n=e.COMMENT(\"--\",\"$\"),i={begin:\"\\\\s+:\\\\s+\",end:\"\\\\s*(:=|;|\\\\)|=>|$)\",illegal:a,contains:[{beginKeywords:\"loop for declare others\",endsParent:!0},{className:\"keyword\",beginKeywords:\"not null constant access function procedure in out aliased exception\"},{className:\"type\",begin:t,endsParent:!0,relevance:0}]};return{name:\"Ada\",case_insensitive:!0,keywords:{keyword:\"abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor\",literal:\"True False\"},contains:[n,{className:\"string\",begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{className:\"string\",begin:/'.'/},{className:\"number\",begin:\"\\\\b(\\\\d(_|\\\\d)*#\\\\w+(\\\\.\\\\w+)?#([eE][-+]?\\\\d(_|\\\\d)*)?|\\\\d(_|\\\\d)*(\\\\.\\\\d(_|\\\\d)*)?([eE][-+]?\\\\d(_|\\\\d)*)?)\",relevance:0},{className:\"symbol\",begin:\"'\"+t},{className:\"title\",begin:\"(\\\\bwith\\\\s+)?(\\\\bprivate\\\\s+)?\\\\bpackage\\\\s+(\\\\bbody\\\\s+)?\",end:\"(is|$)\",keywords:\"package body\",excludeBegin:!0,excludeEnd:!0,illegal:a},{begin:\"(\\\\b(with|overriding)\\\\s+)?\\\\b(function|procedure)\\\\s+\",end:\"(\\\\bis|\\\\bwith|\\\\brenames|\\\\)\\\\s*;)\",keywords:\"overriding function procedure with is renames return\",returnBegin:!0,contains:[n,{className:\"title\",begin:\"(\\\\bwith\\\\s+)?\\\\b(function|procedure)\\\\s+\",end:\"(\\\\(|\\\\s+|$)\",excludeBegin:!0,excludeEnd:!0,illegal:a},i,{className:\"type\",begin:\"\\\\breturn\\\\s+\",end:\"(\\\\s+|;|$)\",keywords:\"return\",excludeBegin:!0,excludeEnd:!0,endsParent:!0,illegal:a}]},{className:\"type\",begin:\"\\\\b(sub)?type\\\\s+\",end:\"\\\\s+\",keywords:\"type\",excludeBegin:!0,illegal:a},i]}};var le=function(e){var t={className:\"built_in\",begin:\"\\\\b(void|bool|int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|string|ref|array|double|float|auto|dictionary)\"},a={className:\"symbol\",begin:\"[a-zA-Z0-9_]+@\"},n={className:\"keyword\",begin:\"<\",end:\">\",contains:[t,a]};return t.contains=[n],a.contains=[n],{name:\"AngelScript\",aliases:[\"asc\"],keywords:\"for in|0 break continue while do|0 return if else case switch namespace is cast or and xor not get|0 in inout|10 out override set|0 private public const default|0 final shared external mixin|10 enum typedef funcdef this super import from interface abstract|0 try catch protected explicit property\",illegal:\"(^using\\\\s+[A-Za-z0-9_\\\\.]+;$|\\\\bfunction\\\\s*[^\\\\(])\",contains:[{className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE],relevance:0},{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},{className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE],relevance:0},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",begin:\"^\\\\s*\\\\[\",end:\"\\\\]\"},{beginKeywords:\"interface namespace\",end:/\\{/,illegal:\"[;.\\\\-]\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\"}]},{beginKeywords:\"class\",end:/\\{/,illegal:\"[;.\\\\-]\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\",contains:[{begin:\"[:,]\\\\s*\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\"}]}]}]},t,a,{className:\"literal\",begin:\"\\\\b(null|true|false)\"},{className:\"number\",relevance:0,begin:\"(-?)(\\\\b0[xXbBoOdD][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?f?|\\\\.\\\\d+f?)([eE][-+]?\\\\d+f?)?)\"}]}};var ce=function(e){const t={className:\"number\",begin:/\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?/};return{name:\"Apache config\",aliases:[\"apacheconf\"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:\"section\",begin:/<\\/?/,end:/>/,contains:[t,{className:\"number\",begin:/:\\d{1,5}/},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:\"attribute\",begin:/\\w+/,relevance:0,keywords:{nomarkup:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{end:/$/,relevance:0,keywords:{literal:\"on off all deny allow\"},contains:[{className:\"meta\",begin:/\\s\\[/,end:/\\]$/},{className:\"variable\",begin:/[\\$%]\\{/,end:/\\}/,contains:[\"self\",{className:\"number\",begin:/[$%]\\d+/}]},t,{className:\"number\",begin:/\\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\\S/}};function _e(e){return e?\"string\"==typeof e?e:e.source:null}function de(...e){return e.map((e=>_e(e))).join(\"\")}function me(...e){return\"(\"+e.map((e=>_e(e))).join(\"|\")+\")\"}var ue=function(e){const t=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),a={className:\"params\",begin:/\\(/,end:/\\)/,contains:[\"self\",e.C_NUMBER_MODE,t]},n=e.COMMENT(/--/,/$/),i=[n,e.COMMENT(/\\(\\*/,/\\*\\)/,{contains:[\"self\",n]}),e.HASH_COMMENT_MODE];return{name:\"AppleScript\",aliases:[\"osascript\"],keywords:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",literal:\"AppleScript false linefeed return pi quote result space tab true\",built_in:\"alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},contains:[t,e.C_NUMBER_MODE,{className:\"built_in\",begin:de(/\\b/,me(/clipboard info/,/the clipboard/,/info for/,/list (disks|folder)/,/mount volume/,/path to/,/(close|open for) access/,/(get|set) eof/,/current date/,/do shell script/,/get volume settings/,/random number/,/set volume/,/system attribute/,/system info/,/time to GMT/,/(load|run|store) script/,/scripting components/,/ASCII (character|number)/,/localized string/,/choose (application|color|file|file name|folder|from list|remote application|URL)/,/display (alert|dialog)/),/\\b/)},{className:\"built_in\",begin:/^\\s*return\\b/},{className:\"literal\",begin:/\\b(text item delimiters|current application|missing value)\\b/},{className:\"keyword\",begin:de(/\\b/,me(/apart from/,/aside from/,/instead of/,/out of/,/greater than/,/isn't|(doesn't|does not) (equal|come before|come after|contain)/,/(greater|less) than( or equal)?/,/(starts?|ends|begins?) with/,/contained by/,/comes (before|after)/,/a (ref|reference)/,/POSIX (file|path)/,/(date|time) string/,/quoted form/),/\\b/)},{beginKeywords:\"on\",illegal:/[${=;\\n]/,contains:[e.UNDERSCORE_TITLE_MODE,a]},...i],illegal:/\\/\\/|->|=>|\\[\\[/}};var pe=function(e){const t=\"[A-Za-z_][0-9A-Za-z_]*\",a={keyword:\"if for while var new function do return void else break\",literal:\"BackSlash DoubleQuote false ForwardSlash Infinity NaN NewLine null PI SingleQuote Tab TextFormatting true undefined\",built_in:\"Abs Acos Angle Attachments Area AreaGeodetic Asin Atan Atan2 Average Bearing Boolean Buffer BufferGeodetic Ceil Centroid Clip Console Constrain Contains Cos Count Crosses Cut Date DateAdd DateDiff Day Decode DefaultValue Dictionary Difference Disjoint Distance DistanceGeodetic Distinct DomainCode DomainName Equals Exp Extent Feature FeatureSet FeatureSetByAssociation FeatureSetById FeatureSetByPortalItem FeatureSetByRelationshipName FeatureSetByTitle FeatureSetByUrl Filter First Floor Geometry GroupBy Guid HasKey Hour IIf IndexOf Intersection Intersects IsEmpty IsNan IsSelfIntersecting Length LengthGeodetic Log Max Mean Millisecond Min Minute Month MultiPartToSinglePart Multipoint NextSequenceValue Now Number OrderBy Overlaps Point Polygon Polyline Portal Pow Random Relate Reverse RingIsClockWise Round Second SetGeometry Sin Sort Sqrt Stdev Sum SymmetricDifference Tan Text Timestamp Today ToLocal Top Touches ToUTC TrackCurrentTime TrackGeometryWindow TrackIndex TrackStartTime TrackWindow TypeOf Union UrlEncode Variance Weekday When Within Year \"},n={className:\"number\",variants:[{begin:\"\\\\b(0[bB][01]+)\"},{begin:\"\\\\b(0[oO][0-7]+)\"},{begin:e.C_NUMBER_RE}],relevance:0},i={className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\",keywords:a,contains:[]},r={className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,i]};i.contains=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,r,n,e.REGEXP_MODE];const s=i.contains.concat([e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]);return{name:\"ArcGIS Arcade\",keywords:a,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"symbol\",begin:\"\\\\$[datastore|feature|layer|map|measure|sourcefeature|sourcelayer|targetfeature|targetlayer|value|view]+\"},n,{begin:/[{,]\\s*/,relevance:0,contains:[{begin:t+\"\\\\s*:\",returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:t,relevance:0}]}]},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(return)\\\\b)\\\\s*\",keywords:\"return\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.REGEXP_MODE,{className:\"function\",begin:\"(\\\\(.*?\\\\)|\"+t+\")\\\\s*=>\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:t},{begin:/\\(\\s*\\)/},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,contains:s}]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/\\{/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,contains:s}],illegal:/\\[|%/},{begin:/\\$[(.]/}],illegal:/#(?!!)/}};function ge(e){return Ee(\"(\",e,\")?\")}function Ee(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Se=function(e){const t=\"boolean byte word String\",a=\"KeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD \",n=\"setup loop runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put\",i=\"DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW\",r=function(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),a=\"decltype\\\\(auto\\\\)\",n=\"[a-zA-Z_]\\\\w*::\",i=\"(decltype\\\\(auto\\\\)|\"+ge(n)+\"[a-zA-Z_]\\\\w*\"+ge(\"<[^<>]+>\")+\")\",r={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},s={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},o={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},l={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(s,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={className:\"title\",begin:ge(n)+e.IDENT_RE,relevance:0},_=ge(n)+e.IDENT_RE+\"\\\\s*\\\\(\",d={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"_Bool _Complex _Imaginary\",_relevance_hints:[\"asin\",\"atan2\",\"atan\",\"calloc\",\"ceil\",\"cosh\",\"cos\",\"exit\",\"exp\",\"fabs\",\"floor\",\"fmod\",\"fprintf\",\"fputs\",\"free\",\"frexp\",\"auto_ptr\",\"deque\",\"list\",\"queue\",\"stack\",\"vector\",\"map\",\"set\",\"pair\",\"bitset\",\"multiset\",\"multimap\",\"unordered_set\",\"fscanf\",\"future\",\"isalnum\",\"isalpha\",\"iscntrl\",\"isdigit\",\"isgraph\",\"islower\",\"isprint\",\"ispunct\",\"isspace\",\"isupper\",\"isxdigit\",\"tolower\",\"toupper\",\"labs\",\"ldexp\",\"log10\",\"log\",\"malloc\",\"realloc\",\"memchr\",\"memcmp\",\"memcpy\",\"memset\",\"modf\",\"pow\",\"printf\",\"putchar\",\"puts\",\"scanf\",\"sinh\",\"sin\",\"snprintf\",\"sprintf\",\"sqrt\",\"sscanf\",\"strcat\",\"strchr\",\"strcmp\",\"strcpy\",\"strcspn\",\"strlen\",\"strncat\",\"strncmp\",\"strncpy\",\"strpbrk\",\"strrchr\",\"strspn\",\"strstr\",\"tanh\",\"tan\",\"unordered_map\",\"unordered_multiset\",\"unordered_multimap\",\"priority_queue\",\"make_pair\",\"array\",\"shared_ptr\",\"abort\",\"terminate\",\"abs\",\"acos\",\"vfprintf\",\"vprintf\",\"vsprintf\",\"endl\",\"initializer_list\",\"unique_ptr\",\"complex\",\"imaginary\",\"std\",\"string\",\"wstring\",\"cin\",\"cout\",\"cerr\",\"clog\",\"stdin\",\"stdout\",\"stderr\",\"stringstream\",\"istringstream\",\"ostringstream\"],literal:\"true false nullptr NULL\"},m={className:\"function.dispatch\",relevance:0,keywords:d,begin:Ee(/\\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,e.IDENT_RE,(u=/\\s*\\(/,Ee(\"(?=\",u,\")\")))};var u;const p=[m,l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],g={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:d,contains:p.concat([{begin:/\\(/,end:/\\)/,keywords:d,contains:p.concat([\"self\"]),relevance:0}]),relevance:0},E={className:\"function\",begin:\"(\"+i+\"[\\\\*&\\\\s]+)+\"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:d,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:a,keywords:d,relevance:0},{begin:_,returnBegin:!0,contains:[c],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,o]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}]},r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:d,illegal:\"\",keywords:d,contains:[\"self\",r]},{begin:e.IDENT_RE+\"::\",keywords:d},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:l,strings:s,keywords:d}}}(e),s=r.keywords;return s.keyword+=\" \"+t,s.literal+=\" \"+i,s.built_in+=\" \"+a,s._+=\" \"+n,r.name=\"Arduino\",r.aliases=[\"ino\"],r.supersetOf=\"cpp\",r};var be=function(e){const t={variants:[e.COMMENT(\"^[ \\\\t]*(?=#)\",\"$\",{relevance:0,excludeBegin:!0}),e.COMMENT(\"[;@]\",\"$\",{relevance:0}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]};return{name:\"ARM Assembly\",case_insensitive:!0,aliases:[\"arm\"],keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,meta:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @\"},contains:[{className:\"keyword\",begin:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\\\s)\"},t,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",relevance:0},{className:\"title\",begin:\"\\\\|\",end:\"\\\\|\",illegal:\"\\\\n\",relevance:0},{className:\"number\",variants:[{begin:\"[#$=]?0x[0-9a-f]+\"},{begin:\"[#$=]?0b[01]+\"},{begin:\"[#$=]\\\\d+\"},{begin:\"\\\\b\\\\d+\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^[ \\\\t]*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{begin:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{begin:\"[=#]\\\\w+\"}],relevance:0}]}};function Te(e){return e?\"string\"==typeof e?e:e.source:null}function fe(e){return Ce(\"(?=\",e,\")\")}function Ce(...e){return e.map((e=>Te(e))).join(\"\")}function Ne(...e){return\"(\"+e.map((e=>Te(e))).join(\"|\")+\")\"}var Re=function(e){const t=Ce(/[A-Z_]/,Ce(\"(\",/[A-Z0-9_.-]*:/,\")?\"),/[A-Z0-9_.-]*/),a={className:\"symbol\",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},n={begin:/\\s/,contains:[{className:\"meta-keyword\",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\\n/}]},i=e.inherit(n,{begin:/\\(/,end:/\\)/}),r=e.inherit(e.APOS_STRING_MODE,{className:\"meta-string\"}),s=e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"}),o={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:\"HTML, XML\",aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\",\"wsf\",\"svg\"],case_insensitive:!0,contains:[{className:\"meta\",begin://,relevance:10,contains:[n,s,r,i,{begin:/\\[/,end:/\\]/,contains:[{className:\"meta\",begin://,contains:[n,i,s,r]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},a,{className:\"meta\",begin:/<\\?xml/,end:/\\?>/,relevance:10},{className:\"tag\",begin:/)/,end:/>/,keywords:{name:\"style\"},contains:[o],starts:{end:/<\\/style>/,returnEnd:!0,subLanguage:[\"css\",\"xml\"]}},{className:\"tag\",begin:/)/,end:/>/,keywords:{name:\"script\"},contains:[o],starts:{end:/<\\/script>/,returnEnd:!0,subLanguage:[\"javascript\",\"handlebars\",\"xml\"]}},{className:\"tag\",begin:/<>|<\\/>/},{className:\"tag\",begin:Ce(//,/>/,/\\s/)))),end:/\\/?>/,contains:[{className:\"name\",begin:t,relevance:0,starts:o}]},{className:\"tag\",begin:Ce(/<\\//,fe(Ce(t,/>/))),contains:[{className:\"name\",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}};function Oe(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var he=function(e){const t=[{className:\"strong\",begin:/\\*{2}([^\\n]+?)\\*{2}/},{className:\"strong\",begin:Oe(/\\*\\*/,/((\\*(?!\\*)|\\\\[^\\n]|[^*\\n\\\\])+\\n)+/,/(\\*(?!\\*)|\\\\[^\\n]|[^*\\n\\\\])*/,/\\*\\*/),relevance:0},{className:\"strong\",begin:/\\B\\*(\\S|\\S[^\\n]*?\\S)\\*(?!\\w)/},{className:\"strong\",begin:/\\*[^\\s]([^\\n]+\\n)+([^\\n]+)\\*/}],a=[{className:\"emphasis\",begin:/_{2}([^\\n]+?)_{2}/},{className:\"emphasis\",begin:Oe(/__/,/((_(?!_)|\\\\[^\\n]|[^_\\n\\\\])+\\n)+/,/(_(?!_)|\\\\[^\\n]|[^_\\n\\\\])*/,/__/),relevance:0},{className:\"emphasis\",begin:/\\b_(\\S|\\S[^\\n]*?\\S)_(?!\\w)/},{className:\"emphasis\",begin:/_[^\\s]([^\\n]+\\n)+([^\\n]+)_/},{className:\"emphasis\",begin:\"\\\\B'(?!['\\\\s])\",end:\"(\\\\n{2}|')\",contains:[{begin:\"\\\\\\\\'\\\\w\",relevance:0}],relevance:0}];return{name:\"AsciiDoc\",aliases:[\"adoc\"],contains:[e.COMMENT(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{relevance:10}),e.COMMENT(\"^//\",\"$\",{relevance:0}),{className:\"title\",begin:\"^\\\\.\\\\w.*$\"},{begin:\"^[=\\\\*]{4,}\\\\n\",end:\"\\\\n^[=\\\\*]{4,}$\",relevance:10},{className:\"section\",relevance:10,variants:[{begin:\"^(={1,6})[ \\t].+?([ \\t]\\\\1)?$\"},{begin:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\"}]},{className:\"meta\",begin:\"^:.+?:\",end:\"\\\\s\",excludeEnd:!0,relevance:10},{className:\"meta\",begin:\"^\\\\[.+?\\\\]$\",relevance:0},{className:\"quote\",begin:\"^_{4,}\\\\n\",end:\"\\\\n_{4,}$\",relevance:10},{className:\"code\",begin:\"^[\\\\-\\\\.]{4,}\\\\n\",end:\"\\\\n[\\\\-\\\\.]{4,}$\",relevance:10},{begin:\"^\\\\+{4,}\\\\n\",end:\"\\\\n\\\\+{4,}$\",contains:[{begin:\"<\",end:\">\",subLanguage:\"xml\",relevance:0}],relevance:10},{className:\"bullet\",begin:\"^(\\\\*+|-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{className:\"symbol\",begin:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",relevance:10},{begin:/\\\\[*_`]/},{begin:/\\\\\\\\\\*{2}[^\\n]*?\\*{2}/},{begin:/\\\\\\\\_{2}[^\\n]*_{2}/},{begin:/\\\\\\\\`{2}[^\\n]*`{2}/},{begin:/[:;}][*_`](?![*_`])/},...t,...a,{className:\"string\",variants:[{begin:\"``.+?''\"},{begin:\"`.+?'\"}]},{className:\"code\",begin:/`{2}/,end:/(\\n{2}|`{2})/},{className:\"code\",begin:\"(`.+?`|\\\\+.+?\\\\+)\",relevance:0},{className:\"code\",begin:\"^[ \\\\t]\",end:\"$\",relevance:0},{begin:\"^'{3,}[ \\\\t]*$\",relevance:10},{begin:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+?\\\\[[^[]*?\\\\]\",returnBegin:!0,contains:[{begin:\"(link|image:?):\",relevance:0},{className:\"link\",begin:\"\\\\w\",end:\"[^\\\\[]+\",relevance:0},{className:\"string\",begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0,relevance:0}],relevance:10}]}};function ve(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Ie=function(e){const t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",a=\"get set args call\";return{name:\"AspectJ\",keywords:t,illegal:/<\\/|#/,contains:[e.COMMENT(/\\/\\*\\*/,/\\*\\//,{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:/@[A-Za-z]+/}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"class\",beginKeywords:\"aspect\",end:/[{;=]/,excludeEnd:!0,illegal:/[:;\"\\[\\]]/,contains:[{beginKeywords:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UNDERSCORE_TITLE_MODE,{begin:/\\([^\\)]*/,end:/[)]+/,keywords:t+\" \"+a,excludeEnd:!1}]},{className:\"class\",beginKeywords:\"class interface\",end:/[{;=]/,excludeEnd:!0,relevance:0,keywords:\"class interface\",illegal:/[:\"\\[\\]]/,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"pointcut after before around throwing returning\",end:/[)]/,excludeEnd:!1,illegal:/[\"\\[\\]]/,contains:[{begin:ve(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),returnBegin:!0,contains:[e.UNDERSCORE_TITLE_MODE]}]},{begin:/[:]/,returnBegin:!0,end:/[{;]/,relevance:0,excludeEnd:!1,keywords:t,illegal:/[\"\\[\\]]/,contains:[{begin:ve(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),keywords:t+\" \"+a,relevance:0},e.QUOTE_STRING_MODE]},{beginKeywords:\"new throw\",relevance:0},{className:\"function\",begin:/\\w+ +\\w+(\\.\\w+)?\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,returnBegin:!0,end:/[{;=]/,keywords:t,excludeEnd:!0,contains:[{begin:ve(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"params\",begin:/\\(/,end:/\\)/,relevance:0,keywords:t,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_NUMBER_MODE,{className:\"meta\",begin:/@[A-Za-z]+/}]}};var Ae=function(e){const t={begin:\"`[\\\\s\\\\S]\"};return{name:\"AutoHotkey\",case_insensitive:!0,aliases:[\"ahk\"],keywords:{keyword:\"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group\",literal:\"true false NOT AND OR\",built_in:\"ComSpec Clipboard ClipboardAll ErrorLevel\"},contains:[t,e.inherit(e.QUOTE_STRING_MODE,{contains:[t]}),e.COMMENT(\";\",\"$\",{relevance:0}),e.C_BLOCK_COMMENT_MODE,{className:\"number\",begin:e.NUMBER_RE,relevance:0},{className:\"variable\",begin:\"%[a-zA-Z0-9#_$@]+%\"},{className:\"built_in\",begin:\"^\\\\s*\\\\w+\\\\s*(,|%)\"},{className:\"title\",variants:[{begin:'^[^\\\\n\";]+::(?!=)'},{begin:'^[^\\\\n\";]+:(?!=)',relevance:0}]},{className:\"meta\",begin:\"^\\\\s*#\\\\w+\",end:\"$\",relevance:0},{className:\"built_in\",begin:\"A_[a-zA-Z0-9]+\"},{begin:\",\\\\s*,\"}]}};var ye=function(e){const t={variants:[e.COMMENT(\";\",\"$\",{relevance:0}),e.COMMENT(\"#cs\",\"#ce\"),e.COMMENT(\"#comments-start\",\"#comments-end\")]},a={begin:\"\\\\$[A-z0-9_]+\"},n={className:\"string\",variants:[{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},i={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]};return{name:\"AutoIt\",case_insensitive:!0,illegal:/\\/\\*/,keywords:{keyword:\"ByRef Case Const ContinueCase ContinueLoop Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",built_in:\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive\",literal:\"True False And Null Not Or Default\"},contains:[t,a,n,i,{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":[\"EndRegion\",\"forcedef\",\"forceref\",\"ignorefunc\",\"include\",\"include-once\",\"NoTrayIcon\",\"OnAutoItStartRegister\",\"pragma\",\"Region\",\"RequireAdmin\",\"Tidy_Off\",\"Tidy_On\",\"Tidy_Parameters\"]},contains:[{begin:/\\\\\\n/,relevance:0},{beginKeywords:\"include\",keywords:{\"meta-keyword\":\"include\"},end:\"$\",contains:[n,{className:\"meta-string\",variants:[{begin:\"<\",end:\">\"},{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]}]},n,t]},{className:\"symbol\",begin:\"@[A-z0-9_]+\"},{className:\"function\",beginKeywords:\"Func\",end:\"$\",illegal:\"\\\\$|\\\\[|%\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:[a,n,i]}]}]}};var De=function(e){return{name:\"AVR Assembly\",case_insensitive:!0,keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",meta:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT(\";\",\"$\",{relevance:0}),e.C_NUMBER_MODE,e.BINARY_NUMBER_MODE,{className:\"number\",begin:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",illegal:\"[^\\\\\\\\][^']\"},{className:\"symbol\",begin:\"^[A-Za-z0-9_.$]+:\"},{className:\"meta\",begin:\"#\",end:\"$\"},{className:\"subst\",begin:\"@[0-9]+\"}]}};var Me=function(e){return{name:\"Awk\",keywords:{keyword:\"BEGIN END if else while do for in break continue delete next nextfile function func exit|10\"},contains:[{className:\"variable\",variants:[{begin:/\\$[\\w\\d#@][\\w\\d_]*/},{begin:/\\$\\{(.*?)\\}/}]},{className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,relevance:10},{begin:/(u|b)?r?\"\"\"/,end:/\"\"\"/,relevance:10},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)\"/,end:/\"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)\"/,end:/\"/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},e.REGEXP_MODE,e.HASH_COMMENT_MODE,e.NUMBER_MODE]}};var Le=function(e){return{name:\"X++\",aliases:[\"x++\"],keywords:{keyword:[\"abstract\",\"as\",\"asc\",\"avg\",\"break\",\"breakpoint\",\"by\",\"byref\",\"case\",\"catch\",\"changecompany\",\"class\",\"client\",\"client\",\"common\",\"const\",\"continue\",\"count\",\"crosscompany\",\"delegate\",\"delete_from\",\"desc\",\"display\",\"div\",\"do\",\"edit\",\"else\",\"eventhandler\",\"exists\",\"extends\",\"final\",\"finally\",\"firstfast\",\"firstonly\",\"firstonly1\",\"firstonly10\",\"firstonly100\",\"firstonly1000\",\"flush\",\"for\",\"forceliterals\",\"forcenestedloop\",\"forceplaceholders\",\"forceselectorder\",\"forupdate\",\"from\",\"generateonly\",\"group\",\"hint\",\"if\",\"implements\",\"in\",\"index\",\"insert_recordset\",\"interface\",\"internal\",\"is\",\"join\",\"like\",\"maxof\",\"minof\",\"mod\",\"namespace\",\"new\",\"next\",\"nofetch\",\"notexists\",\"optimisticlock\",\"order\",\"outer\",\"pessimisticlock\",\"print\",\"private\",\"protected\",\"public\",\"readonly\",\"repeatableread\",\"retry\",\"return\",\"reverse\",\"select\",\"server\",\"setting\",\"static\",\"sum\",\"super\",\"switch\",\"this\",\"throw\",\"try\",\"ttsabort\",\"ttsbegin\",\"ttscommit\",\"unchecked\",\"update_recordset\",\"using\",\"validtimestate\",\"void\",\"where\",\"while\"],built_in:[\"anytype\",\"boolean\",\"byte\",\"char\",\"container\",\"date\",\"double\",\"enum\",\"guid\",\"int\",\"int64\",\"long\",\"real\",\"short\",\"str\",\"utcdatetime\",\"var\"],literal:[\"default\",\"false\",\"null\",\"true\"]},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"#\",end:\"$\"},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,illegal:\":\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]}]}};function xe(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var we=function(e){const t={},a={begin:/\\$\\{/,end:/\\}/,contains:[\"self\",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:\"variable\",variants:[{begin:xe(/\\$[\\w\\d#@][\\w\\d_]*/,\"(?![\\\\w\\\\d])(?![$])\")},a]});const n={className:\"subst\",begin:/\\$\\(/,end:/\\)/,contains:[e.BACKSLASH_ESCAPE]},i={begin:/<<-?\\s*(?=\\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,className:\"string\"})]}},r={className:\"string\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,t,n]};n.contains.push(r);const s={begin:/\\$\\(\\(/,end:/\\)\\)/,contains:[{begin:/\\d+#[0-9a-f]+/,className:\"number\"},e.NUMBER_MODE,t]},o=e.SHEBANG({binary:`(${[\"fish\",\"bash\",\"zsh\",\"sh\",\"csh\",\"ksh\",\"tcsh\",\"dash\",\"scsh\"].join(\"|\")})`,relevance:10}),l={className:\"function\",begin:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\\w[\\w\\d_]*/})],relevance:0};return{name:\"Bash\",aliases:[\"sh\",\"zsh\"],keywords:{$pattern:/\\b[a-z._-]+\\b/,keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\"},contains:[o,e.SHEBANG(),l,s,e.HASH_COMMENT_MODE,i,r,{className:\"\",begin:/\\\\\"/},{className:\"string\",begin:/'/,end:/'/},t]}};var Pe=function(e){return{name:\"BASIC\",case_insensitive:!0,illegal:\"^.\",keywords:{$pattern:\"[a-zA-Z][a-zA-Z0-9_$%!#]*\",keyword:\"ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR\"},contains:[e.QUOTE_STRING_MODE,e.COMMENT(\"REM\",\"$\",{relevance:10}),e.COMMENT(\"'\",\"$\",{relevance:0}),{className:\"symbol\",begin:\"^[0-9]+ \",relevance:10},{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?([edED]\\\\d+)?[#!]?\",relevance:0},{className:\"number\",begin:\"(&[hH][0-9a-fA-F]{1,4})\"},{className:\"number\",begin:\"(&[oO][0-7]{1,6})\"}]}};var ke=function(e){return{name:\"Backus–Naur Form\",contains:[{className:\"attribute\",begin://},{begin:/::=/,end:/$/,contains:[{begin://},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}]}};var Ue=function(e){const t={className:\"literal\",begin:/[+-]/,relevance:0};return{name:\"Brainfuck\",aliases:[\"bf\"],contains:[e.COMMENT(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{returnEnd:!0,relevance:0}),{className:\"title\",begin:\"[\\\\[\\\\]]\",relevance:0},{className:\"string\",begin:\"[\\\\.,]\",relevance:0},{begin:/(?:\\+\\+|--)/,contains:[t]},t]}};function Fe(e){return Be(\"(\",e,\")?\")}function Be(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Ge=function(e){const t=function(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),a=\"decltype\\\\(auto\\\\)\",n=\"[a-zA-Z_]\\\\w*::\",i=\"(decltype\\\\(auto\\\\)|\"+Fe(n)+\"[a-zA-Z_]\\\\w*\"+Fe(\"<[^<>]+>\")+\")\",r={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},s={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},o={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},l={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(s,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={className:\"title\",begin:Fe(n)+e.IDENT_RE,relevance:0},_=Fe(n)+e.IDENT_RE+\"\\\\s*\\\\(\",d={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"_Bool _Complex _Imaginary\",_relevance_hints:[\"asin\",\"atan2\",\"atan\",\"calloc\",\"ceil\",\"cosh\",\"cos\",\"exit\",\"exp\",\"fabs\",\"floor\",\"fmod\",\"fprintf\",\"fputs\",\"free\",\"frexp\",\"auto_ptr\",\"deque\",\"list\",\"queue\",\"stack\",\"vector\",\"map\",\"set\",\"pair\",\"bitset\",\"multiset\",\"multimap\",\"unordered_set\",\"fscanf\",\"future\",\"isalnum\",\"isalpha\",\"iscntrl\",\"isdigit\",\"isgraph\",\"islower\",\"isprint\",\"ispunct\",\"isspace\",\"isupper\",\"isxdigit\",\"tolower\",\"toupper\",\"labs\",\"ldexp\",\"log10\",\"log\",\"malloc\",\"realloc\",\"memchr\",\"memcmp\",\"memcpy\",\"memset\",\"modf\",\"pow\",\"printf\",\"putchar\",\"puts\",\"scanf\",\"sinh\",\"sin\",\"snprintf\",\"sprintf\",\"sqrt\",\"sscanf\",\"strcat\",\"strchr\",\"strcmp\",\"strcpy\",\"strcspn\",\"strlen\",\"strncat\",\"strncmp\",\"strncpy\",\"strpbrk\",\"strrchr\",\"strspn\",\"strstr\",\"tanh\",\"tan\",\"unordered_map\",\"unordered_multiset\",\"unordered_multimap\",\"priority_queue\",\"make_pair\",\"array\",\"shared_ptr\",\"abort\",\"terminate\",\"abs\",\"acos\",\"vfprintf\",\"vprintf\",\"vsprintf\",\"endl\",\"initializer_list\",\"unique_ptr\",\"complex\",\"imaginary\",\"std\",\"string\",\"wstring\",\"cin\",\"cout\",\"cerr\",\"clog\",\"stdin\",\"stdout\",\"stderr\",\"stringstream\",\"istringstream\",\"ostringstream\"],literal:\"true false nullptr NULL\"},m={className:\"function.dispatch\",relevance:0,keywords:d,begin:Be(/\\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,e.IDENT_RE,(u=/\\s*\\(/,Be(\"(?=\",u,\")\")))};var u;const p=[m,l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],g={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:d,contains:p.concat([{begin:/\\(/,end:/\\)/,keywords:d,contains:p.concat([\"self\"]),relevance:0}]),relevance:0},E={className:\"function\",begin:\"(\"+i+\"[\\\\*&\\\\s]+)+\"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:d,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:a,keywords:d,relevance:0},{begin:_,returnBegin:!0,contains:[c],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,o]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}]},r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:d,illegal:\"\",keywords:d,contains:[\"self\",r]},{begin:e.IDENT_RE+\"::\",keywords:d},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:l,strings:s,keywords:d}}}(e);return t.disableAutodetect=!0,t.aliases=[],e.getLanguage(\"c\")||t.aliases.push(\"c\",\"h\"),e.getLanguage(\"cpp\")||t.aliases.push(\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"),t};function Ye(e){return function(...e){return e.map((e=>function(e){return e?\"string\"==typeof e?e:e.source:null}(e))).join(\"\")}(\"(\",e,\")?\")}var He=function(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),a=\"decltype\\\\(auto\\\\)\",n=\"[a-zA-Z_]\\\\w*::\",i=\"(decltype\\\\(auto\\\\)|\"+Ye(n)+\"[a-zA-Z_]\\\\w*\"+Ye(\"<[^<>]+>\")+\")\",r={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},s={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},o={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},l={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(s,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={className:\"title\",begin:Ye(n)+e.IDENT_RE,relevance:0},_=Ye(n)+e.IDENT_RE+\"\\\\s*\\\\(\",d={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary\",literal:\"true false nullptr NULL\"},m=[l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],u={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:d,contains:m.concat([{begin:/\\(/,end:/\\)/,keywords:d,contains:m.concat([\"self\"]),relevance:0}]),relevance:0},p={className:\"function\",begin:\"(\"+i+\"[\\\\*&\\\\s]+)+\"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:d,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:a,keywords:d,relevance:0},{begin:_,returnBegin:!0,contains:[c],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}]},r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:\"C\",aliases:[\"h\"],keywords:d,disableAutodetect:!0,illegal:\"\",keywords:d,contains:[\"self\",r]},{begin:e.IDENT_RE+\"::\",keywords:d},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:l,strings:s,keywords:d}}};var Ve=function(e){const t=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",a=[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\{/,/\\}/,{relevance:0}),e.COMMENT(/\\(\\*/,/\\*\\)/,{relevance:10})],n={className:\"string\",begin:/'/,end:/'/,contains:[{begin:/''/}]},i={className:\"string\",begin:/(#\\d+)+/},r={className:\"function\",beginKeywords:\"procedure\",end:/[:;]/,keywords:\"procedure|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:t,contains:[n,i]}].concat(a)},s={className:\"class\",begin:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",returnBegin:!0,contains:[e.TITLE_MODE,r]};return{name:\"C/AL\",case_insensitive:!0,keywords:{keyword:t,literal:\"false true\"},illegal:/\\/\\*/,contains:[n,i,{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",relevance:0},{className:\"string\",begin:'\"',end:'\"'},e.NUMBER_MODE,s,r]}};var qe=function(e){return{name:\"Cap’n Proto\",aliases:[\"capnp\"],keywords:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.HASH_COMMENT_MODE,{className:\"meta\",begin:/@0x[\\w\\d]{16};/,illegal:/\\n/},{className:\"symbol\",begin:/@\\d+\\b/},{className:\"class\",beginKeywords:\"struct enum\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:\"class\",beginKeywords:\"interface\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]}]}};var ze=function(e){const t=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",a={className:\"subst\",excludeBegin:!0,excludeEnd:!0,begin:/``/,end:/``/,keywords:t,relevance:10},n=[{className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:10},{className:\"string\",begin:'\"',end:'\"',contains:[a]},{className:\"string\",begin:\"'\",end:\"'\"},{className:\"number\",begin:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",relevance:0}];return a.contains=n,{name:\"Ceylon\",keywords:{keyword:t+\" shared abstract formal default actual variable late native deprecated final sealed annotation suppressWarnings small\",meta:\"doc by license see throws tagged\"},illegal:\"\\\\$[^01]|#[^0-9a-fA-F]\",contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),{className:\"meta\",begin:'@[a-z]\\\\w*(?::\"[^\"]*\")?'}].concat(n)}};var $e=function(e){return{name:\"Clean\",aliases:[\"icl\",\"dcl\"],keywords:{keyword:\"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr\",built_in:\"Int Real Char Bool\",literal:\"True False\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{begin:\"->|<-[|:]?|#!?|>>=|\\\\{\\\\||\\\\|\\\\}|:==|=:|<>\"}]}};var We=function(e){const t=\"a-zA-Z_\\\\-!.?+*=<>&#'\",a=\"[\"+t+\"][\"+t+\"0-9/;:]*\",n=\"def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord\",i={$pattern:a,\"builtin-name\":n+\" cond apply if-not if-let if not not= =|0 <|0 >|0 <=|0 >=|0 ==|0 +|0 /|0 *|0 -|0 rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy first rest cons cast coll last butlast sigs reify second ffirst fnext nfirst nnext meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r={begin:a,relevance:0},s={className:\"number\",begin:\"[-+]?\\\\d+(\\\\.\\\\d+)?\",relevance:0},o=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),l=e.COMMENT(\";\",\"$\",{relevance:0}),c={className:\"literal\",begin:/\\b(true|false|nil)\\b/},_={begin:\"[\\\\[\\\\{]\",end:\"[\\\\]\\\\}]\"},d={className:\"comment\",begin:\"\\\\^\"+a},m=e.COMMENT(\"\\\\^\\\\{\",\"\\\\}\"),u={className:\"symbol\",begin:\"[:]{1,2}\"+a},p={begin:\"\\\\(\",end:\"\\\\)\"},g={endsWithParent:!0,relevance:0},E={keywords:i,className:\"name\",begin:a,relevance:0,starts:g},S=[p,o,d,m,l,u,_,s,c,r],b={beginKeywords:n,lexemes:a,end:'(\\\\[|#|\\\\d|\"|:|\\\\{|\\\\)|\\\\(|$)',contains:[{className:\"title\",begin:a,relevance:0,excludeEnd:!0,endsParent:!0}].concat(S)};return p.contains=[e.COMMENT(\"comment\",\"\"),b,E,g],g.contains=S,_.contains=S,m.contains=[_],{name:\"Clojure\",aliases:[\"clj\"],illegal:/\\S/,contains:[p,o,d,m,l,u,_,s,c]}};var Qe=function(e){return{name:\"Clojure REPL\",contains:[{className:\"meta\",begin:/^([\\w.-]+|\\s*#_)?=>/,starts:{end:/$/,subLanguage:\"clojure\"}}]}};var Ke=function(e){return{name:\"CMake\",aliases:[\"cmake.in\"],case_insensitive:!0,keywords:{keyword:\"break cmake_host_system_information cmake_minimum_required cmake_parse_arguments cmake_policy configure_file continue elseif else endforeach endfunction endif endmacro endwhile execute_process file find_file find_library find_package find_path find_program foreach function get_cmake_property get_directory_property get_filename_component get_property if include include_guard list macro mark_as_advanced math message option return separate_arguments set_directory_properties set_property set site_name string unset variable_watch while add_compile_definitions add_compile_options add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_link_options add_subdirectory add_test aux_source_directory build_command create_test_sourcelist define_property enable_language enable_testing export fltk_wrap_ui get_source_file_property get_target_property get_test_property include_directories include_external_msproject include_regular_expression install link_directories link_libraries load_cache project qt_wrap_cpp qt_wrap_ui remove_definitions set_source_files_properties set_target_properties set_tests_properties source_group target_compile_definitions target_compile_features target_compile_options target_include_directories target_link_directories target_link_libraries target_link_options target_sources try_compile try_run ctest_build ctest_configure ctest_coverage ctest_empty_binary_directory ctest_memcheck ctest_read_custom_files ctest_run_script ctest_sleep ctest_start ctest_submit ctest_test ctest_update ctest_upload build_name exec_program export_library_dependencies install_files install_programs install_targets load_command make_directory output_required_files remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or not command policy target test exists is_newer_than is_directory is_symlink is_absolute matches less greater equal less_equal greater_equal strless strgreater strequal strless_equal strgreater_equal version_less version_greater version_equal version_less_equal version_greater_equal in_list defined\"},contains:[{className:\"variable\",begin:/\\$\\{/,end:/\\}/},e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE]}};const je=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],Xe=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],Ze=[].concat([\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\",\"BigInt64Array\",\"BigUint64Array\",\"BigInt\"],[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"]);var Je=function(e){const t={keyword:je.concat([\"then\",\"unless\",\"until\",\"loop\",\"by\",\"when\",\"and\",\"or\",\"is\",\"isnt\",\"not\"]).filter((a=[\"var\",\"const\",\"let\",\"function\",\"static\"],e=>!a.includes(e))),literal:Xe.concat([\"yes\",\"no\",\"on\",\"off\"]),built_in:Ze.concat([\"npm\",\"print\"])};var a;const n=\"[A-Za-z$_][0-9A-Za-z$_]*\",i={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:t},r=[e.BINARY_NUMBER_MODE,e.inherit(e.C_NUMBER_MODE,{starts:{end:\"(\\\\s*/)?\",relevance:0}}),{className:\"string\",variants:[{begin:/'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,i]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,i]}]},{className:\"regexp\",variants:[{begin:\"///\",end:\"///\",contains:[i,e.HASH_COMMENT_MODE]},{begin:\"//[gim]{0,3}(?=\\\\W)\",relevance:0},{begin:/\\/(?![ *]).*?(?![\\\\]).\\/[gim]{0,3}(?=\\W)/}]},{begin:\"@\"+n},{subLanguage:\"javascript\",excludeBegin:!0,excludeEnd:!0,variants:[{begin:\"```\",end:\"```\"},{begin:\"`\",end:\"`\"}]}];i.contains=r;const s=e.inherit(e.TITLE_MODE,{begin:n}),o=\"(\\\\(.*\\\\)\\\\s*)?\\\\B[-=]>\",l={className:\"params\",begin:\"\\\\([^\\\\(]\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:t,contains:[\"self\"].concat(r)}]};return{name:\"CoffeeScript\",aliases:[\"coffee\",\"cson\",\"iced\"],keywords:t,illegal:/\\/\\*/,contains:r.concat([e.COMMENT(\"###\",\"###\"),e.HASH_COMMENT_MODE,{className:\"function\",begin:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+o,end:\"[-=]>\",returnBegin:!0,contains:[s,l]},{begin:/[:\\(,=]\\s*/,relevance:0,contains:[{className:\"function\",begin:o,end:\"[-=]>\",returnBegin:!0,contains:[l]}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[s]},s]},{begin:n+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}};var et=function(e){return{name:\"Coq\",keywords:{keyword:\"_|0 as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies Dependent Derive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with\",built_in:\"abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with\"},contains:[e.QUOTE_STRING_MODE,e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),e.C_NUMBER_MODE,{className:\"type\",excludeBegin:!0,begin:\"\\\\|\\\\s*\",end:\"\\\\w+\"},{begin:/[-=]>/}]}};var tt=function(e){return{name:\"Caché Object Script\",case_insensitive:!0,aliases:[\"cls\"],keywords:\"property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii\",contains:[{className:\"number\",begin:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)\",relevance:0},{className:\"string\",variants:[{begin:'\"',end:'\"',contains:[{begin:'\"\"',relevance:0}]}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"comment\",begin:/;/,end:\"$\",relevance:0},{className:\"built_in\",begin:/(?:\\$\\$?|\\.\\.)\\^?[a-zA-Z]+/},{className:\"built_in\",begin:/\\$\\$\\$[a-zA-Z]+/},{className:\"built_in\",begin:/%[a-z]+(?:\\.[a-z]+)*/},{className:\"symbol\",begin:/\\^%?[a-zA-Z][\\w]*/},{className:\"keyword\",begin:/##class|##super|#define|#dim/},{begin:/&sql\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,subLanguage:\"sql\"},{begin:/&(js|jscript|javascript)/,excludeBegin:!0,excludeEnd:!0,subLanguage:\"javascript\"},{begin:/&html<\\s*\\s*>/,subLanguage:\"xml\"}]}};function at(e){return nt(\"(\",e,\")?\")}function nt(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var it=function(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),a=\"decltype\\\\(auto\\\\)\",n=\"[a-zA-Z_]\\\\w*::\",i=\"(decltype\\\\(auto\\\\)|\"+at(n)+\"[a-zA-Z_]\\\\w*\"+at(\"<[^<>]+>\")+\")\",r={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},s={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},o={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},l={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(s,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={className:\"title\",begin:at(n)+e.IDENT_RE,relevance:0},_=at(n)+e.IDENT_RE+\"\\\\s*\\\\(\",d={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"_Bool _Complex _Imaginary\",_relevance_hints:[\"asin\",\"atan2\",\"atan\",\"calloc\",\"ceil\",\"cosh\",\"cos\",\"exit\",\"exp\",\"fabs\",\"floor\",\"fmod\",\"fprintf\",\"fputs\",\"free\",\"frexp\",\"auto_ptr\",\"deque\",\"list\",\"queue\",\"stack\",\"vector\",\"map\",\"set\",\"pair\",\"bitset\",\"multiset\",\"multimap\",\"unordered_set\",\"fscanf\",\"future\",\"isalnum\",\"isalpha\",\"iscntrl\",\"isdigit\",\"isgraph\",\"islower\",\"isprint\",\"ispunct\",\"isspace\",\"isupper\",\"isxdigit\",\"tolower\",\"toupper\",\"labs\",\"ldexp\",\"log10\",\"log\",\"malloc\",\"realloc\",\"memchr\",\"memcmp\",\"memcpy\",\"memset\",\"modf\",\"pow\",\"printf\",\"putchar\",\"puts\",\"scanf\",\"sinh\",\"sin\",\"snprintf\",\"sprintf\",\"sqrt\",\"sscanf\",\"strcat\",\"strchr\",\"strcmp\",\"strcpy\",\"strcspn\",\"strlen\",\"strncat\",\"strncmp\",\"strncpy\",\"strpbrk\",\"strrchr\",\"strspn\",\"strstr\",\"tanh\",\"tan\",\"unordered_map\",\"unordered_multiset\",\"unordered_multimap\",\"priority_queue\",\"make_pair\",\"array\",\"shared_ptr\",\"abort\",\"terminate\",\"abs\",\"acos\",\"vfprintf\",\"vprintf\",\"vsprintf\",\"endl\",\"initializer_list\",\"unique_ptr\",\"complex\",\"imaginary\",\"std\",\"string\",\"wstring\",\"cin\",\"cout\",\"cerr\",\"clog\",\"stdin\",\"stdout\",\"stderr\",\"stringstream\",\"istringstream\",\"ostringstream\"],literal:\"true false nullptr NULL\"},m={className:\"function.dispatch\",relevance:0,keywords:d,begin:nt(/\\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,e.IDENT_RE,(u=/\\s*\\(/,nt(\"(?=\",u,\")\")))};var u;const p=[m,l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],g={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:d,contains:p.concat([{begin:/\\(/,end:/\\)/,keywords:d,contains:p.concat([\"self\"]),relevance:0}]),relevance:0},E={className:\"function\",begin:\"(\"+i+\"[\\\\*&\\\\s]+)+\"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:d,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:a,keywords:d,relevance:0},{begin:_,returnBegin:!0,contains:[c],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,o]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\\(/,end:/\\)/,keywords:d,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}]},r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:d,illegal:\"\",keywords:d,contains:[\"self\",r]},{begin:e.IDENT_RE+\"::\",keywords:d},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:l,strings:s,keywords:d}}};var rt=function(e){const t=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\";return{name:\"crmsh\",aliases:[\"crm\",\"pcmk\"],case_insensitive:!0,keywords:{keyword:\"params meta operations op rule attributes utilization read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\ number string\",literal:\"Master Started Slave Stopped start promote demote stop monitor true false\"},contains:[e.HASH_COMMENT_MODE,{beginKeywords:\"node\",starts:{end:\"\\\\s*([\\\\w_-]+:)?\",starts:{className:\"title\",end:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{beginKeywords:\"primitive rsc_template\",starts:{className:\"title\",end:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{end:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{begin:\"\\\\b(\"+t.split(\" \").join(\"|\")+\")\\\\s+\",keywords:t,starts:{className:\"title\",end:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{beginKeywords:\"property rsc_defaults op_defaults\",starts:{className:\"title\",end:\"\\\\s*([\\\\w_-]+:)?\"}},e.QUOTE_STRING_MODE,{className:\"meta\",begin:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",relevance:0},{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",relevance:0},{className:\"literal\",begin:\"[-]?(infinity|inf)\",relevance:0},{className:\"attr\",begin:/([A-Za-z$_#][\\w_-]+)=/,relevance:0},{className:\"tag\",begin:\"\",relevance:0}]}};var st=function(e){const t=\"(_?[ui](8|16|32|64|128))?\",a=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|[=!]~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~|]|//|//=|&[-+*]=?|&\\\\*\\\\*|\\\\[\\\\][=?]?\",n=\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|!)?\",i={$pattern:\"[a-zA-Z_]\\\\w*[!?=]?\",keyword:\"abstract alias annotation as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until verbatim when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__\",literal:\"false nil true\"},r={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:i},s={className:\"template-variable\",variants:[{begin:\"\\\\{\\\\{\",end:\"\\\\}\\\\}\"},{begin:\"\\\\{%\",end:\"%\\\\}\"}],keywords:i};function o(e,t){const a=[{begin:e,end:t}];return a[0].contains=a,a}const l={className:\"string\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/`/,end:/`/},{begin:\"%[Qwi]?\\\\(\",end:\"\\\\)\",contains:o(\"\\\\(\",\"\\\\)\")},{begin:\"%[Qwi]?\\\\[\",end:\"\\\\]\",contains:o(\"\\\\[\",\"\\\\]\")},{begin:\"%[Qwi]?\\\\{\",end:/\\}/,contains:o(/\\{/,/\\}/)},{begin:\"%[Qwi]?<\",end:\">\",contains:o(\"<\",\">\")},{begin:\"%[Qwi]?\\\\|\",end:\"\\\\|\"},{begin:/<<-\\w+$/,end:/^\\s*\\w+$/}],relevance:0},c={className:\"string\",variants:[{begin:\"%q\\\\(\",end:\"\\\\)\",contains:o(\"\\\\(\",\"\\\\)\")},{begin:\"%q\\\\[\",end:\"\\\\]\",contains:o(\"\\\\[\",\"\\\\]\")},{begin:\"%q\\\\{\",end:/\\}/,contains:o(/\\{/,/\\}/)},{begin:\"%q<\",end:\">\",contains:o(\"<\",\">\")},{begin:\"%q\\\\|\",end:\"\\\\|\"},{begin:/<<-'\\w+'$/,end:/^\\s*\\w+$/}],relevance:0},_={begin:\"(?!%\\\\})(\"+e.RE_STARTERS_RE+\"|\\\\n|\\\\b(case|if|select|unless|until|when|while)\\\\b)\\\\s*\",keywords:\"case if select unless until when while\",contains:[{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:\"//[a-z]*\",relevance:0},{begin:\"/(?!\\\\/)\",end:\"/[a-z]*\"}]}],relevance:0},d=[s,l,c,{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:\"%r\\\\(\",end:\"\\\\)\",contains:o(\"\\\\(\",\"\\\\)\")},{begin:\"%r\\\\[\",end:\"\\\\]\",contains:o(\"\\\\[\",\"\\\\]\")},{begin:\"%r\\\\{\",end:/\\}/,contains:o(/\\{/,/\\}/)},{begin:\"%r<\",end:\">\",contains:o(\"<\",\">\")},{begin:\"%r\\\\|\",end:\"\\\\|\"}],relevance:0},_,{className:\"meta\",begin:\"@\\\\[\",end:\"\\\\]\",contains:[e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"})]},e.HASH_COMMENT_MODE,{className:\"class\",beginKeywords:\"class module struct\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:n}),{begin:\"<\"}]},{className:\"class\",beginKeywords:\"lib enum union\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:n})]},{beginKeywords:\"annotation\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:n})],relevance:2},{className:\"function\",beginKeywords:\"def\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:a,endsParent:!0})]},{className:\"function\",beginKeywords:\"fun macro\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:a,endsParent:!0})],relevance:2},{className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"(!|\\\\?)?:\",relevance:0},{className:\"symbol\",begin:\":\",contains:[l,{begin:a}],relevance:0},{className:\"number\",variants:[{begin:\"\\\\b0b([01_]+)\"+t},{begin:\"\\\\b0o([0-7_]+)\"+t},{begin:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{begin:\"\\\\b([1-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9][0-9_]*)?([eE]_?[-+]?[0-9_]*)?(_?f(32|64))?(?!_)\"},{begin:\"\\\\b([1-9][0-9_]*|0)\"+t}],relevance:0}];return r.contains=d,s.contains=d.slice(1),{name:\"Crystal\",aliases:[\"cr\"],keywords:i,contains:d}};var ot=function(e){const t={keyword:[\"abstract\",\"as\",\"base\",\"break\",\"case\",\"class\",\"const\",\"continue\",\"do\",\"else\",\"event\",\"explicit\",\"extern\",\"finally\",\"fixed\",\"for\",\"foreach\",\"goto\",\"if\",\"implicit\",\"in\",\"interface\",\"internal\",\"is\",\"lock\",\"namespace\",\"new\",\"operator\",\"out\",\"override\",\"params\",\"private\",\"protected\",\"public\",\"readonly\",\"record\",\"ref\",\"return\",\"sealed\",\"sizeof\",\"stackalloc\",\"static\",\"struct\",\"switch\",\"this\",\"throw\",\"try\",\"typeof\",\"unchecked\",\"unsafe\",\"using\",\"virtual\",\"void\",\"volatile\",\"while\"].concat([\"add\",\"alias\",\"and\",\"ascending\",\"async\",\"await\",\"by\",\"descending\",\"equals\",\"from\",\"get\",\"global\",\"group\",\"init\",\"into\",\"join\",\"let\",\"nameof\",\"not\",\"notnull\",\"on\",\"or\",\"orderby\",\"partial\",\"remove\",\"select\",\"set\",\"unmanaged\",\"value|0\",\"var\",\"when\",\"where\",\"with\",\"yield\"]),built_in:[\"bool\",\"byte\",\"char\",\"decimal\",\"delegate\",\"double\",\"dynamic\",\"enum\",\"float\",\"int\",\"long\",\"nint\",\"nuint\",\"object\",\"sbyte\",\"short\",\"string\",\"ulong\",\"uint\",\"ushort\"],literal:[\"default\",\"false\",\"null\",\"true\"]},a=e.inherit(e.TITLE_MODE,{begin:\"[a-zA-Z](\\\\.?\\\\w)*\"}),n={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)(u|U|l|L|ul|UL|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},i={className:\"string\",begin:'@\"',end:'\"',contains:[{begin:'\"\"'}]},r=e.inherit(i,{illegal:/\\n/}),s={className:\"subst\",begin:/\\{/,end:/\\}/,keywords:t},o=e.inherit(s,{illegal:/\\n/}),l={className:\"string\",begin:/\\$\"/,end:'\"',illegal:/\\n/,contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},e.BACKSLASH_ESCAPE,o]},c={className:\"string\",begin:/\\$@\"/,end:'\"',contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},{begin:'\"\"'},s]},_=e.inherit(c,{illegal:/\\n/,contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},{begin:'\"\"'},o]});s.contains=[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.C_BLOCK_COMMENT_MODE],o.contains=[_,l,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\\n/})];const d={variants:[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},m={begin:\"<\",end:\">\",contains:[{beginKeywords:\"in out\"},a]},u=e.IDENT_RE+\"(<\"+e.IDENT_RE+\"(\\\\s*,\\\\s*\"+e.IDENT_RE+\")*>)?(\\\\[\\\\])?\",p={begin:\"@\"+e.IDENT_RE,relevance:0};return{name:\"C#\",aliases:[\"cs\",\"c#\"],keywords:t,illegal:/::/,contains:[e.COMMENT(\"///\",\"$\",{returnBegin:!0,contains:[{className:\"doctag\",variants:[{begin:\"///\",relevance:0},{begin:\"\\x3c!--|--\\x3e\"},{begin:\"\"}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line region endregion pragma checksum\"}},d,n,{beginKeywords:\"class interface\",relevance:0,end:/[{;=]/,illegal:/[^\\s:,]/,contains:[{beginKeywords:\"where class\"},a,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:\"namespace\",relevance:0,end:/[{;=]/,illegal:/[^\\s:]/,contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:\"record\",relevance:0,end:/[{;=]/,illegal:/[^\\s:]/,contains:[a,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"meta\",begin:\"^\\\\s*\\\\[\",excludeBegin:!0,end:\"\\\\]\",excludeEnd:!0,contains:[{className:\"meta-string\",begin:/\"/,end:/\"/}]},{beginKeywords:\"new return throw await else\",relevance:0},{className:\"function\",begin:\"(\"+u+\"\\\\s+)+\"+e.IDENT_RE+\"\\\\s*(<.+>\\\\s*)?\\\\(\",returnBegin:!0,end:/\\s*[{;=]/,excludeEnd:!0,keywords:t,contains:[{beginKeywords:[\"public\",\"private\",\"protected\",\"static\",\"internal\",\"protected\",\"abstract\",\"async\",\"extern\",\"override\",\"unsafe\",\"virtual\",\"new\",\"sealed\",\"partial\"].join(\" \"),relevance:0},{begin:e.IDENT_RE+\"\\\\s*(<.+>\\\\s*)?\\\\(\",returnBegin:!0,contains:[e.TITLE_MODE,m],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,relevance:0,contains:[d,n,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},p]}};var lt=function(e){return{name:\"CSP\",case_insensitive:!1,keywords:{$pattern:\"[a-zA-Z][a-zA-Z0-9_-]*\",keyword:\"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src\"},contains:[{className:\"string\",begin:\"'\",end:\"'\"},{className:\"attribute\",begin:\"^Content\",end:\":\",excludeEnd:!0}]}};const ct=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],_t=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],dt=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],mt=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],ut=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();function pt(e){return function(...e){return e.map((e=>function(e){return e?\"string\"==typeof e?e:e.source:null}(e))).join(\"\")}(\"(?=\",e,\")\")}var gt=function(e){const t=(e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:\"CSS\",case_insensitive:!0,illegal:/[=|'\\$]/,keywords:{keyframePosition:\"from to\"},classNameAliases:{keyframePosition:\"selector-tag\"},contains:[e.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},e.CSS_NUMBER_MODE,{className:\"selector-id\",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:\"selector-class\",begin:\"\\\\.[a-zA-Z-][a-zA-Z0-9_-]*\",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-pseudo\",variants:[{begin:\":(\"+dt.join(\"|\")+\")\"},{begin:\"::(\"+mt.join(\"|\")+\")\"}]},{className:\"attribute\",begin:\"\\\\b(\"+ut.join(\"|\")+\")\\\\b\"},{begin:\":\",end:\"[;}]\",contains:[t.HEXCOLOR,t.IMPORTANT,e.CSS_NUMBER_MODE,...a,{begin:/(url|data-uri)\\(/,end:/\\)/,relevance:0,keywords:{built_in:\"url data-uri\"},contains:[{className:\"string\",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},{className:\"built_in\",begin:/[\\w-]+(?=\\()/}]},{begin:pt(/@/),end:\"[{;]\",relevance:0,illegal:/:/,contains:[{className:\"keyword\",begin:/@-?\\w[\\w]*(-\\w+)*/},{begin:/\\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:\"and or not only\",attribute:_t.join(\" \")},contains:[{begin:/[a-z-]+(?=:)/,className:\"attribute\"},...a,e.CSS_NUMBER_MODE]}]},{className:\"selector-tag\",begin:\"\\\\b(\"+ct.join(\"|\")+\")\\\\b\"}]}};var Et=function(e){const t={$pattern:e.UNDERSCORE_IDENT_RE,keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},a=\"((0|[1-9][\\\\d_]*)|0[bB][01_]+|0[xX]([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*))\",n=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",i={className:\"number\",begin:\"\\\\b\"+a+\"(L|u|U|Lu|LU|uL|UL)?\",relevance:0},r={className:\"number\",begin:\"\\\\b(((0[xX](([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\\\\.([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)|\\\\.?([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d))|((0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)(\\\\.\\\\d*|([eE][+-]?(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)))|\\\\d+\\\\.(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)|\\\\.(0|[1-9][\\\\d_]*)([eE][+-]?(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d))?))([fF]|L|i|[fF]i|Li)?|\"+a+\"(i|[fF]i|Li))\",relevance:0},s={className:\"string\",begin:\"'(\"+n+\"|.)\",end:\"'\",illegal:\".\"},o={className:\"string\",begin:'\"',contains:[{begin:n,relevance:0}],end:'\"[cwd]?'},l=e.COMMENT(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{contains:[\"self\"],relevance:10});return{name:\"D\",keywords:t,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l,{className:\"string\",begin:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',relevance:10},o,{className:\"string\",begin:'[rq]\"',end:'\"[cwd]?',relevance:5},{className:\"string\",begin:\"`\",end:\"`[cwd]?\"},{className:\"string\",begin:'q\"\\\\{',end:'\\\\}\"'},r,i,s,{className:\"meta\",begin:\"^#!\",end:\"$\",relevance:5},{className:\"meta\",begin:\"#(line)\",end:\"$\",relevance:5},{className:\"keyword\",begin:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"}]}};function St(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var bt=function(e){const t={begin:/<\\/?[A-Za-z_]/,end:\">\",subLanguage:\"xml\",relevance:0},a={variants:[{begin:/\\[.+?\\]\\[.*?\\]/,relevance:0},{begin:/\\[.+?\\]\\(((data|javascript|mailto):|(?:http|ftp)s?:\\/\\/).*?\\)/,relevance:2},{begin:St(/\\[.+?\\]\\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\\/\\/.*?\\)/),relevance:2},{begin:/\\[.+?\\]\\([./?&#].*?\\)/,relevance:1},{begin:/\\[.+?\\]\\(.*?\\)/,relevance:0}],returnBegin:!0,contains:[{className:\"string\",relevance:0,begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,returnEnd:!0},{className:\"link\",relevance:0,begin:\"\\\\]\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"symbol\",relevance:0,begin:\"\\\\]\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0}]},n={className:\"strong\",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\\*{2}/,end:/\\*{2}/}]},i={className:\"emphasis\",contains:[],variants:[{begin:/\\*(?!\\*)/,end:/\\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};n.contains.push(i),i.contains.push(n);let r=[t,a];return n.contains=n.contains.concat(r),i.contains=i.contains.concat(r),r=r.concat(n,i),{name:\"Markdown\",aliases:[\"md\",\"mkdown\",\"mkd\"],contains:[{className:\"section\",variants:[{begin:\"^#{1,6}\",end:\"$\",contains:r},{begin:\"(?=^.+?\\\\n[=-]{2,}$)\",contains:[{begin:\"^[=-]*$\"},{begin:\"^\",end:\"\\\\n\",contains:r}]}]},t,{className:\"bullet\",begin:\"^[ \\t]*([*+-]|(\\\\d+\\\\.))(?=\\\\s+)\",end:\"\\\\s+\",excludeEnd:!0},n,i,{className:\"quote\",begin:\"^>\\\\s+\",contains:r,end:\"$\"},{className:\"code\",variants:[{begin:\"(`{3,})[^`](.|\\\\n)*?\\\\1`*[ ]*\"},{begin:\"(~{3,})[^~](.|\\\\n)*?\\\\1~*[ ]*\"},{begin:\"```\",end:\"```+[ ]*$\"},{begin:\"~~~\",end:\"~~~+[ ]*$\"},{begin:\"`.+?`\"},{begin:\"(?=^( {4}|\\\\t))\",contains:[{begin:\"^( {4}|\\\\t)\",end:\"(\\\\n)$\"}],relevance:0}]},{begin:\"^[-\\\\*]{3,}\",end:\"$\"},a,{begin:/^\\[[^\\n]+\\]:/,returnBegin:!0,contains:[{className:\"symbol\",begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0},{className:\"link\",begin:/:\\s*/,end:/$/,excludeBegin:!0}]}]}};var Tt=function(e){const t={className:\"subst\",variants:[{begin:\"\\\\$[A-Za-z0-9_]+\"}]},a={className:\"subst\",variants:[{begin:/\\$\\{/,end:/\\}/}],keywords:\"true false null this is new super\"},n={className:\"string\",variants:[{begin:\"r'''\",end:\"'''\"},{begin:'r\"\"\"',end:'\"\"\"'},{begin:\"r'\",end:\"'\",illegal:\"\\\\n\"},{begin:'r\"',end:'\"',illegal:\"\\\\n\"},{begin:\"'''\",end:\"'''\",contains:[e.BACKSLASH_ESCAPE,t,a]},{begin:'\"\"\"',end:'\"\"\"',contains:[e.BACKSLASH_ESCAPE,t,a]},{begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,t,a]},{begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,t,a]}]};a.contains=[e.C_NUMBER_MODE,n];const i=[\"Comparable\",\"DateTime\",\"Duration\",\"Function\",\"Iterable\",\"Iterator\",\"List\",\"Map\",\"Match\",\"Object\",\"Pattern\",\"RegExp\",\"Set\",\"Stopwatch\",\"String\",\"StringBuffer\",\"StringSink\",\"Symbol\",\"Type\",\"Uri\",\"bool\",\"double\",\"int\",\"num\",\"Element\",\"ElementList\"],r=i.map((e=>`${e}?`));return{name:\"Dart\",keywords:{keyword:\"abstract as assert async await break case catch class const continue covariant default deferred do dynamic else enum export extends extension external factory false final finally for Function get hide if implements import in inferface is late library mixin new null on operator part required rethrow return set show static super switch sync this throw true try typedef var void while with yield\",built_in:i.concat(r).concat([\"Never\",\"Null\",\"dynamic\",\"print\",\"document\",\"querySelector\",\"querySelectorAll\",\"window\"]),$pattern:/[A-Za-z][A-Za-z0-9_]*\\??/},contains:[n,e.COMMENT(/\\/\\*\\*(?!\\/)/,/\\*\\//,{subLanguage:\"markdown\",relevance:0}),e.COMMENT(/\\/{3,} ?/,/$/,{contains:[{subLanguage:\"markdown\",begin:\".\",end:\"$\",relevance:0}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},e.C_NUMBER_MODE,{className:\"meta\",begin:\"@[A-Za-z]+\"},{begin:\"=>\"}]}};var ft=function(e){const t=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs \",a=[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\{/,/\\}/,{relevance:0}),e.COMMENT(/\\(\\*/,/\\*\\)/,{relevance:10})],n={className:\"meta\",variants:[{begin:/\\{\\$/,end:/\\}/},{begin:/\\(\\*\\$/,end:/\\*\\)/}]},i={className:\"string\",begin:/'/,end:/'/,contains:[{begin:/''/}]},r={className:\"string\",begin:/(#\\d+)+/},s={begin:e.IDENT_RE+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",returnBegin:!0,contains:[e.TITLE_MODE]},o={className:\"function\",beginKeywords:\"function constructor destructor procedure\",end:/[:;]/,keywords:\"function constructor|10 destructor|10 procedure|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:t,contains:[i,r,n].concat(a)},n].concat(a)};return{name:\"Delphi\",aliases:[\"dpr\",\"dfm\",\"pas\",\"pascal\",\"freepascal\",\"lazarus\",\"lpr\",\"lfm\"],case_insensitive:!0,keywords:t,illegal:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,contains:[i,r,e.NUMBER_MODE,{className:\"number\",relevance:0,variants:[{begin:\"\\\\$[0-9A-Fa-f]+\"},{begin:\"&[0-7]+\"},{begin:\"%[01]+\"}]},s,o,n].concat(a)}};var Ct=function(e){return{name:\"Diff\",aliases:[\"patch\"],contains:[{className:\"meta\",relevance:10,variants:[{begin:/^@@ +-\\d+,\\d+ +\\+\\d+,\\d+ +@@/},{begin:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{begin:/^--- +\\d+,\\d+ +----$/}]},{className:\"comment\",variants:[{begin:/Index: /,end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/},{begin:/^\\*{3} /,end:/$/},{begin:/^\\+{3}/,end:/$/},{begin:/^\\*{15}$/},{begin:/^diff --git/,end:/$/}]},{className:\"addition\",begin:/^\\+/,end:/$/},{className:\"deletion\",begin:/^-/,end:/$/},{className:\"addition\",begin:/^!/,end:/$/}]}};var Nt=function(e){const t={begin:/\\|[A-Za-z]+:?/,keywords:{name:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\"},contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE]};return{name:\"Django\",aliases:[\"jinja\"],case_insensitive:!0,subLanguage:\"xml\",contains:[e.COMMENT(/\\{%\\s*comment\\s*%\\}/,/\\{%\\s*endcomment\\s*%\\}/),e.COMMENT(/\\{#/,/#\\}/),{className:\"template-tag\",begin:/\\{%/,end:/%\\}/,contains:[{className:\"name\",begin:/\\w+/,keywords:{name:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\"},starts:{endsWithParent:!0,keywords:\"in by as\",contains:[t],relevance:0}}]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[t]}]}};var Rt=function(e){return{name:\"DNS Zone\",aliases:[\"bind\",\"zone\"],keywords:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"meta\",begin:/^\\$(TTL|GENERATE|INCLUDE|ORIGIN)\\b/},{className:\"number\",begin:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\\\\b\"},{className:\"number\",begin:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\b\"},e.inherit(e.NUMBER_MODE,{begin:/\\b\\d+[dhwm]?/})]}};var Ot=function(e){return{name:\"Dockerfile\",aliases:[\"docker\"],case_insensitive:!0,keywords:\"from maintainer expose env arg user onbuild stopsignal\",contains:[e.HASH_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{beginKeywords:\"run cmd entrypoint volume add copy workdir label healthcheck shell\",starts:{end:/[^\\\\]$/,subLanguage:\"bash\"}}],illegal:\"\",illegal:\"\\\\n\"}]},t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},i={className:\"variable\",begin:/&[a-z\\d_]*\\b/},r={className:\"meta-keyword\",begin:\"/[a-z][a-z\\\\d-]*/\"},s={className:\"symbol\",begin:\"^\\\\s*[a-zA-Z_][a-zA-Z\\\\d_]*:\"},o={className:\"params\",begin:\"<\",end:\">\",contains:[a,i]},l={className:\"class\",begin:/[a-zA-Z_][a-zA-Z\\d_@]*\\s\\{/,end:/[{;=]/,returnBegin:!0,excludeEnd:!0};return{name:\"Device Tree\",keywords:\"\",contains:[{className:\"class\",begin:\"/\\\\s*\\\\{\",end:/\\};/,relevance:10,contains:[i,r,s,l,o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,t]},i,r,s,l,o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,t,n,{begin:e.IDENT_RE+\"::\",keywords:\"\"}]}};var At=function(e){return{name:\"Dust\",aliases:[\"dst\"],case_insensitive:!0,subLanguage:\"xml\",contains:[{className:\"template-tag\",begin:/\\{[#\\/]/,end:/\\}/,illegal:/;/,contains:[{className:\"name\",begin:/[a-zA-Z\\.-]+/,starts:{endsWithParent:!0,relevance:0,contains:[e.QUOTE_STRING_MODE]}}]},{className:\"template-variable\",begin:/\\{/,end:/\\}/,illegal:/;/,keywords:\"if eq ne lt lte gt gte select default math sep\"}]}};var yt=function(e){const t=e.COMMENT(/\\(\\*/,/\\*\\)/);return{name:\"Extended Backus-Naur Form\",illegal:/\\S/,contains:[t,{className:\"attribute\",begin:/^[ ]*[a-zA-Z]+([\\s_-]+[a-zA-Z]+)*/},{begin:/=/,end:/[.;]/,contains:[t,{className:\"meta\",begin:/\\?.*\\?/},{className:\"string\",variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"`\",end:\"`\"}]}]}]}};var Dt=function(e){const t=\"[a-zA-Z_][a-zA-Z0-9_.]*(!|\\\\?)?\",a={$pattern:t,keyword:\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote require import with|0\"},n={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:a},i={className:\"number\",begin:\"(\\\\b0o[0-7_]+)|(\\\\b0b[01_]+)|(\\\\b0x[0-9a-fA-F_]+)|(-?\\\\b[1-9][0-9_]*(\\\\.[0-9_]+([eE][-+]?[0-9]+)?)?)\",relevance:0},r={className:\"string\",begin:\"~[a-z](?=[/|([{<\\\"'])\",contains:[{endsParent:!0,contains:[{contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/},{begin:/\\//,end:/\\//},{begin:/\\|/,end:/\\|/},{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/},{begin:/\\{/,end:/\\}/},{begin://}]}]}]},s={className:\"string\",begin:\"~[A-Z](?=[/|([{<\\\"'])\",contains:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/},{begin:/\\//,end:/\\//},{begin:/\\|/,end:/\\|/},{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/},{begin:/\\{/,end:/\\}/},{begin://}]},o={className:\"string\",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/\"\"\"/,end:/\"\"\"/},{begin:/'''/,end:/'''/},{begin:/~S\"\"\"/,end:/\"\"\"/,contains:[]},{begin:/~S\"/,end:/\"/,contains:[]},{begin:/~S'''/,end:/'''/,contains:[]},{begin:/~S'/,end:/'/,contains:[]},{begin:/'/,end:/'/},{begin:/\"/,end:/\"/}]},l={className:\"function\",beginKeywords:\"def defp defmacro\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:t,endsParent:!0})]},c=e.inherit(l,{className:\"class\",beginKeywords:\"defimpl defmodule defprotocol defrecord\",end:/\\bdo\\b|$|;/}),_=[o,s,r,e.HASH_COMMENT_MODE,c,l,{begin:\"::\"},{className:\"symbol\",begin:\":(?![\\\\s:])\",contains:[o,{begin:\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\"}],relevance:0},{className:\"symbol\",begin:t+\":(?!:)\",relevance:0},i,{className:\"variable\",begin:\"(\\\\$\\\\W)|((\\\\$|@@?)(\\\\w+))\"},{begin:\"->\"},{begin:\"(\"+e.RE_STARTERS_RE+\")\\\\s*\",contains:[e.HASH_COMMENT_MODE,{begin:/\\/: (?=\\d+\\s*[,\\]])/,relevance:0,contains:[i]},{className:\"regexp\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:\"/\",end:\"/[a-z]*\"},{begin:\"%r\\\\[\",end:\"\\\\][a-z]*\"}]}],relevance:0}];return n.contains=_,{name:\"Elixir\",keywords:a,contains:_}};var Mt=function(e){const t={variants:[e.COMMENT(\"--\",\"$\"),e.COMMENT(/\\{-/,/-\\}/,{contains:[\"self\"]})]},a={className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},n={begin:\"\\\\(\",end:\"\\\\)\",illegal:'\"',contains:[{className:\"type\",begin:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},t]};return{name:\"Elm\",keywords:\"let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription\",contains:[{beginKeywords:\"port effect module\",end:\"exposing\",keywords:\"port effect module where command subscription exposing\",contains:[n,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"import\",end:\"$\",keywords:\"import as exposing\",contains:[n,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"type\",end:\"$\",keywords:\"type alias\",contains:[a,n,{begin:/\\{/,end:/\\}/,contains:n.contains},t]},{beginKeywords:\"infix infixl infixr\",end:\"$\",contains:[e.C_NUMBER_MODE,t]},{begin:\"port\",end:\"$\",keywords:\"port\",contains:[t]},{className:\"string\",begin:\"'\\\\\\\\?.\",end:\"'\",illegal:\".\"},e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,a,e.inherit(e.TITLE_MODE,{begin:\"^[_a-z][\\\\w']*\"}),t,{begin:\"->|<-\"}],illegal:/;/}};function Lt(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var xt=function(e){const t=\"([a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?)\",a={keyword:\"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__\",built_in:\"proc lambda\",literal:\"true false nil\"},n={className:\"doctag\",begin:\"@[A-Za-z]+\"},i={begin:\"#<\",end:\">\"},r=[e.COMMENT(\"#\",\"$\",{contains:[n]}),e.COMMENT(\"^=begin\",\"^=end\",{contains:[n],relevance:10}),e.COMMENT(\"^__END__\",\"\\\\n$\")],s={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:a},o={className:\"string\",contains:[e.BACKSLASH_ESCAPE,s],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\\(/,end:/\\)/},{begin:/%[qQwWx]?\\[/,end:/\\]/},{begin:/%[qQwWx]?\\{/,end:/\\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\\//,end:/\\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\\|/,end:/\\|/},{begin:/\\B\\?(\\\\\\d{1,3})/},{begin:/\\B\\?(\\\\x[A-Fa-f0-9]{1,2})/},{begin:/\\B\\?(\\\\u\\{?[A-Fa-f0-9]{1,6}\\}?)/},{begin:/\\B\\?(\\\\M-\\\\C-|\\\\M-\\\\c|\\\\c\\\\M-|\\\\M-|\\\\C-\\\\M-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\(c|C-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\?\\S/},{begin:/<<[-~]?'?(\\w+)\\n(?:[^\\n]*\\n)*?\\s*\\1\\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,contains:[e.BACKSLASH_ESCAPE,s]})]}]},l=\"[0-9](_?[0-9])*\",c={className:\"number\",relevance:0,variants:[{begin:`\\\\b([1-9](_?[0-9])*|0)(\\\\.(${l}))?([eE][+-]?(${l})|r)?i?\\\\b`},{begin:\"\\\\b0[dD][0-9](_?[0-9])*r?i?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*r?i?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*r?i?\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\\\b\"},{begin:\"\\\\b0(_?[0-7])+r?i?\\\\b\"}]},_={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,keywords:a},d=[o,{className:\"class\",beginKeywords:\"class module\",end:\"$|;\",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|!)?\"}),{begin:\"<\\\\s*\",contains:[{begin:\"(\"+e.IDENT_RE+\"::)?\"+e.IDENT_RE,relevance:0}]}].concat(r)},{className:\"function\",begin:Lt(/def\\s+/,(m=t+\"\\\\s*(\\\\(|;|$)\",Lt(\"(?=\",m,\")\"))),relevance:0,keywords:\"def\",end:\"$|;\",contains:[e.inherit(e.TITLE_MODE,{begin:t}),_].concat(r)},{begin:e.IDENT_RE+\"::\"},{className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"(!|\\\\?)?:\",relevance:0},{className:\"symbol\",begin:\":(?!\\\\s)\",contains:[o,{begin:t}],relevance:0},c,{className:\"variable\",begin:\"(\\\\$\\\\W)|((\\\\$|@@?)(\\\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])\"},{className:\"params\",begin:/\\|/,end:/\\|/,relevance:0,keywords:a},{begin:\"(\"+e.RE_STARTERS_RE+\"|unless)\\\\s*\",keywords:\"unless\",contains:[{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,s],illegal:/\\n/,variants:[{begin:\"/\",end:\"/[a-z]*\"},{begin:/%r\\{/,end:/\\}[a-z]*/},{begin:\"%r\\\\(\",end:\"\\\\)[a-z]*\"},{begin:\"%r!\",end:\"![a-z]*\"},{begin:\"%r\\\\[\",end:\"\\\\][a-z]*\"}]}].concat(i,r),relevance:0}].concat(i,r);var m;s.contains=d,_.contains=d;const u=[{begin:/^\\s*=>/,starts:{end:\"$\",contains:d}},{className:\"meta\",begin:\"^([>?]>|[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>|(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d+(p\\\\d+)?[^\\\\d][^>]+>)(?=[ ])\",starts:{end:\"$\",contains:d}}];return r.unshift(i),{name:\"Ruby\",aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],keywords:a,illegal:/\\/\\*/,contains:[e.SHEBANG({binary:\"ruby\"})].concat(u).concat(r).concat(d)}};var wt=function(e){return{name:\"ERB\",subLanguage:\"xml\",contains:[e.COMMENT(\"<%#\",\"%>\"),{begin:\"<%[%=-]?\",end:\"[%-]?%>\",subLanguage:\"ruby\",excludeBegin:!0,excludeEnd:!0}]}};function Pt(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var kt=function(e){return{name:\"Erlang REPL\",keywords:{built_in:\"spawn spawn_link self\",keyword:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},contains:[{className:\"meta\",begin:\"^[0-9]+> \",relevance:10},e.COMMENT(\"%\",\"$\"),{className:\"number\",begin:\"\\\\b(\\\\d+(_\\\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\\\d+(_\\\\d+)*(\\\\.\\\\d+(_\\\\d+)*)?([eE][-+]?\\\\d+)?)\",relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:Pt(/\\?(::)?/,/([A-Z]\\w*)/,/((::)[A-Z]\\w*)*/)},{begin:\"->\"},{begin:\"ok\"},{begin:\"!\"},{begin:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",relevance:0},{begin:\"[A-Z][a-zA-Z0-9_']*\",relevance:0}]}};var Ut=function(e){const t=\"[a-z'][a-zA-Z0-9_']*\",a=\"(\"+t+\":\"+t+\"|\"+t+\")\",n={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},i=e.COMMENT(\"%\",\"$\"),r={className:\"number\",begin:\"\\\\b(\\\\d+(_\\\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\\\d+(_\\\\d+)*(\\\\.\\\\d+(_\\\\d+)*)?([eE][-+]?\\\\d+)?)\",relevance:0},s={begin:\"fun\\\\s+\"+t+\"/\\\\d+\"},o={begin:a+\"\\\\(\",end:\"\\\\)\",returnBegin:!0,relevance:0,contains:[{begin:a,relevance:0},{begin:\"\\\\(\",end:\"\\\\)\",endsWithParent:!0,returnEnd:!0,relevance:0}]},l={begin:/\\{/,end:/\\}/,relevance:0},c={begin:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",relevance:0},_={begin:\"[A-Z][a-zA-Z0-9_]*\",relevance:0},d={begin:\"#\"+e.UNDERSCORE_IDENT_RE,relevance:0,returnBegin:!0,contains:[{begin:\"#\"+e.UNDERSCORE_IDENT_RE,relevance:0},{begin:/\\{/,end:/\\}/,relevance:0}]},m={beginKeywords:\"fun receive if try case\",end:\"end\",keywords:n};m.contains=[i,s,e.inherit(e.APOS_STRING_MODE,{className:\"\"}),m,o,e.QUOTE_STRING_MODE,r,l,c,_,d];const u=[i,s,m,o,e.QUOTE_STRING_MODE,r,l,c,_,d];o.contains[1].contains=u,l.contains=u,d.contains[1].contains=u;const p={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:u};return{name:\"Erlang\",aliases:[\"erl\"],keywords:n,illegal:\"(\",returnBegin:!0,illegal:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",contains:[p,e.inherit(e.TITLE_MODE,{begin:t})],starts:{end:\";|\\\\.\",keywords:n,contains:u}},i,{begin:\"^-\",end:\"\\\\.\",relevance:0,excludeEnd:!0,returnBegin:!0,keywords:{$pattern:\"-\"+e.IDENT_RE,keyword:[\"-module\",\"-record\",\"-undef\",\"-export\",\"-ifdef\",\"-ifndef\",\"-author\",\"-copyright\",\"-doc\",\"-vsn\",\"-import\",\"-include\",\"-include_lib\",\"-compile\",\"-define\",\"-else\",\"-endif\",\"-file\",\"-behaviour\",\"-behavior\",\"-spec\"].map((e=>`${e}|1.5`)).join(\" \")},contains:[p]},r,e.QUOTE_STRING_MODE,d,c,_,l,{begin:/\\.$/}]}};var Ft=function(e){return{name:\"Excel formulae\",aliases:[\"xlsx\",\"xls\"],case_insensitive:!0,keywords:{$pattern:/[a-zA-Z][\\w\\.]*/,built_in:\"ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST\"},contains:[{begin:/^=/,end:/[^=]/,returnEnd:!0,illegal:/=/,relevance:10},{className:\"symbol\",begin:/\\b[A-Z]{1,2}\\d+\\b/,end:/[^\\d]/,excludeEnd:!0,relevance:0},{className:\"symbol\",begin:/[A-Z]{0,2}\\d*:[A-Z]{0,2}\\d*/,relevance:0},e.BACKSLASH_ESCAPE,e.QUOTE_STRING_MODE,{className:\"number\",begin:e.NUMBER_RE+\"(%)?\",relevance:0},e.COMMENT(/\\bN\\(/,/\\)/,{excludeBegin:!0,excludeEnd:!0,illegal:/\\n/})]}};var Bt=function(e){return{name:\"FIX\",contains:[{begin:/[^\\u2401\\u0001]+/,end:/[\\u2401\\u0001]/,excludeEnd:!0,returnBegin:!0,returnEnd:!1,contains:[{begin:/([^\\u2401\\u0001=]+)/,end:/=([^\\u2401\\u0001=]+)/,returnEnd:!0,returnBegin:!1,className:\"attr\"},{begin:/=/,end:/([\\u2401\\u0001])/,excludeEnd:!0,excludeBegin:!0,className:\"string\"}]}],case_insensitive:!0}};var Gt=function(e){const t={className:\"function\",beginKeywords:\"def\",end:/[:={\\[(\\n;]/,excludeEnd:!0,contains:[{className:\"title\",relevance:0,begin:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/}]};return{name:\"Flix\",keywords:{literal:\"true false\",keyword:\"case class def else enum if impl import in lat rel index let match namespace switch type yield with\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",begin:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},{className:\"string\",variants:[{begin:'\"',end:'\"'}]},t,e.C_NUMBER_MODE]}};function Yt(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Ht=function(e){const t={variants:[e.COMMENT(\"!\",\"$\",{relevance:0}),e.COMMENT(\"^C[ ]\",\"$\",{relevance:0}),e.COMMENT(\"^C$\",\"$\",{relevance:0})]},a=/(_[a-z_\\d]+)?/,n=/([de][+-]?\\d+)?/,i={className:\"number\",variants:[{begin:Yt(/\\b\\d+/,/\\.(\\d*)/,n,a)},{begin:Yt(/\\b\\d+/,n,a)},{begin:Yt(/\\.\\d+/,n,a)}],relevance:0},r={className:\"function\",beginKeywords:\"subroutine function program\",illegal:\"[${=\\\\n]\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]};return{name:\"Fortran\",case_insensitive:!0,aliases:[\"f90\",\"f95\"],keywords:{literal:\".False. .True.\",keyword:\"kind do concurrent local shared while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then block endblock endassociate public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure impure integer real character complex logical codimension dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image sync change team co_broadcast co_max co_min co_sum co_reduce\"},illegal:/\\/\\*/,contains:[{className:\"string\",relevance:0,variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},r,{begin:/^C\\s*=(?!=)/,relevance:0},t,i]}};var Vt=function(e){const t={begin:\"<\",end:\">\",contains:[e.inherit(e.TITLE_MODE,{begin:/'[a-zA-Z0-9_]+/})]};return{name:\"F#\",aliases:[\"fs\"],keywords:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",illegal:/\\/\\*/,contains:[{className:\"keyword\",begin:/\\b(yield|return|let|do)!/},{className:\"string\",begin:'@\"',end:'\"',contains:[{begin:'\"\"'}]},{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},e.COMMENT(\"\\\\(\\\\*(\\\\s)\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"class\",beginKeywords:\"type\",end:\"\\\\(|=|$\",excludeEnd:!0,contains:[e.UNDERSCORE_TITLE_MODE,t]},{className:\"meta\",begin:\"\\\\[<\",end:\">\\\\]\",relevance:10},{className:\"symbol\",begin:\"\\\\B('[A-Za-z])\\\\b\",contains:[e.BACKSLASH_ESCAPE]},e.C_LINE_COMMENT_MODE,e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),e.C_NUMBER_MODE]}};function qt(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var zt=function(e){const t={keyword:\"abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes\",literal:\"eps inf na\",built_in:\"abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart\"},a={className:\"symbol\",variants:[{begin:/=[lgenxc]=/},{begin:/\\$/}]},n={className:\"comment\",variants:[{begin:\"'\",end:\"'\"},{begin:'\"',end:'\"'}],illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},i={begin:\"/\",end:\"/\",keywords:t,contains:[n,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_NUMBER_MODE]},r=/[a-z0-9&#*=?@\\\\><:,()$[\\]_.{}!+%^-]+/,s={begin:/[a-z][a-z0-9_]*(\\([a-z0-9_, ]*\\))?[ \\t]+/,excludeBegin:!0,end:\"$\",endsWithParent:!0,contains:[n,i,{className:\"comment\",begin:qt(r,(o=qt(/[ ]+/,r),qt(\"(\",o,\")*\"))),relevance:0}]};var o;return{name:\"GAMS\",aliases:[\"gms\"],case_insensitive:!0,keywords:t,contains:[e.COMMENT(/^\\$ontext/,/^\\$offtext/),{className:\"meta\",begin:\"^\\\\$[a-z0-9]+\",end:\"$\",returnBegin:!0,contains:[{className:\"meta-keyword\",begin:\"^\\\\$[a-z0-9]+\"}]},e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{beginKeywords:\"set sets parameter parameters variable variables scalar scalars equation equations\",end:\";\",contains:[e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,s]},{beginKeywords:\"table\",end:\";\",returnBegin:!0,contains:[{beginKeywords:\"table\",end:\"$\",contains:[s]},e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_NUMBER_MODE]},{className:\"function\",begin:/^[a-z][a-z0-9_,\\-+' ()$]+\\.{2}/,returnBegin:!0,contains:[{className:\"title\",begin:/^[a-z0-9_]+/},{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0},a]},e.C_NUMBER_MODE,a]}};var $t=function(e){const t={keyword:\"bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv\",built_in:\"abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin sylvester strtrim\",literal:\"DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS __STDIN __STDOUT __STDERR __FILE_DIR\"},a=e.COMMENT(\"@\",\"@\"),n={className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline\"},contains:[{begin:/\\\\\\n/,relevance:0},{beginKeywords:\"include\",end:\"$\",keywords:{\"meta-keyword\":\"include\"},contains:[{className:\"meta-string\",begin:'\"',end:'\"',illegal:\"\\\\n\"}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a]},i={begin:/\\bstruct\\s+/,end:/\\s/,keywords:\"struct\",contains:[{className:\"type\",begin:e.UNDERSCORE_IDENT_RE,relevance:0}]},r=[{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,endsWithParent:!0,relevance:0,contains:[{className:\"literal\",begin:/\\.\\.\\./},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,a,i]}],s={className:\"title\",begin:e.UNDERSCORE_IDENT_RE,relevance:0},o=function(t,n,i){const o=e.inherit({className:\"function\",beginKeywords:t,end:n,excludeEnd:!0,contains:[].concat(r)},i||{});return o.contains.push(s),o.contains.push(e.C_NUMBER_MODE),o.contains.push(e.C_BLOCK_COMMENT_MODE),o.contains.push(a),o},l={className:\"built_in\",begin:\"\\\\b(\"+t.built_in.split(\" \").join(\"|\")+\")\\\\b\"},c={className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE],relevance:0},_={begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,keywords:t,relevance:0,contains:[{beginKeywords:t.keyword},l,{className:\"built_in\",begin:e.UNDERSCORE_IDENT_RE,relevance:0}]},d={begin:/\\(/,end:/\\)/,relevance:0,keywords:{built_in:t.built_in,literal:t.literal},contains:[e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,a,l,_,c,\"self\"]};return _.contains.push(d),{name:\"GAUSS\",aliases:[\"gss\"],case_insensitive:!0,keywords:t,illegal:/(\\{[%#]|[%#]\\}| <- )/,contains:[e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,c,n,{className:\"keyword\",begin:/\\bexternal (matrix|string|array|sparse matrix|struct|proc|keyword|fn)/},o(\"proc keyword\",\";\"),o(\"fn\",\"=\"),{beginKeywords:\"for threadfor\",end:/;/,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE,a,d]},{variants:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\.\"+e.UNDERSCORE_IDENT_RE},{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*=\"}],relevance:0},_,i]}};var Wt=function(e){const t={$pattern:\"[A-Z_][A-Z0-9_.]*\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},a=e.inherit(e.C_NUMBER_MODE,{begin:\"([-+]?((\\\\.\\\\d+)|(\\\\d+)(\\\\.\\\\d*)?))|\"+e.C_NUMBER_RE}),n=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(/\\(/,/\\)/),a,e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"name\",begin:\"([G])([0-9]+\\\\.?[0-9]?)\"},{className:\"name\",begin:\"([M])([0-9]+\\\\.?[0-9]?)\"},{className:\"attr\",begin:\"(VC|VS|#)\",end:\"(\\\\d+)\"},{className:\"attr\",begin:\"(VZOFX|VZOFY|VZOFZ)\"},{className:\"built_in\",begin:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",contains:[a],end:\"\\\\]\"},{className:\"symbol\",variants:[{begin:\"N\",end:\"\\\\d+\",illegal:\"\\\\W\"}]}];return{name:\"G-code (ISO 6983)\",aliases:[\"nc\"],case_insensitive:!0,keywords:t,contains:[{className:\"meta\",begin:\"%\"},{className:\"meta\",begin:\"([O])([0-9]+)\"}].concat(n)}};var Qt=function(e){return{name:\"Gherkin\",aliases:[\"feature\"],keywords:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",contains:[{className:\"symbol\",begin:\"\\\\*\",relevance:0},{className:\"meta\",begin:\"@[^@\\\\s]+\"},{begin:\"\\\\|\",end:\"\\\\|\\\\w*$\",contains:[{className:\"string\",begin:\"[^|]+\"}]},{className:\"variable\",begin:\"<\",end:\">\"},e.HASH_COMMENT_MODE,{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},e.QUOTE_STRING_MODE]}};var Kt=function(e){return{name:\"GLSL\",keywords:{keyword:\"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly\",type:\"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void\",built_in:\"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow\",literal:\"true false\"},illegal:'\"',contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"#\",end:\"$\"}]}};var jt=function(e){return{name:\"GML\",case_insensitive:!1,keywords:{keyword:\"begin end if then else while do for break continue with until repeat exit and or xor not return mod div switch case default var globalvar enum function constructor delete #macro #region #endregion\",built_in:\"is_real is_string is_array is_undefined is_int32 is_int64 is_ptr is_vec3 is_vec4 is_matrix is_bool is_method is_struct is_infinity is_nan is_numeric typeof variable_global_exists variable_global_get variable_global_set variable_instance_exists variable_instance_get variable_instance_set variable_instance_get_names variable_struct_exists variable_struct_get variable_struct_get_names variable_struct_names_count variable_struct_remove variable_struct_set array_delete array_insert array_length array_length_1d array_length_2d array_height_2d array_equals array_create array_copy array_pop array_push array_resize array_sort random random_range irandom irandom_range random_set_seed random_get_seed randomize randomise choose abs round floor ceil sign frac sqrt sqr exp ln log2 log10 sin cos tan arcsin arccos arctan arctan2 dsin dcos dtan darcsin darccos darctan darctan2 degtorad radtodeg power logn min max mean median clamp lerp dot_product dot_product_3d dot_product_normalised dot_product_3d_normalised dot_product_normalized dot_product_3d_normalized math_set_epsilon math_get_epsilon angle_difference point_distance_3d point_distance point_direction lengthdir_x lengthdir_y real string int64 ptr string_format chr ansi_char ord string_length string_byte_length string_pos string_copy string_char_at string_ord_at string_byte_at string_set_byte_at string_delete string_insert string_lower string_upper string_repeat string_letters string_digits string_lettersdigits string_replace string_replace_all string_count string_hash_to_newline clipboard_has_text clipboard_set_text clipboard_get_text date_current_datetime date_create_datetime date_valid_datetime date_inc_year date_inc_month date_inc_week date_inc_day date_inc_hour date_inc_minute date_inc_second date_get_year date_get_month date_get_week date_get_day date_get_hour date_get_minute date_get_second date_get_weekday date_get_day_of_year date_get_hour_of_year date_get_minute_of_year date_get_second_of_year date_year_span date_month_span date_week_span date_day_span date_hour_span date_minute_span date_second_span date_compare_datetime date_compare_date date_compare_time date_date_of date_time_of date_datetime_string date_date_string date_time_string date_days_in_month date_days_in_year date_leap_year date_is_today date_set_timezone date_get_timezone game_set_speed game_get_speed motion_set motion_add place_free place_empty place_meeting place_snapped move_random move_snap move_towards_point move_contact_solid move_contact_all move_outside_solid move_outside_all move_bounce_solid move_bounce_all move_wrap distance_to_point distance_to_object position_empty position_meeting path_start path_end mp_linear_step mp_potential_step mp_linear_step_object mp_potential_step_object mp_potential_settings mp_linear_path mp_potential_path mp_linear_path_object mp_potential_path_object mp_grid_create mp_grid_destroy mp_grid_clear_all mp_grid_clear_cell mp_grid_clear_rectangle mp_grid_add_cell mp_grid_get_cell mp_grid_add_rectangle mp_grid_add_instances mp_grid_path mp_grid_draw mp_grid_to_ds_grid collision_point collision_rectangle collision_circle collision_ellipse collision_line collision_point_list collision_rectangle_list collision_circle_list collision_ellipse_list collision_line_list instance_position_list instance_place_list point_in_rectangle point_in_triangle point_in_circle rectangle_in_rectangle rectangle_in_triangle rectangle_in_circle instance_find instance_exists instance_number instance_position instance_nearest instance_furthest instance_place instance_create_depth instance_create_layer instance_copy instance_change instance_destroy position_destroy position_change instance_id_get instance_deactivate_all instance_deactivate_object instance_deactivate_region instance_activate_all instance_activate_object instance_activate_region room_goto room_goto_previous room_goto_next room_previous room_next room_restart game_end game_restart game_load game_save game_save_buffer game_load_buffer event_perform event_user event_perform_object event_inherited show_debug_message show_debug_overlay debug_event debug_get_callstack alarm_get alarm_set font_texture_page_size keyboard_set_map keyboard_get_map keyboard_unset_map keyboard_check keyboard_check_pressed keyboard_check_released keyboard_check_direct keyboard_get_numlock keyboard_set_numlock keyboard_key_press keyboard_key_release keyboard_clear io_clear mouse_check_button mouse_check_button_pressed mouse_check_button_released mouse_wheel_up mouse_wheel_down mouse_clear draw_self draw_sprite draw_sprite_pos draw_sprite_ext draw_sprite_stretched draw_sprite_stretched_ext draw_sprite_tiled draw_sprite_tiled_ext draw_sprite_part draw_sprite_part_ext draw_sprite_general draw_clear draw_clear_alpha draw_point draw_line draw_line_width draw_rectangle draw_roundrect draw_roundrect_ext draw_triangle draw_circle draw_ellipse draw_set_circle_precision draw_arrow draw_button draw_path draw_healthbar draw_getpixel draw_getpixel_ext draw_set_colour draw_set_color draw_set_alpha draw_get_colour draw_get_color draw_get_alpha merge_colour make_colour_rgb make_colour_hsv colour_get_red colour_get_green colour_get_blue colour_get_hue colour_get_saturation colour_get_value merge_color make_color_rgb make_color_hsv color_get_red color_get_green color_get_blue color_get_hue color_get_saturation color_get_value merge_color screen_save screen_save_part draw_set_font draw_set_halign draw_set_valign draw_text draw_text_ext string_width string_height string_width_ext string_height_ext draw_text_transformed draw_text_ext_transformed draw_text_colour draw_text_ext_colour draw_text_transformed_colour draw_text_ext_transformed_colour draw_text_color draw_text_ext_color draw_text_transformed_color draw_text_ext_transformed_color draw_point_colour draw_line_colour draw_line_width_colour draw_rectangle_colour draw_roundrect_colour draw_roundrect_colour_ext draw_triangle_colour draw_circle_colour draw_ellipse_colour draw_point_color draw_line_color draw_line_width_color draw_rectangle_color draw_roundrect_color draw_roundrect_color_ext draw_triangle_color draw_circle_color draw_ellipse_color draw_primitive_begin draw_vertex draw_vertex_colour draw_vertex_color draw_primitive_end sprite_get_uvs font_get_uvs sprite_get_texture font_get_texture texture_get_width texture_get_height texture_get_uvs draw_primitive_begin_texture draw_vertex_texture draw_vertex_texture_colour draw_vertex_texture_color texture_global_scale surface_create surface_create_ext surface_resize surface_free surface_exists surface_get_width surface_get_height surface_get_texture surface_set_target surface_set_target_ext surface_reset_target surface_depth_disable surface_get_depth_disable draw_surface draw_surface_stretched draw_surface_tiled draw_surface_part draw_surface_ext draw_surface_stretched_ext draw_surface_tiled_ext draw_surface_part_ext draw_surface_general surface_getpixel surface_getpixel_ext surface_save surface_save_part surface_copy surface_copy_part application_surface_draw_enable application_get_position application_surface_enable application_surface_is_enabled display_get_width display_get_height display_get_orientation display_get_gui_width display_get_gui_height display_reset display_mouse_get_x display_mouse_get_y display_mouse_set display_set_ui_visibility window_set_fullscreen window_get_fullscreen window_set_caption window_set_min_width window_set_max_width window_set_min_height window_set_max_height window_get_visible_rects window_get_caption window_set_cursor window_get_cursor window_set_colour window_get_colour window_set_color window_get_color window_set_position window_set_size window_set_rectangle window_center window_get_x window_get_y window_get_width window_get_height window_mouse_get_x window_mouse_get_y window_mouse_set window_view_mouse_get_x window_view_mouse_get_y window_views_mouse_get_x window_views_mouse_get_y audio_listener_position audio_listener_velocity audio_listener_orientation audio_emitter_position audio_emitter_create audio_emitter_free audio_emitter_exists audio_emitter_pitch audio_emitter_velocity audio_emitter_falloff audio_emitter_gain audio_play_sound audio_play_sound_on audio_play_sound_at audio_stop_sound audio_resume_music audio_music_is_playing audio_resume_sound audio_pause_sound audio_pause_music audio_channel_num audio_sound_length audio_get_type audio_falloff_set_model audio_play_music audio_stop_music audio_master_gain audio_music_gain audio_sound_gain audio_sound_pitch audio_stop_all audio_resume_all audio_pause_all audio_is_playing audio_is_paused audio_exists audio_sound_set_track_position audio_sound_get_track_position audio_emitter_get_gain audio_emitter_get_pitch audio_emitter_get_x audio_emitter_get_y audio_emitter_get_z audio_emitter_get_vx audio_emitter_get_vy audio_emitter_get_vz audio_listener_set_position audio_listener_set_velocity audio_listener_set_orientation audio_listener_get_data audio_set_master_gain audio_get_master_gain audio_sound_get_gain audio_sound_get_pitch audio_get_name audio_sound_set_track_position audio_sound_get_track_position audio_create_stream audio_destroy_stream audio_create_sync_group audio_destroy_sync_group audio_play_in_sync_group audio_start_sync_group audio_stop_sync_group audio_pause_sync_group audio_resume_sync_group audio_sync_group_get_track_pos audio_sync_group_debug audio_sync_group_is_playing audio_debug audio_group_load audio_group_unload audio_group_is_loaded audio_group_load_progress audio_group_name audio_group_stop_all audio_group_set_gain audio_create_buffer_sound audio_free_buffer_sound audio_create_play_queue audio_free_play_queue audio_queue_sound audio_get_recorder_count audio_get_recorder_info audio_start_recording audio_stop_recording audio_sound_get_listener_mask audio_emitter_get_listener_mask audio_get_listener_mask audio_sound_set_listener_mask audio_emitter_set_listener_mask audio_set_listener_mask audio_get_listener_count audio_get_listener_info audio_system show_message show_message_async clickable_add clickable_add_ext clickable_change clickable_change_ext clickable_delete clickable_exists clickable_set_style show_question show_question_async get_integer get_string get_integer_async get_string_async get_login_async get_open_filename get_save_filename get_open_filename_ext get_save_filename_ext show_error highscore_clear highscore_add highscore_value highscore_name draw_highscore sprite_exists sprite_get_name sprite_get_number sprite_get_width sprite_get_height sprite_get_xoffset sprite_get_yoffset sprite_get_bbox_left sprite_get_bbox_right sprite_get_bbox_top sprite_get_bbox_bottom sprite_save sprite_save_strip sprite_set_cache_size sprite_set_cache_size_ext sprite_get_tpe sprite_prefetch sprite_prefetch_multi sprite_flush sprite_flush_multi sprite_set_speed sprite_get_speed_type sprite_get_speed font_exists font_get_name font_get_fontname font_get_bold font_get_italic font_get_first font_get_last font_get_size font_set_cache_size path_exists path_get_name path_get_length path_get_time path_get_kind path_get_closed path_get_precision path_get_number path_get_point_x path_get_point_y path_get_point_speed path_get_x path_get_y path_get_speed script_exists script_get_name timeline_add timeline_delete timeline_clear timeline_exists timeline_get_name timeline_moment_clear timeline_moment_add_script timeline_size timeline_max_moment object_exists object_get_name object_get_sprite object_get_solid object_get_visible object_get_persistent object_get_mask object_get_parent object_get_physics object_is_ancestor room_exists room_get_name sprite_set_offset sprite_duplicate sprite_assign sprite_merge sprite_add sprite_replace sprite_create_from_surface sprite_add_from_surface sprite_delete sprite_set_alpha_from_sprite sprite_collision_mask font_add_enable_aa font_add_get_enable_aa font_add font_add_sprite font_add_sprite_ext font_replace font_replace_sprite font_replace_sprite_ext font_delete path_set_kind path_set_closed path_set_precision path_add path_assign path_duplicate path_append path_delete path_add_point path_insert_point path_change_point path_delete_point path_clear_points path_reverse path_mirror path_flip path_rotate path_rescale path_shift script_execute object_set_sprite object_set_solid object_set_visible object_set_persistent object_set_mask room_set_width room_set_height room_set_persistent room_set_background_colour room_set_background_color room_set_view room_set_viewport room_get_viewport room_set_view_enabled room_add room_duplicate room_assign room_instance_add room_instance_clear room_get_camera room_set_camera asset_get_index asset_get_type file_text_open_from_string file_text_open_read file_text_open_write file_text_open_append file_text_close file_text_write_string file_text_write_real file_text_writeln file_text_read_string file_text_read_real file_text_readln file_text_eof file_text_eoln file_exists file_delete file_rename file_copy directory_exists directory_create directory_destroy file_find_first file_find_next file_find_close file_attributes filename_name filename_path filename_dir filename_drive filename_ext filename_change_ext file_bin_open file_bin_rewrite file_bin_close file_bin_position file_bin_size file_bin_seek file_bin_write_byte file_bin_read_byte parameter_count parameter_string environment_get_variable ini_open_from_string ini_open ini_close ini_read_string ini_read_real ini_write_string ini_write_real ini_key_exists ini_section_exists ini_key_delete ini_section_delete ds_set_precision ds_exists ds_stack_create ds_stack_destroy ds_stack_clear ds_stack_copy ds_stack_size ds_stack_empty ds_stack_push ds_stack_pop ds_stack_top ds_stack_write ds_stack_read ds_queue_create ds_queue_destroy ds_queue_clear ds_queue_copy ds_queue_size ds_queue_empty ds_queue_enqueue ds_queue_dequeue ds_queue_head ds_queue_tail ds_queue_write ds_queue_read ds_list_create ds_list_destroy ds_list_clear ds_list_copy ds_list_size ds_list_empty ds_list_add ds_list_insert ds_list_replace ds_list_delete ds_list_find_index ds_list_find_value ds_list_mark_as_list ds_list_mark_as_map ds_list_sort ds_list_shuffle ds_list_write ds_list_read ds_list_set ds_map_create ds_map_destroy ds_map_clear ds_map_copy ds_map_size ds_map_empty ds_map_add ds_map_add_list ds_map_add_map ds_map_replace ds_map_replace_map ds_map_replace_list ds_map_delete ds_map_exists ds_map_find_value ds_map_find_previous ds_map_find_next ds_map_find_first ds_map_find_last ds_map_write ds_map_read ds_map_secure_save ds_map_secure_load ds_map_secure_load_buffer ds_map_secure_save_buffer ds_map_set ds_priority_create ds_priority_destroy ds_priority_clear ds_priority_copy ds_priority_size ds_priority_empty ds_priority_add ds_priority_change_priority ds_priority_find_priority ds_priority_delete_value ds_priority_delete_min ds_priority_find_min ds_priority_delete_max ds_priority_find_max ds_priority_write ds_priority_read ds_grid_create ds_grid_destroy ds_grid_copy ds_grid_resize ds_grid_width ds_grid_height ds_grid_clear ds_grid_set ds_grid_add ds_grid_multiply ds_grid_set_region ds_grid_add_region ds_grid_multiply_region ds_grid_set_disk ds_grid_add_disk ds_grid_multiply_disk ds_grid_set_grid_region ds_grid_add_grid_region ds_grid_multiply_grid_region ds_grid_get ds_grid_get_sum ds_grid_get_max ds_grid_get_min ds_grid_get_mean ds_grid_get_disk_sum ds_grid_get_disk_min ds_grid_get_disk_max ds_grid_get_disk_mean ds_grid_value_exists ds_grid_value_x ds_grid_value_y ds_grid_value_disk_exists ds_grid_value_disk_x ds_grid_value_disk_y ds_grid_shuffle ds_grid_write ds_grid_read ds_grid_sort ds_grid_set ds_grid_get effect_create_below effect_create_above effect_clear part_type_create part_type_destroy part_type_exists part_type_clear part_type_shape part_type_sprite part_type_size part_type_scale part_type_orientation part_type_life part_type_step part_type_death part_type_speed part_type_direction part_type_gravity part_type_colour1 part_type_colour2 part_type_colour3 part_type_colour_mix part_type_colour_rgb part_type_colour_hsv part_type_color1 part_type_color2 part_type_color3 part_type_color_mix part_type_color_rgb part_type_color_hsv part_type_alpha1 part_type_alpha2 part_type_alpha3 part_type_blend part_system_create part_system_create_layer part_system_destroy part_system_exists part_system_clear part_system_draw_order part_system_depth part_system_position part_system_automatic_update part_system_automatic_draw part_system_update part_system_drawit part_system_get_layer part_system_layer part_particles_create part_particles_create_colour part_particles_create_color part_particles_clear part_particles_count part_emitter_create part_emitter_destroy part_emitter_destroy_all part_emitter_exists part_emitter_clear part_emitter_region part_emitter_burst part_emitter_stream external_call external_define external_free window_handle window_device matrix_get matrix_set matrix_build_identity matrix_build matrix_build_lookat matrix_build_projection_ortho matrix_build_projection_perspective matrix_build_projection_perspective_fov matrix_multiply matrix_transform_vertex matrix_stack_push matrix_stack_pop matrix_stack_multiply matrix_stack_set matrix_stack_clear matrix_stack_top matrix_stack_is_empty browser_input_capture os_get_config os_get_info os_get_language os_get_region os_lock_orientation display_get_dpi_x display_get_dpi_y display_set_gui_size display_set_gui_maximise display_set_gui_maximize device_mouse_dbclick_enable display_set_timing_method display_get_timing_method display_set_sleep_margin display_get_sleep_margin virtual_key_add virtual_key_hide virtual_key_delete virtual_key_show draw_enable_drawevent draw_enable_swf_aa draw_set_swf_aa_level draw_get_swf_aa_level draw_texture_flush draw_flush gpu_set_blendenable gpu_set_ztestenable gpu_set_zfunc gpu_set_zwriteenable gpu_set_lightingenable gpu_set_fog gpu_set_cullmode gpu_set_blendmode gpu_set_blendmode_ext gpu_set_blendmode_ext_sepalpha gpu_set_colorwriteenable gpu_set_colourwriteenable gpu_set_alphatestenable gpu_set_alphatestref gpu_set_alphatestfunc gpu_set_texfilter gpu_set_texfilter_ext gpu_set_texrepeat gpu_set_texrepeat_ext gpu_set_tex_filter gpu_set_tex_filter_ext gpu_set_tex_repeat gpu_set_tex_repeat_ext gpu_set_tex_mip_filter gpu_set_tex_mip_filter_ext gpu_set_tex_mip_bias gpu_set_tex_mip_bias_ext gpu_set_tex_min_mip gpu_set_tex_min_mip_ext gpu_set_tex_max_mip gpu_set_tex_max_mip_ext gpu_set_tex_max_aniso gpu_set_tex_max_aniso_ext gpu_set_tex_mip_enable gpu_set_tex_mip_enable_ext gpu_get_blendenable gpu_get_ztestenable gpu_get_zfunc gpu_get_zwriteenable gpu_get_lightingenable gpu_get_fog gpu_get_cullmode gpu_get_blendmode gpu_get_blendmode_ext gpu_get_blendmode_ext_sepalpha gpu_get_blendmode_src gpu_get_blendmode_dest gpu_get_blendmode_srcalpha gpu_get_blendmode_destalpha gpu_get_colorwriteenable gpu_get_colourwriteenable gpu_get_alphatestenable gpu_get_alphatestref gpu_get_alphatestfunc gpu_get_texfilter gpu_get_texfilter_ext gpu_get_texrepeat gpu_get_texrepeat_ext gpu_get_tex_filter gpu_get_tex_filter_ext gpu_get_tex_repeat gpu_get_tex_repeat_ext gpu_get_tex_mip_filter gpu_get_tex_mip_filter_ext gpu_get_tex_mip_bias gpu_get_tex_mip_bias_ext gpu_get_tex_min_mip gpu_get_tex_min_mip_ext gpu_get_tex_max_mip gpu_get_tex_max_mip_ext gpu_get_tex_max_aniso gpu_get_tex_max_aniso_ext gpu_get_tex_mip_enable gpu_get_tex_mip_enable_ext gpu_push_state gpu_pop_state gpu_get_state gpu_set_state draw_light_define_ambient draw_light_define_direction draw_light_define_point draw_light_enable draw_set_lighting draw_light_get_ambient draw_light_get draw_get_lighting shop_leave_rating url_get_domain url_open url_open_ext url_open_full get_timer achievement_login achievement_logout achievement_post achievement_increment achievement_post_score achievement_available achievement_show_achievements achievement_show_leaderboards achievement_load_friends achievement_load_leaderboard achievement_send_challenge achievement_load_progress achievement_reset achievement_login_status achievement_get_pic achievement_show_challenge_notifications achievement_get_challenges achievement_event achievement_show achievement_get_info cloud_file_save cloud_string_save cloud_synchronise ads_enable ads_disable ads_setup ads_engagement_launch ads_engagement_available ads_engagement_active ads_event ads_event_preload ads_set_reward_callback ads_get_display_height ads_get_display_width ads_move ads_interstitial_available ads_interstitial_display device_get_tilt_x device_get_tilt_y device_get_tilt_z device_is_keypad_open device_mouse_check_button device_mouse_check_button_pressed device_mouse_check_button_released device_mouse_x device_mouse_y device_mouse_raw_x device_mouse_raw_y device_mouse_x_to_gui device_mouse_y_to_gui iap_activate iap_status iap_enumerate_products iap_restore_all iap_acquire iap_consume iap_product_details iap_purchase_details facebook_init facebook_login facebook_status facebook_graph_request facebook_dialog facebook_logout facebook_launch_offerwall facebook_post_message facebook_send_invite facebook_user_id facebook_accesstoken facebook_check_permission facebook_request_read_permissions facebook_request_publish_permissions gamepad_is_supported gamepad_get_device_count gamepad_is_connected gamepad_get_description gamepad_get_button_threshold gamepad_set_button_threshold gamepad_get_axis_deadzone gamepad_set_axis_deadzone gamepad_button_count gamepad_button_check gamepad_button_check_pressed gamepad_button_check_released gamepad_button_value gamepad_axis_count gamepad_axis_value gamepad_set_vibration gamepad_set_colour gamepad_set_color os_is_paused window_has_focus code_is_compiled http_get http_get_file http_post_string http_request json_encode json_decode zip_unzip load_csv base64_encode base64_decode md5_string_unicode md5_string_utf8 md5_file os_is_network_connected sha1_string_unicode sha1_string_utf8 sha1_file os_powersave_enable analytics_event analytics_event_ext win8_livetile_tile_notification win8_livetile_tile_clear win8_livetile_badge_notification win8_livetile_badge_clear win8_livetile_queue_enable win8_secondarytile_pin win8_secondarytile_badge_notification win8_secondarytile_delete win8_livetile_notification_begin win8_livetile_notification_secondary_begin win8_livetile_notification_expiry win8_livetile_notification_tag win8_livetile_notification_text_add win8_livetile_notification_image_add win8_livetile_notification_end win8_appbar_enable win8_appbar_add_element win8_appbar_remove_element win8_settingscharm_add_entry win8_settingscharm_add_html_entry win8_settingscharm_add_xaml_entry win8_settingscharm_set_xaml_property win8_settingscharm_get_xaml_property win8_settingscharm_remove_entry win8_share_image win8_share_screenshot win8_share_file win8_share_url win8_share_text win8_search_enable win8_search_disable win8_search_add_suggestions win8_device_touchscreen_available win8_license_initialize_sandbox win8_license_trial_version winphone_license_trial_version winphone_tile_title winphone_tile_count winphone_tile_back_title winphone_tile_back_content winphone_tile_back_content_wide winphone_tile_front_image winphone_tile_front_image_small winphone_tile_front_image_wide winphone_tile_back_image winphone_tile_back_image_wide winphone_tile_background_colour winphone_tile_background_color winphone_tile_icon_image winphone_tile_small_icon_image winphone_tile_wide_content winphone_tile_cycle_images winphone_tile_small_background_image physics_world_create physics_world_gravity physics_world_update_speed physics_world_update_iterations physics_world_draw_debug physics_pause_enable physics_fixture_create physics_fixture_set_kinematic physics_fixture_set_density physics_fixture_set_awake physics_fixture_set_restitution physics_fixture_set_friction physics_fixture_set_collision_group physics_fixture_set_sensor physics_fixture_set_linear_damping physics_fixture_set_angular_damping physics_fixture_set_circle_shape physics_fixture_set_box_shape physics_fixture_set_edge_shape physics_fixture_set_polygon_shape physics_fixture_set_chain_shape physics_fixture_add_point physics_fixture_bind physics_fixture_bind_ext physics_fixture_delete physics_apply_force physics_apply_impulse physics_apply_angular_impulse physics_apply_local_force physics_apply_local_impulse physics_apply_torque physics_mass_properties physics_draw_debug physics_test_overlap physics_remove_fixture physics_set_friction physics_set_density physics_set_restitution physics_get_friction physics_get_density physics_get_restitution physics_joint_distance_create physics_joint_rope_create physics_joint_revolute_create physics_joint_prismatic_create physics_joint_pulley_create physics_joint_wheel_create physics_joint_weld_create physics_joint_friction_create physics_joint_gear_create physics_joint_enable_motor physics_joint_get_value physics_joint_set_value physics_joint_delete physics_particle_create physics_particle_delete physics_particle_delete_region_circle physics_particle_delete_region_box physics_particle_delete_region_poly physics_particle_set_flags physics_particle_set_category_flags physics_particle_draw physics_particle_draw_ext physics_particle_count physics_particle_get_data physics_particle_get_data_particle physics_particle_group_begin physics_particle_group_circle physics_particle_group_box physics_particle_group_polygon physics_particle_group_add_point physics_particle_group_end physics_particle_group_join physics_particle_group_delete physics_particle_group_count physics_particle_group_get_data physics_particle_group_get_mass physics_particle_group_get_inertia physics_particle_group_get_centre_x physics_particle_group_get_centre_y physics_particle_group_get_vel_x physics_particle_group_get_vel_y physics_particle_group_get_ang_vel physics_particle_group_get_x physics_particle_group_get_y physics_particle_group_get_angle physics_particle_set_group_flags physics_particle_get_group_flags physics_particle_get_max_count physics_particle_get_radius physics_particle_get_density physics_particle_get_damping physics_particle_get_gravity_scale physics_particle_set_max_count physics_particle_set_radius physics_particle_set_density physics_particle_set_damping physics_particle_set_gravity_scale network_create_socket network_create_socket_ext network_create_server network_create_server_raw network_connect network_connect_raw network_send_packet network_send_raw network_send_broadcast network_send_udp network_send_udp_raw network_set_timeout network_set_config network_resolve network_destroy buffer_create buffer_write buffer_read buffer_seek buffer_get_surface buffer_set_surface buffer_delete buffer_exists buffer_get_type buffer_get_alignment buffer_poke buffer_peek buffer_save buffer_save_ext buffer_load buffer_load_ext buffer_load_partial buffer_copy buffer_fill buffer_get_size buffer_tell buffer_resize buffer_md5 buffer_sha1 buffer_base64_encode buffer_base64_decode buffer_base64_decode_ext buffer_sizeof buffer_get_address buffer_create_from_vertex_buffer buffer_create_from_vertex_buffer_ext buffer_copy_from_vertex_buffer buffer_async_group_begin buffer_async_group_option buffer_async_group_end buffer_load_async buffer_save_async gml_release_mode gml_pragma steam_activate_overlay steam_is_overlay_enabled steam_is_overlay_activated steam_get_persona_name steam_initialised steam_is_cloud_enabled_for_app steam_is_cloud_enabled_for_account steam_file_persisted steam_get_quota_total steam_get_quota_free steam_file_write steam_file_write_file steam_file_read steam_file_delete steam_file_exists steam_file_size steam_file_share steam_is_screenshot_requested steam_send_screenshot steam_is_user_logged_on steam_get_user_steam_id steam_user_owns_dlc steam_user_installed_dlc steam_set_achievement steam_get_achievement steam_clear_achievement steam_set_stat_int steam_set_stat_float steam_set_stat_avg_rate steam_get_stat_int steam_get_stat_float steam_get_stat_avg_rate steam_reset_all_stats steam_reset_all_stats_achievements steam_stats_ready steam_create_leaderboard steam_upload_score steam_upload_score_ext steam_download_scores_around_user steam_download_scores steam_download_friends_scores steam_upload_score_buffer steam_upload_score_buffer_ext steam_current_game_language steam_available_languages steam_activate_overlay_browser steam_activate_overlay_user steam_activate_overlay_store steam_get_user_persona_name steam_get_app_id steam_get_user_account_id steam_ugc_download steam_ugc_create_item steam_ugc_start_item_update steam_ugc_set_item_title steam_ugc_set_item_description steam_ugc_set_item_visibility steam_ugc_set_item_tags steam_ugc_set_item_content steam_ugc_set_item_preview steam_ugc_submit_item_update steam_ugc_get_item_update_progress steam_ugc_subscribe_item steam_ugc_unsubscribe_item steam_ugc_num_subscribed_items steam_ugc_get_subscribed_items steam_ugc_get_item_install_info steam_ugc_get_item_update_info steam_ugc_request_item_details steam_ugc_create_query_user steam_ugc_create_query_user_ex steam_ugc_create_query_all steam_ugc_create_query_all_ex steam_ugc_query_set_cloud_filename_filter steam_ugc_query_set_match_any_tag steam_ugc_query_set_search_text steam_ugc_query_set_ranked_by_trend_days steam_ugc_query_add_required_tag steam_ugc_query_add_excluded_tag steam_ugc_query_set_return_long_description steam_ugc_query_set_return_total_only steam_ugc_query_set_allow_cached_response steam_ugc_send_query shader_set shader_get_name shader_reset shader_current shader_is_compiled shader_get_sampler_index shader_get_uniform shader_set_uniform_i shader_set_uniform_i_array shader_set_uniform_f shader_set_uniform_f_array shader_set_uniform_matrix shader_set_uniform_matrix_array shader_enable_corner_id texture_set_stage texture_get_texel_width texture_get_texel_height shaders_are_supported vertex_format_begin vertex_format_end vertex_format_delete vertex_format_add_position vertex_format_add_position_3d vertex_format_add_colour vertex_format_add_color vertex_format_add_normal vertex_format_add_texcoord vertex_format_add_textcoord vertex_format_add_custom vertex_create_buffer vertex_create_buffer_ext vertex_delete_buffer vertex_begin vertex_end vertex_position vertex_position_3d vertex_colour vertex_color vertex_argb vertex_texcoord vertex_normal vertex_float1 vertex_float2 vertex_float3 vertex_float4 vertex_ubyte4 vertex_submit vertex_freeze vertex_get_number vertex_get_buffer_size vertex_create_buffer_from_buffer vertex_create_buffer_from_buffer_ext push_local_notification push_get_first_local_notification push_get_next_local_notification push_cancel_local_notification skeleton_animation_set skeleton_animation_get skeleton_animation_mix skeleton_animation_set_ext skeleton_animation_get_ext skeleton_animation_get_duration skeleton_animation_get_frames skeleton_animation_clear skeleton_skin_set skeleton_skin_get skeleton_attachment_set skeleton_attachment_get skeleton_attachment_create skeleton_collision_draw_set skeleton_bone_data_get skeleton_bone_data_set skeleton_bone_state_get skeleton_bone_state_set skeleton_get_minmax skeleton_get_num_bounds skeleton_get_bounds skeleton_animation_get_frame skeleton_animation_set_frame draw_skeleton draw_skeleton_time draw_skeleton_instance draw_skeleton_collision skeleton_animation_list skeleton_skin_list skeleton_slot_data layer_get_id layer_get_id_at_depth layer_get_depth layer_create layer_destroy layer_destroy_instances layer_add_instance layer_has_instance layer_set_visible layer_get_visible layer_exists layer_x layer_y layer_get_x layer_get_y layer_hspeed layer_vspeed layer_get_hspeed layer_get_vspeed layer_script_begin layer_script_end layer_shader layer_get_script_begin layer_get_script_end layer_get_shader layer_set_target_room layer_get_target_room layer_reset_target_room layer_get_all layer_get_all_elements layer_get_name layer_depth layer_get_element_layer layer_get_element_type layer_element_move layer_force_draw_depth layer_is_draw_depth_forced layer_get_forced_depth layer_background_get_id layer_background_exists layer_background_create layer_background_destroy layer_background_visible layer_background_change layer_background_sprite layer_background_htiled layer_background_vtiled layer_background_stretch layer_background_yscale layer_background_xscale layer_background_blend layer_background_alpha layer_background_index layer_background_speed layer_background_get_visible layer_background_get_sprite layer_background_get_htiled layer_background_get_vtiled layer_background_get_stretch layer_background_get_yscale layer_background_get_xscale layer_background_get_blend layer_background_get_alpha layer_background_get_index layer_background_get_speed layer_sprite_get_id layer_sprite_exists layer_sprite_create layer_sprite_destroy layer_sprite_change layer_sprite_index layer_sprite_speed layer_sprite_xscale layer_sprite_yscale layer_sprite_angle layer_sprite_blend layer_sprite_alpha layer_sprite_x layer_sprite_y layer_sprite_get_sprite layer_sprite_get_index layer_sprite_get_speed layer_sprite_get_xscale layer_sprite_get_yscale layer_sprite_get_angle layer_sprite_get_blend layer_sprite_get_alpha layer_sprite_get_x layer_sprite_get_y layer_tilemap_get_id layer_tilemap_exists layer_tilemap_create layer_tilemap_destroy tilemap_tileset tilemap_x tilemap_y tilemap_set tilemap_set_at_pixel tilemap_get_tileset tilemap_get_tile_width tilemap_get_tile_height tilemap_get_width tilemap_get_height tilemap_get_x tilemap_get_y tilemap_get tilemap_get_at_pixel tilemap_get_cell_x_at_pixel tilemap_get_cell_y_at_pixel tilemap_clear draw_tilemap draw_tile tilemap_set_global_mask tilemap_get_global_mask tilemap_set_mask tilemap_get_mask tilemap_get_frame tile_set_empty tile_set_index tile_set_flip tile_set_mirror tile_set_rotate tile_get_empty tile_get_index tile_get_flip tile_get_mirror tile_get_rotate layer_tile_exists layer_tile_create layer_tile_destroy layer_tile_change layer_tile_xscale layer_tile_yscale layer_tile_blend layer_tile_alpha layer_tile_x layer_tile_y layer_tile_region layer_tile_visible layer_tile_get_sprite layer_tile_get_xscale layer_tile_get_yscale layer_tile_get_blend layer_tile_get_alpha layer_tile_get_x layer_tile_get_y layer_tile_get_region layer_tile_get_visible layer_instance_get_instance instance_activate_layer instance_deactivate_layer camera_create camera_create_view camera_destroy camera_apply camera_get_active camera_get_default camera_set_default camera_set_view_mat camera_set_proj_mat camera_set_update_script camera_set_begin_script camera_set_end_script camera_set_view_pos camera_set_view_size camera_set_view_speed camera_set_view_border camera_set_view_angle camera_set_view_target camera_get_view_mat camera_get_proj_mat camera_get_update_script camera_get_begin_script camera_get_end_script camera_get_view_x camera_get_view_y camera_get_view_width camera_get_view_height camera_get_view_speed_x camera_get_view_speed_y camera_get_view_border_x camera_get_view_border_y camera_get_view_angle camera_get_view_target view_get_camera view_get_visible view_get_xport view_get_yport view_get_wport view_get_hport view_get_surface_id view_set_camera view_set_visible view_set_xport view_set_yport view_set_wport view_set_hport view_set_surface_id gesture_drag_time gesture_drag_distance gesture_flick_speed gesture_double_tap_time gesture_double_tap_distance gesture_pinch_distance gesture_pinch_angle_towards gesture_pinch_angle_away gesture_rotate_time gesture_rotate_angle gesture_tap_count gesture_get_drag_time gesture_get_drag_distance gesture_get_flick_speed gesture_get_double_tap_time gesture_get_double_tap_distance gesture_get_pinch_distance gesture_get_pinch_angle_towards gesture_get_pinch_angle_away gesture_get_rotate_time gesture_get_rotate_angle gesture_get_tap_count keyboard_virtual_show keyboard_virtual_hide keyboard_virtual_status keyboard_virtual_height\",literal:\"self other all noone global local undefined pointer_invalid pointer_null path_action_stop path_action_restart path_action_continue path_action_reverse true false pi GM_build_date GM_version GM_runtime_version timezone_local timezone_utc gamespeed_fps gamespeed_microseconds ev_create ev_destroy ev_step ev_alarm ev_keyboard ev_mouse ev_collision ev_other ev_draw ev_draw_begin ev_draw_end ev_draw_pre ev_draw_post ev_keypress ev_keyrelease ev_trigger ev_left_button ev_right_button ev_middle_button ev_no_button ev_left_press ev_right_press ev_middle_press ev_left_release ev_right_release ev_middle_release ev_mouse_enter ev_mouse_leave ev_mouse_wheel_up ev_mouse_wheel_down ev_global_left_button ev_global_right_button ev_global_middle_button ev_global_left_press ev_global_right_press ev_global_middle_press ev_global_left_release ev_global_right_release ev_global_middle_release ev_joystick1_left ev_joystick1_right ev_joystick1_up ev_joystick1_down ev_joystick1_button1 ev_joystick1_button2 ev_joystick1_button3 ev_joystick1_button4 ev_joystick1_button5 ev_joystick1_button6 ev_joystick1_button7 ev_joystick1_button8 ev_joystick2_left ev_joystick2_right ev_joystick2_up ev_joystick2_down ev_joystick2_button1 ev_joystick2_button2 ev_joystick2_button3 ev_joystick2_button4 ev_joystick2_button5 ev_joystick2_button6 ev_joystick2_button7 ev_joystick2_button8 ev_outside ev_boundary ev_game_start ev_game_end ev_room_start ev_room_end ev_no_more_lives ev_animation_end ev_end_of_path ev_no_more_health ev_close_button ev_user0 ev_user1 ev_user2 ev_user3 ev_user4 ev_user5 ev_user6 ev_user7 ev_user8 ev_user9 ev_user10 ev_user11 ev_user12 ev_user13 ev_user14 ev_user15 ev_step_normal ev_step_begin ev_step_end ev_gui ev_gui_begin ev_gui_end ev_cleanup ev_gesture ev_gesture_tap ev_gesture_double_tap ev_gesture_drag_start ev_gesture_dragging ev_gesture_drag_end ev_gesture_flick ev_gesture_pinch_start ev_gesture_pinch_in ev_gesture_pinch_out ev_gesture_pinch_end ev_gesture_rotate_start ev_gesture_rotating ev_gesture_rotate_end ev_global_gesture_tap ev_global_gesture_double_tap ev_global_gesture_drag_start ev_global_gesture_dragging ev_global_gesture_drag_end ev_global_gesture_flick ev_global_gesture_pinch_start ev_global_gesture_pinch_in ev_global_gesture_pinch_out ev_global_gesture_pinch_end ev_global_gesture_rotate_start ev_global_gesture_rotating ev_global_gesture_rotate_end vk_nokey vk_anykey vk_enter vk_return vk_shift vk_control vk_alt vk_escape vk_space vk_backspace vk_tab vk_pause vk_printscreen vk_left vk_right vk_up vk_down vk_home vk_end vk_delete vk_insert vk_pageup vk_pagedown vk_f1 vk_f2 vk_f3 vk_f4 vk_f5 vk_f6 vk_f7 vk_f8 vk_f9 vk_f10 vk_f11 vk_f12 vk_numpad0 vk_numpad1 vk_numpad2 vk_numpad3 vk_numpad4 vk_numpad5 vk_numpad6 vk_numpad7 vk_numpad8 vk_numpad9 vk_divide vk_multiply vk_subtract vk_add vk_decimal vk_lshift vk_lcontrol vk_lalt vk_rshift vk_rcontrol vk_ralt mb_any mb_none mb_left mb_right mb_middle c_aqua c_black c_blue c_dkgray c_fuchsia c_gray c_green c_lime c_ltgray c_maroon c_navy c_olive c_purple c_red c_silver c_teal c_white c_yellow c_orange fa_left fa_center fa_right fa_top fa_middle fa_bottom pr_pointlist pr_linelist pr_linestrip pr_trianglelist pr_trianglestrip pr_trianglefan bm_complex bm_normal bm_add bm_max bm_subtract bm_zero bm_one bm_src_colour bm_inv_src_colour bm_src_color bm_inv_src_color bm_src_alpha bm_inv_src_alpha bm_dest_alpha bm_inv_dest_alpha bm_dest_colour bm_inv_dest_colour bm_dest_color bm_inv_dest_color bm_src_alpha_sat tf_point tf_linear tf_anisotropic mip_off mip_on mip_markedonly audio_falloff_none audio_falloff_inverse_distance audio_falloff_inverse_distance_clamped audio_falloff_linear_distance audio_falloff_linear_distance_clamped audio_falloff_exponent_distance audio_falloff_exponent_distance_clamped audio_old_system audio_new_system audio_mono audio_stereo audio_3d cr_default cr_none cr_arrow cr_cross cr_beam cr_size_nesw cr_size_ns cr_size_nwse cr_size_we cr_uparrow cr_hourglass cr_drag cr_appstart cr_handpoint cr_size_all spritespeed_framespersecond spritespeed_framespergameframe asset_object asset_unknown asset_sprite asset_sound asset_room asset_path asset_script asset_font asset_timeline asset_tiles asset_shader fa_readonly fa_hidden fa_sysfile fa_volumeid fa_directory fa_archive ds_type_map ds_type_list ds_type_stack ds_type_queue ds_type_grid ds_type_priority ef_explosion ef_ring ef_ellipse ef_firework ef_smoke ef_smokeup ef_star ef_spark ef_flare ef_cloud ef_rain ef_snow pt_shape_pixel pt_shape_disk pt_shape_square pt_shape_line pt_shape_star pt_shape_circle pt_shape_ring pt_shape_sphere pt_shape_flare pt_shape_spark pt_shape_explosion pt_shape_cloud pt_shape_smoke pt_shape_snow ps_distr_linear ps_distr_gaussian ps_distr_invgaussian ps_shape_rectangle ps_shape_ellipse ps_shape_diamond ps_shape_line ty_real ty_string dll_cdecl dll_stdcall matrix_view matrix_projection matrix_world os_win32 os_windows os_macosx os_ios os_android os_symbian os_linux os_unknown os_winphone os_tizen os_win8native os_wiiu os_3ds os_psvita os_bb10 os_ps4 os_xboxone os_ps3 os_xbox360 os_uwp os_tvos os_switch browser_not_a_browser browser_unknown browser_ie browser_firefox browser_chrome browser_safari browser_safari_mobile browser_opera browser_tizen browser_edge browser_windows_store browser_ie_mobile device_ios_unknown device_ios_iphone device_ios_iphone_retina device_ios_ipad device_ios_ipad_retina device_ios_iphone5 device_ios_iphone6 device_ios_iphone6plus device_emulator device_tablet display_landscape display_landscape_flipped display_portrait display_portrait_flipped tm_sleep tm_countvsyncs of_challenge_win of_challen ge_lose of_challenge_tie leaderboard_type_number leaderboard_type_time_mins_secs cmpfunc_never cmpfunc_less cmpfunc_equal cmpfunc_lessequal cmpfunc_greater cmpfunc_notequal cmpfunc_greaterequal cmpfunc_always cull_noculling cull_clockwise cull_counterclockwise lighttype_dir lighttype_point iap_ev_storeload iap_ev_product iap_ev_purchase iap_ev_consume iap_ev_restore iap_storeload_ok iap_storeload_failed iap_status_uninitialised iap_status_unavailable iap_status_loading iap_status_available iap_status_processing iap_status_restoring iap_failed iap_unavailable iap_available iap_purchased iap_canceled iap_refunded fb_login_default fb_login_fallback_to_webview fb_login_no_fallback_to_webview fb_login_forcing_webview fb_login_use_system_account fb_login_forcing_safari phy_joint_anchor_1_x phy_joint_anchor_1_y phy_joint_anchor_2_x phy_joint_anchor_2_y phy_joint_reaction_force_x phy_joint_reaction_force_y phy_joint_reaction_torque phy_joint_motor_speed phy_joint_angle phy_joint_motor_torque phy_joint_max_motor_torque phy_joint_translation phy_joint_speed phy_joint_motor_force phy_joint_max_motor_force phy_joint_length_1 phy_joint_length_2 phy_joint_damping_ratio phy_joint_frequency phy_joint_lower_angle_limit phy_joint_upper_angle_limit phy_joint_angle_limits phy_joint_max_length phy_joint_max_torque phy_joint_max_force phy_debug_render_aabb phy_debug_render_collision_pairs phy_debug_render_coms phy_debug_render_core_shapes phy_debug_render_joints phy_debug_render_obb phy_debug_render_shapes phy_particle_flag_water phy_particle_flag_zombie phy_particle_flag_wall phy_particle_flag_spring phy_particle_flag_elastic phy_particle_flag_viscous phy_particle_flag_powder phy_particle_flag_tensile phy_particle_flag_colourmixing phy_particle_flag_colormixing phy_particle_group_flag_solid phy_particle_group_flag_rigid phy_particle_data_flag_typeflags phy_particle_data_flag_position phy_particle_data_flag_velocity phy_particle_data_flag_colour phy_particle_data_flag_color phy_particle_data_flag_category achievement_our_info achievement_friends_info achievement_leaderboard_info achievement_achievement_info achievement_filter_all_players achievement_filter_friends_only achievement_filter_favorites_only achievement_type_achievement_challenge achievement_type_score_challenge achievement_pic_loaded achievement_show_ui achievement_show_profile achievement_show_leaderboard achievement_show_achievement achievement_show_bank achievement_show_friend_picker achievement_show_purchase_prompt network_socket_tcp network_socket_udp network_socket_bluetooth network_type_connect network_type_disconnect network_type_data network_type_non_blocking_connect network_config_connect_timeout network_config_use_non_blocking_socket network_config_enable_reliable_udp network_config_disable_reliable_udp buffer_fixed buffer_grow buffer_wrap buffer_fast buffer_vbuffer buffer_network buffer_u8 buffer_s8 buffer_u16 buffer_s16 buffer_u32 buffer_s32 buffer_u64 buffer_f16 buffer_f32 buffer_f64 buffer_bool buffer_text buffer_string buffer_surface_copy buffer_seek_start buffer_seek_relative buffer_seek_end buffer_generalerror buffer_outofspace buffer_outofbounds buffer_invalidtype text_type button_type input_type ANSI_CHARSET DEFAULT_CHARSET EASTEUROPE_CHARSET RUSSIAN_CHARSET SYMBOL_CHARSET SHIFTJIS_CHARSET HANGEUL_CHARSET GB2312_CHARSET CHINESEBIG5_CHARSET JOHAB_CHARSET HEBREW_CHARSET ARABIC_CHARSET GREEK_CHARSET TURKISH_CHARSET VIETNAMESE_CHARSET THAI_CHARSET MAC_CHARSET BALTIC_CHARSET OEM_CHARSET gp_face1 gp_face2 gp_face3 gp_face4 gp_shoulderl gp_shoulderr gp_shoulderlb gp_shoulderrb gp_select gp_start gp_stickl gp_stickr gp_padu gp_padd gp_padl gp_padr gp_axislh gp_axislv gp_axisrh gp_axisrv ov_friends ov_community ov_players ov_settings ov_gamegroup ov_achievements lb_sort_none lb_sort_ascending lb_sort_descending lb_disp_none lb_disp_numeric lb_disp_time_sec lb_disp_time_ms ugc_result_success ugc_filetype_community ugc_filetype_microtrans ugc_visibility_public ugc_visibility_friends_only ugc_visibility_private ugc_query_RankedByVote ugc_query_RankedByPublicationDate ugc_query_AcceptedForGameRankedByAcceptanceDate ugc_query_RankedByTrend ugc_query_FavoritedByFriendsRankedByPublicationDate ugc_query_CreatedByFriendsRankedByPublicationDate ugc_query_RankedByNumTimesReported ugc_query_CreatedByFollowedUsersRankedByPublicationDate ugc_query_NotYetRated ugc_query_RankedByTotalVotesAsc ugc_query_RankedByVotesUp ugc_query_RankedByTextSearch ugc_sortorder_CreationOrderDesc ugc_sortorder_CreationOrderAsc ugc_sortorder_TitleAsc ugc_sortorder_LastUpdatedDesc ugc_sortorder_SubscriptionDateDesc ugc_sortorder_VoteScoreDesc ugc_sortorder_ForModeration ugc_list_Published ugc_list_VotedOn ugc_list_VotedUp ugc_list_VotedDown ugc_list_WillVoteLater ugc_list_Favorited ugc_list_Subscribed ugc_list_UsedOrPlayed ugc_list_Followed ugc_match_Items ugc_match_Items_Mtx ugc_match_Items_ReadyToUse ugc_match_Collections ugc_match_Artwork ugc_match_Videos ugc_match_Screenshots ugc_match_AllGuides ugc_match_WebGuides ugc_match_IntegratedGuides ugc_match_UsableInGame ugc_match_ControllerBindings vertex_usage_position vertex_usage_colour vertex_usage_color vertex_usage_normal vertex_usage_texcoord vertex_usage_textcoord vertex_usage_blendweight vertex_usage_blendindices vertex_usage_psize vertex_usage_tangent vertex_usage_binormal vertex_usage_fog vertex_usage_depth vertex_usage_sample vertex_type_float1 vertex_type_float2 vertex_type_float3 vertex_type_float4 vertex_type_colour vertex_type_color vertex_type_ubyte4 layerelementtype_undefined layerelementtype_background layerelementtype_instance layerelementtype_oldtilemap layerelementtype_sprite layerelementtype_tilemap layerelementtype_particlesystem layerelementtype_tile tile_rotate tile_flip tile_mirror tile_index_mask kbv_type_default kbv_type_ascii kbv_type_url kbv_type_email kbv_type_numbers kbv_type_phone kbv_type_phone_name kbv_returnkey_default kbv_returnkey_go kbv_returnkey_google kbv_returnkey_join kbv_returnkey_next kbv_returnkey_route kbv_returnkey_search kbv_returnkey_send kbv_returnkey_yahoo kbv_returnkey_done kbv_returnkey_continue kbv_returnkey_emergency kbv_autocapitalize_none kbv_autocapitalize_words kbv_autocapitalize_sentences kbv_autocapitalize_characters\",symbol:\"argument_relative argument argument0 argument1 argument2 argument3 argument4 argument5 argument6 argument7 argument8 argument9 argument10 argument11 argument12 argument13 argument14 argument15 argument_count x|0 y|0 xprevious yprevious xstart ystart hspeed vspeed direction speed friction gravity gravity_direction path_index path_position path_positionprevious path_speed path_scale path_orientation path_endaction object_index id solid persistent mask_index instance_count instance_id room_speed fps fps_real current_time current_year current_month current_day current_weekday current_hour current_minute current_second alarm timeline_index timeline_position timeline_speed timeline_running timeline_loop room room_first room_last room_width room_height room_caption room_persistent score lives health show_score show_lives show_health caption_score caption_lives caption_health event_type event_number event_object event_action application_surface gamemaker_pro gamemaker_registered gamemaker_version error_occurred error_last debug_mode keyboard_key keyboard_lastkey keyboard_lastchar keyboard_string mouse_x mouse_y mouse_button mouse_lastbutton cursor_sprite visible sprite_index sprite_width sprite_height sprite_xoffset sprite_yoffset image_number image_index image_speed depth image_xscale image_yscale image_angle image_alpha image_blend bbox_left bbox_right bbox_top bbox_bottom layer background_colour background_showcolour background_color background_showcolor view_enabled view_current view_visible view_xview view_yview view_wview view_hview view_xport view_yport view_wport view_hport view_angle view_hborder view_vborder view_hspeed view_vspeed view_object view_surface_id view_camera game_id game_display_name game_project_name game_save_id working_directory temp_directory program_directory browser_width browser_height os_type os_device os_browser os_version display_aa async_load delta_time webgl_enabled event_data iap_data phy_rotation phy_position_x phy_position_y phy_angular_velocity phy_linear_velocity_x phy_linear_velocity_y phy_speed_x phy_speed_y phy_speed phy_angular_damping phy_linear_damping phy_bullet phy_fixed_rotation phy_active phy_mass phy_inertia phy_com_x phy_com_y phy_dynamic phy_kinematic phy_sleeping phy_collision_points phy_collision_x phy_collision_y phy_col_normal_x phy_col_normal_y phy_position_xprevious phy_position_yprevious\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}};var Xt=function(e){const t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",literal:\"true false iota nil\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{name:\"Go\",aliases:[\"golang\"],keywords:t,illegal:\"function(e){return e?\"string\"==typeof e?e:e.source:null}(e))).join(\"\")}(\"(?=\",e,\")\")}function ta(e,t={}){return t.variants=e,t}var aa=function(e){const t=\"[A-Za-z0-9_$]+\",a=ta([e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:\"@[A-Za-z]+\"}]})]),n={className:\"regexp\",begin:/~?\\/[^\\/\\n]+\\//,contains:[e.BACKSLASH_ESCAPE]},i=ta([e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]),r=ta([{begin:/\"\"\"/,end:/\"\"\"/},{begin:/'''/,end:/'''/},{begin:\"\\\\$/\",end:\"/\\\\$\",relevance:10},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE],{className:\"string\"});return{name:\"Groovy\",keywords:{built_in:\"this super\",literal:\"true false null\",keyword:\"byte short char int long boolean float double void def as in assert trait abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},contains:[e.SHEBANG({binary:\"groovy\",relevance:10}),a,r,n,i,{className:\"class\",beginKeywords:\"class interface trait enum\",end:/\\{/,illegal:\":\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{className:\"meta\",begin:\"@[A-Za-z]+\",relevance:0},{className:\"attr\",begin:t+\"[ \\t]*:\",relevance:0},{begin:/\\?/,end:/:/,relevance:0,contains:[a,r,n,i,\"self\"]},{className:\"symbol\",begin:\"^[ \\t]*\"+ea(t+\":\"),excludeBegin:!0,end:t+\":\",relevance:0}],illegal:/#|<\\//}};var na=function(e){return{name:\"HAML\",case_insensitive:!0,contains:[{className:\"meta\",begin:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",relevance:10},e.COMMENT(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{relevance:0}),{begin:\"^\\\\s*(-|=|!=)(?!#)\",starts:{end:\"\\\\n\",subLanguage:\"ruby\"}},{className:\"tag\",begin:\"^\\\\s*%\",contains:[{className:\"selector-tag\",begin:\"\\\\w+\"},{className:\"selector-id\",begin:\"#[\\\\w-]+\"},{className:\"selector-class\",begin:\"\\\\.[\\\\w-]+\"},{begin:/\\{\\s*/,end:/\\s*\\}/,contains:[{begin:\":\\\\w+\\\\s*=>\",end:\",\\\\s+\",returnBegin:!0,endsWithParent:!0,contains:[{className:\"attr\",begin:\":\\\\w+\"},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"\\\\w+\",relevance:0}]}]},{begin:\"\\\\(\\\\s*\",end:\"\\\\s*\\\\)\",excludeEnd:!0,contains:[{begin:\"\\\\w+\\\\s*=\",end:\"\\\\s+\",returnBegin:!0,endsWithParent:!0,contains:[{className:\"attr\",begin:\"\\\\w+\",relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"\\\\w+\",relevance:0}]}]}]},{begin:\"^\\\\s*[=~]\\\\s*\"},{begin:/#\\{/,starts:{end:/\\}/,subLanguage:\"ruby\"}}]}};function ia(e){return e?\"string\"==typeof e?e:e.source:null}function ra(...e){return e.map((e=>ia(e))).join(\"\")}var sa=function(e){const t={\"builtin-name\":[\"action\",\"bindattr\",\"collection\",\"component\",\"concat\",\"debugger\",\"each\",\"each-in\",\"get\",\"hash\",\"if\",\"in\",\"input\",\"link-to\",\"loc\",\"log\",\"lookup\",\"mut\",\"outlet\",\"partial\",\"query-params\",\"render\",\"template\",\"textarea\",\"unbound\",\"unless\",\"view\",\"with\",\"yield\"]},a=/\\[\\]|\\[[^\\]]+\\]/,n=/[^\\s!\"#%&'()*+,.\\/;<=>@\\[\\\\\\]^`{|}~]+/,i=function(...e){return\"(\"+e.map((e=>ia(e))).join(\"|\")+\")\"}(/\"\"|\"[^\"]+\"/,/''|'[^']+'/,a,n),r=ra(ra(\"(\",/\\.|\\.\\/|\\//,\")?\"),i,function(e){return ra(\"(\",e,\")*\")}(ra(/(\\.|\\/)/,i))),s=ra(\"(\",a,\"|\",n,\")(?==)\"),o={begin:r,lexemes:/[\\w.\\/]+/},l=e.inherit(o,{keywords:{literal:[\"true\",\"false\",\"undefined\",\"null\"]}}),c={begin:/\\(/,end:/\\)/},_={className:\"attr\",begin:s,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,l,c]}}},d={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:/as\\s+\\|/,keywords:{keyword:\"as\"},end:/\\|/,contains:[{begin:/\\w+/}]},_,l,c],returnEnd:!0},m=e.inherit(o,{className:\"name\",keywords:t,starts:e.inherit(d,{end:/\\)/})});c.contains=[m];const u=e.inherit(o,{keywords:t,className:\"name\",starts:e.inherit(d,{end:/\\}\\}/})}),p=e.inherit(o,{keywords:t,className:\"name\"}),g=e.inherit(o,{className:\"name\",keywords:t,starts:e.inherit(d,{end:/\\}\\}/})});return{name:\"Handlebars\",aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\",\"htmlbars\"],case_insensitive:!0,subLanguage:\"xml\",contains:[{begin:/\\\\\\{\\{/,skip:!0},{begin:/\\\\\\\\(?=\\{\\{)/,skip:!0},e.COMMENT(/\\{\\{!--/,/--\\}\\}/),e.COMMENT(/\\{\\{!/,/\\}\\}/),{className:\"template-tag\",begin:/\\{\\{\\{\\{(?!\\/)/,end:/\\}\\}\\}\\}/,contains:[u],starts:{end:/\\{\\{\\{\\{\\//,returnEnd:!0,subLanguage:\"xml\"}},{className:\"template-tag\",begin:/\\{\\{\\{\\{\\//,end:/\\}\\}\\}\\}/,contains:[p]},{className:\"template-tag\",begin:/\\{\\{#/,end:/\\}\\}/,contains:[u]},{className:\"template-tag\",begin:/\\{\\{(?=else\\}\\})/,end:/\\}\\}/,keywords:\"else\"},{className:\"template-tag\",begin:/\\{\\{(?=else if)/,end:/\\}\\}/,keywords:\"else if\"},{className:\"template-tag\",begin:/\\{\\{\\//,end:/\\}\\}/,contains:[p]},{className:\"template-variable\",begin:/\\{\\{\\{/,end:/\\}\\}\\}/,contains:[g]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[g]}]}};var oa=function(e){const t={variants:[e.COMMENT(\"--\",\"$\"),e.COMMENT(/\\{-/,/-\\}/,{contains:[\"self\"]})]},a={className:\"meta\",begin:/\\{-#/,end:/#-\\}/},n={className:\"meta\",begin:\"^#\",end:\"$\"},i={className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},r={begin:\"\\\\(\",end:\"\\\\)\",illegal:'\"',contains:[a,n,{className:\"type\",begin:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TITLE_MODE,{begin:\"[_a-z][\\\\w']*\"}),t]};return{name:\"Haskell\",aliases:[\"hs\"],keywords:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",contains:[{beginKeywords:\"module\",end:\"where\",keywords:\"module where\",contains:[r,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"\\\\bimport\\\\b\",end:\"$\",keywords:\"import qualified as hiding\",contains:[r,t],illegal:\"\\\\W\\\\.|;\"},{className:\"class\",begin:\"^(\\\\s*)?(class|instance)\\\\b\",end:\"where\",keywords:\"class family instance where\",contains:[i,r,t]},{className:\"class\",begin:\"\\\\b(data|(new)?type)\\\\b\",end:\"$\",keywords:\"data family type newtype deriving\",contains:[a,i,r,{begin:/\\{/,end:/\\}/,contains:r.contains},t]},{beginKeywords:\"default\",end:\"$\",contains:[i,r,t]},{beginKeywords:\"infix infixl infixr\",end:\"$\",contains:[e.C_NUMBER_MODE,t]},{begin:\"\\\\bforeign\\\\b\",end:\"$\",keywords:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",contains:[i,e.QUOTE_STRING_MODE,t]},{className:\"meta\",begin:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",end:\"$\"},a,n,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,i,e.inherit(e.TITLE_MODE,{begin:\"^[_a-z][\\\\w']*\"}),t,{begin:\"->|<-\"}]}};var la=function(e){return{name:\"Haxe\",aliases:[\"hx\"],keywords:{keyword:\"break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while Int Float String Bool Dynamic Void Array \",built_in:\"trace this\",literal:\"true false null _\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE,{className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\"},{className:\"subst\",begin:\"\\\\$\",end:/\\W\\}/}]},e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"@:\",end:\"$\"},{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elseif end error\"}},{className:\"type\",begin:\":[ \\t]*\",end:\"[^A-Za-z0-9_ \\t\\\\->]\",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:\":[ \\t]*\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"new *\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"class\",beginKeywords:\"enum\",end:\"\\\\{\",contains:[e.TITLE_MODE]},{className:\"class\",beginKeywords:\"abstract\",end:\"[\\\\{$]\",contains:[{className:\"type\",begin:\"\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"from +\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"to +\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},e.TITLE_MODE],keywords:{keyword:\"abstract from to\"}},{className:\"class\",begin:\"\\\\b(class|interface) +\",end:\"[\\\\{$]\",excludeEnd:!0,keywords:\"class interface\",contains:[{className:\"keyword\",begin:\"\\\\b(extends|implements) +\",keywords:\"extends implements\",contains:[{className:\"type\",begin:e.IDENT_RE,relevance:0}]},e.TITLE_MODE]},{className:\"function\",beginKeywords:\"function\",end:\"\\\\(\",excludeEnd:!0,illegal:\"\\\\S\",contains:[e.TITLE_MODE]}],illegal:/<\\//}};var ca=function(e){return{name:\"HSP\",case_insensitive:!0,keywords:{$pattern:/[\\w._]+/,keyword:\"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:\"string\",begin:/\\{\"/,end:/\"\\}/,contains:[e.BACKSLASH_ESCAPE]},e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib\"},contains:[e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"}),e.NUMBER_MODE,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"symbol\",begin:\"^\\\\*(\\\\w+|@)\"},e.NUMBER_MODE,e.C_NUMBER_MODE]}};function _a(e){return e?\"string\"==typeof e?e:e.source:null}function da(...e){return e.map((e=>_a(e))).join(\"\")}function ma(e){const t={\"builtin-name\":[\"action\",\"bindattr\",\"collection\",\"component\",\"concat\",\"debugger\",\"each\",\"each-in\",\"get\",\"hash\",\"if\",\"in\",\"input\",\"link-to\",\"loc\",\"log\",\"lookup\",\"mut\",\"outlet\",\"partial\",\"query-params\",\"render\",\"template\",\"textarea\",\"unbound\",\"unless\",\"view\",\"with\",\"yield\"]},a=/\\[\\]|\\[[^\\]]+\\]/,n=/[^\\s!\"#%&'()*+,.\\/;<=>@\\[\\\\\\]^`{|}~]+/,i=function(...e){return\"(\"+e.map((e=>_a(e))).join(\"|\")+\")\"}(/\"\"|\"[^\"]+\"/,/''|'[^']+'/,a,n),r=da(da(\"(\",/\\.|\\.\\/|\\//,\")?\"),i,function(e){return da(\"(\",e,\")*\")}(da(/(\\.|\\/)/,i)));const s=da(\"(\",a,\"|\",n,\")(?==)\"),o={begin:r,lexemes:/[\\w.\\/]+/},l=e.inherit(o,{keywords:{literal:[\"true\",\"false\",\"undefined\",\"null\"]}}),c={begin:/\\(/,end:/\\)/},_={className:\"attr\",begin:s,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,l,c]}}},d={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:/as\\s+\\|/,keywords:{keyword:\"as\"},end:/\\|/,contains:[{begin:/\\w+/}]},_,l,c],returnEnd:!0},m=e.inherit(o,{className:\"name\",keywords:t,starts:e.inherit(d,{end:/\\)/})});c.contains=[m];const u=e.inherit(o,{keywords:t,className:\"name\",starts:e.inherit(d,{end:/\\}\\}/})}),p=e.inherit(o,{keywords:t,className:\"name\"}),g=e.inherit(o,{className:\"name\",keywords:t,starts:e.inherit(d,{end:/\\}\\}/})});return{name:\"Handlebars\",aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\",\"htmlbars\"],case_insensitive:!0,subLanguage:\"xml\",contains:[{begin:/\\\\\\{\\{/,skip:!0},{begin:/\\\\\\\\(?=\\{\\{)/,skip:!0},e.COMMENT(/\\{\\{!--/,/--\\}\\}/),e.COMMENT(/\\{\\{!/,/\\}\\}/),{className:\"template-tag\",begin:/\\{\\{\\{\\{(?!\\/)/,end:/\\}\\}\\}\\}/,contains:[u],starts:{end:/\\{\\{\\{\\{\\//,returnEnd:!0,subLanguage:\"xml\"}},{className:\"template-tag\",begin:/\\{\\{\\{\\{\\//,end:/\\}\\}\\}\\}/,contains:[p]},{className:\"template-tag\",begin:/\\{\\{#/,end:/\\}\\}/,contains:[u]},{className:\"template-tag\",begin:/\\{\\{(?=else\\}\\})/,end:/\\}\\}/,keywords:\"else\"},{className:\"template-tag\",begin:/\\{\\{(?=else if)/,end:/\\}\\}/,keywords:\"else if\"},{className:\"template-tag\",begin:/\\{\\{\\//,end:/\\}\\}/,contains:[p]},{className:\"template-variable\",begin:/\\{\\{\\{/,end:/\\}\\}\\}/,contains:[g]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[g]}]}}var ua=function(e){const t=ma(e);return t.name=\"HTMLbars\",e.getLanguage(\"handlebars\")&&(t.disableAutodetect=!0),t};function pa(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var ga=function(e){const t=\"HTTP/(2|1\\\\.[01])\",a={className:\"attribute\",begin:pa(\"^\",/[A-Za-z][A-Za-z0-9-]*/,\"(?=\\\\:\\\\s)\"),starts:{contains:[{className:\"punctuation\",begin:/: /,relevance:0,starts:{end:\"$\",relevance:0}}]}},n=[a,{begin:\"\\\\n\\\\n\",starts:{subLanguage:[],endsWithParent:!0}}];return{name:\"HTTP\",aliases:[\"https\"],illegal:/\\S/,contains:[{begin:\"^(?=\"+t+\" \\\\d{3})\",end:/$/,contains:[{className:\"meta\",begin:t},{className:\"number\",begin:\"\\\\b\\\\d{3}\\\\b\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:n}},{begin:\"(?=^[A-Z]+ (.*?) \"+t+\"$)\",end:/$/,contains:[{className:\"string\",begin:\" \",end:\" \",excludeBegin:!0,excludeEnd:!0},{className:\"meta\",begin:t},{className:\"keyword\",begin:\"[A-Z]+\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:n}},e.inherit(a,{relevance:0})]}};var Ea=function(e){var t=\"a-zA-Z_\\\\-!.?+*=<>&#'\",a=\"[\"+t+\"][\"+t+\"0-9/;:]*\",n={$pattern:a,\"builtin-name\":\"!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~\"},i={begin:a,relevance:0},r={className:\"number\",begin:\"[-+]?\\\\d+(\\\\.\\\\d+)?\",relevance:0},s=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),o=e.COMMENT(\";\",\"$\",{relevance:0}),l={className:\"literal\",begin:/\\b([Tt]rue|[Ff]alse|nil|None)\\b/},c={begin:\"[\\\\[\\\\{]\",end:\"[\\\\]\\\\}]\"},_={className:\"comment\",begin:\"\\\\^\"+a},d=e.COMMENT(\"\\\\^\\\\{\",\"\\\\}\"),m={className:\"symbol\",begin:\"[:]{1,2}\"+a},u={begin:\"\\\\(\",end:\"\\\\)\"},p={endsWithParent:!0,relevance:0},g={className:\"name\",relevance:0,keywords:n,begin:a,starts:p},E=[u,s,_,d,o,m,c,r,l,i];return u.contains=[e.COMMENT(\"comment\",\"\"),g,p],p.contains=E,c.contains=E,{name:\"Hy\",aliases:[\"hylang\"],illegal:/\\S/,contains:[e.SHEBANG(),u,s,_,d,o,m,c,r,l]}};var Sa=function(e){return{name:\"Inform 7\",aliases:[\"i7\"],case_insensitive:!0,keywords:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},contains:[{className:\"string\",begin:'\"',end:'\"',relevance:0,contains:[{className:\"subst\",begin:\"\\\\[\",end:\"\\\\]\"}]},{className:\"section\",begin:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,end:\"$\"},{begin:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,end:\":\",contains:[{begin:\"\\\\(This\",end:\"\\\\)\"}]},{className:\"comment\",begin:\"\\\\[\",end:\"\\\\]\",contains:[\"self\"]}]}};function ba(e){return e?\"string\"==typeof e?e:e.source:null}function Ta(...e){return e.map((e=>ba(e))).join(\"\")}var fa=function(e){const t={className:\"number\",relevance:0,variants:[{begin:/([+-]+)?[\\d]+_[\\d_]+/},{begin:e.NUMBER_RE}]},a=e.COMMENT();a.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const n={className:\"variable\",variants:[{begin:/\\$[\\w\\d\"][\\w\\d_]*/},{begin:/\\$\\{(.*?)\\}/}]},i={className:\"literal\",begin:/\\bon|off|true|false|yes|no\\b/},r={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:\"'''\",end:\"'''\",relevance:10},{begin:'\"\"\"',end:'\"\"\"',relevance:10},{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"}]},s={begin:/\\[/,end:/\\]/,contains:[a,i,n,r,t,\"self\"],relevance:0},o=function(...e){return\"(\"+e.map((e=>ba(e))).join(\"|\")+\")\"}(/[A-Za-z0-9_-]+/,/\"(\\\\\"|[^\"])*\"/,/'[^']*'/);return{name:\"TOML, also INI\",aliases:[\"toml\"],case_insensitive:!0,illegal:/\\S/,contains:[a,{className:\"section\",begin:/\\[+/,end:/\\]+/},{begin:Ta(o,\"(\\\\s*\\\\.\\\\s*\",o,\")*\",Ta(\"(?=\",/\\s*=\\s*[^#\\s]/,\")\")),className:\"attr\",starts:{end:/$/,contains:[a,s,i,n,r,t]}}]}};function Ca(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Na=function(e){const t=/(_[a-z_\\d]+)?/,a=/([de][+-]?\\d+)?/,n={className:\"number\",variants:[{begin:Ca(/\\b\\d+/,/\\.(\\d*)/,a,t)},{begin:Ca(/\\b\\d+/,a,t)},{begin:Ca(/\\.\\d+/,a,t)}],relevance:0};return{name:\"IRPF90\",case_insensitive:!0,keywords:{literal:\".False. .True.\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"},illegal:/\\/\\*/,contains:[e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{className:\"string\",relevance:0}),{className:\"function\",beginKeywords:\"subroutine function program\",illegal:\"[${=\\\\n]\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},e.COMMENT(\"!\",\"$\",{relevance:0}),e.COMMENT(\"begin_doc\",\"end_doc\",{relevance:10}),n]}};var Ra=function(e){const t=\"[A-Za-zА-Яа-яёЁ_!][A-Za-zА-Яа-яёЁ_0-9]*\",a={className:\"number\",begin:e.NUMBER_RE,relevance:0},n={className:\"string\",variants:[{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"}]},i={className:\"doctag\",begin:\"\\\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\\\b\",relevance:0},r={variants:[{className:\"comment\",begin:\"//\",end:\"$\",relevance:0,contains:[e.PHRASAL_WORDS_MODE,i]},{className:\"comment\",begin:\"/\\\\*\",end:\"\\\\*/\",relevance:0,contains:[e.PHRASAL_WORDS_MODE,i]}]},s={$pattern:t,keyword:\"and и else иначе endexcept endfinally endforeach конецвсе endif конецесли endwhile конецпока except exitfor finally foreach все if если in в not не or или try while пока \",built_in:\"SYSRES_CONST_ACCES_RIGHT_TYPE_EDIT SYSRES_CONST_ACCES_RIGHT_TYPE_FULL SYSRES_CONST_ACCES_RIGHT_TYPE_VIEW SYSRES_CONST_ACCESS_MODE_REQUISITE_CODE SYSRES_CONST_ACCESS_NO_ACCESS_VIEW SYSRES_CONST_ACCESS_NO_ACCESS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW SYSRES_CONST_ACCESS_RIGHTS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_TYPE_CHANGE SYSRES_CONST_ACCESS_TYPE_CHANGE_CODE SYSRES_CONST_ACCESS_TYPE_EXISTS SYSRES_CONST_ACCESS_TYPE_EXISTS_CODE SYSRES_CONST_ACCESS_TYPE_FULL SYSRES_CONST_ACCESS_TYPE_FULL_CODE SYSRES_CONST_ACCESS_TYPE_VIEW SYSRES_CONST_ACCESS_TYPE_VIEW_CODE SYSRES_CONST_ACTION_TYPE_ABORT SYSRES_CONST_ACTION_TYPE_ACCEPT SYSRES_CONST_ACTION_TYPE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ADD_ATTACHMENT SYSRES_CONST_ACTION_TYPE_CHANGE_CARD SYSRES_CONST_ACTION_TYPE_CHANGE_KIND SYSRES_CONST_ACTION_TYPE_CHANGE_STORAGE SYSRES_CONST_ACTION_TYPE_CONTINUE SYSRES_CONST_ACTION_TYPE_COPY SYSRES_CONST_ACTION_TYPE_CREATE SYSRES_CONST_ACTION_TYPE_CREATE_VERSION SYSRES_CONST_ACTION_TYPE_DELETE SYSRES_CONST_ACTION_TYPE_DELETE_ATTACHMENT SYSRES_CONST_ACTION_TYPE_DELETE_VERSION SYSRES_CONST_ACTION_TYPE_DISABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE_AND_PASSWORD SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_PASSWORD SYSRES_CONST_ACTION_TYPE_EXPORT_WITH_LOCK SYSRES_CONST_ACTION_TYPE_EXPORT_WITHOUT_LOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITH_UNLOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITHOUT_UNLOCK SYSRES_CONST_ACTION_TYPE_LIFE_CYCLE_STAGE SYSRES_CONST_ACTION_TYPE_LOCK SYSRES_CONST_ACTION_TYPE_LOCK_FOR_SERVER SYSRES_CONST_ACTION_TYPE_LOCK_MODIFY SYSRES_CONST_ACTION_TYPE_MARK_AS_READED SYSRES_CONST_ACTION_TYPE_MARK_AS_UNREADED SYSRES_CONST_ACTION_TYPE_MODIFY SYSRES_CONST_ACTION_TYPE_MODIFY_CARD SYSRES_CONST_ACTION_TYPE_MOVE_TO_ARCHIVE SYSRES_CONST_ACTION_TYPE_OFF_ENCRYPTION SYSRES_CONST_ACTION_TYPE_PASSWORD_CHANGE SYSRES_CONST_ACTION_TYPE_PERFORM SYSRES_CONST_ACTION_TYPE_RECOVER_FROM_LOCAL_COPY SYSRES_CONST_ACTION_TYPE_RESTART SYSRES_CONST_ACTION_TYPE_RESTORE_FROM_ARCHIVE SYSRES_CONST_ACTION_TYPE_REVISION SYSRES_CONST_ACTION_TYPE_SEND_BY_MAIL SYSRES_CONST_ACTION_TYPE_SIGN SYSRES_CONST_ACTION_TYPE_START SYSRES_CONST_ACTION_TYPE_UNLOCK SYSRES_CONST_ACTION_TYPE_UNLOCK_FROM_SERVER SYSRES_CONST_ACTION_TYPE_VERSION_STATE SYSRES_CONST_ACTION_TYPE_VERSION_VISIBILITY SYSRES_CONST_ACTION_TYPE_VIEW SYSRES_CONST_ACTION_TYPE_VIEW_SHADOW_COPY SYSRES_CONST_ACTION_TYPE_WORKFLOW_DESCRIPTION_MODIFY SYSRES_CONST_ACTION_TYPE_WRITE_HISTORY SYSRES_CONST_ACTIVE_VERSION_STATE_PICK_VALUE SYSRES_CONST_ADD_REFERENCE_MODE_NAME SYSRES_CONST_ADDITION_REQUISITE_CODE SYSRES_CONST_ADDITIONAL_PARAMS_REQUISITE_CODE SYSRES_CONST_ADITIONAL_JOB_END_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_READ_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_START_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_STATE_REQUISITE_NAME SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE_ACTION SYSRES_CONST_ALL_ACCEPT_CONDITION_RUS SYSRES_CONST_ALL_USERS_GROUP SYSRES_CONST_ALL_USERS_GROUP_NAME SYSRES_CONST_ALL_USERS_SERVER_GROUP_NAME SYSRES_CONST_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_APP_VIEWER_TYPE_REQUISITE_CODE SYSRES_CONST_APPROVING_SIGNATURE_NAME SYSRES_CONST_APPROVING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE_CODE SYSRES_CONST_ATTACH_TYPE_COMPONENT_TOKEN SYSRES_CONST_ATTACH_TYPE_DOC SYSRES_CONST_ATTACH_TYPE_EDOC SYSRES_CONST_ATTACH_TYPE_FOLDER SYSRES_CONST_ATTACH_TYPE_JOB SYSRES_CONST_ATTACH_TYPE_REFERENCE SYSRES_CONST_ATTACH_TYPE_TASK SYSRES_CONST_AUTH_ENCODED_PASSWORD SYSRES_CONST_AUTH_ENCODED_PASSWORD_CODE SYSRES_CONST_AUTH_NOVELL SYSRES_CONST_AUTH_PASSWORD SYSRES_CONST_AUTH_PASSWORD_CODE SYSRES_CONST_AUTH_WINDOWS SYSRES_CONST_AUTHENTICATING_SIGNATURE_NAME SYSRES_CONST_AUTHENTICATING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_AUTO_ENUM_METHOD_FLAG SYSRES_CONST_AUTO_NUMERATION_CODE SYSRES_CONST_AUTO_STRONG_ENUM_METHOD_FLAG SYSRES_CONST_AUTOTEXT_NAME_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_TEXT_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_USAGE_ALL SYSRES_CONST_AUTOTEXT_USAGE_ALL_CODE SYSRES_CONST_AUTOTEXT_USAGE_SIGN SYSRES_CONST_AUTOTEXT_USAGE_SIGN_CODE SYSRES_CONST_AUTOTEXT_USAGE_WORK SYSRES_CONST_AUTOTEXT_USAGE_WORK_CODE SYSRES_CONST_AUTOTEXT_USE_ANYWHERE_CODE SYSRES_CONST_AUTOTEXT_USE_ON_SIGNING_CODE SYSRES_CONST_AUTOTEXT_USE_ON_WORK_CODE SYSRES_CONST_BEGIN_DATE_REQUISITE_CODE SYSRES_CONST_BLACK_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BLUE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BTN_PART SYSRES_CONST_CALCULATED_ROLE_TYPE_CODE SYSRES_CONST_CALL_TYPE_VARIABLE_BUTTON_VALUE SYSRES_CONST_CALL_TYPE_VARIABLE_PROGRAM_VALUE SYSRES_CONST_CANCEL_MESSAGE_FUNCTION_RESULT SYSRES_CONST_CARD_PART SYSRES_CONST_CARD_REFERENCE_MODE_NAME SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_AND_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_VALUE SYSRES_CONST_CHECK_PARAM_VALUE_DATE_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_FLOAT_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_INTEGER_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_PICK_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_REEFRENCE_PARAM_TYPE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_CODE_COMPONENT_TYPE_ADMIN SYSRES_CONST_CODE_COMPONENT_TYPE_DEVELOPER SYSRES_CONST_CODE_COMPONENT_TYPE_DOCS SYSRES_CONST_CODE_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_CODE_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_CODE_COMPONENT_TYPE_OTHER SYSRES_CONST_CODE_COMPONENT_TYPE_REFERENCE SYSRES_CONST_CODE_COMPONENT_TYPE_REPORT SYSRES_CONST_CODE_COMPONENT_TYPE_SCRIPT SYSRES_CONST_CODE_COMPONENT_TYPE_URL SYSRES_CONST_CODE_REQUISITE_ACCESS SYSRES_CONST_CODE_REQUISITE_CODE SYSRES_CONST_CODE_REQUISITE_COMPONENT SYSRES_CONST_CODE_REQUISITE_DESCRIPTION SYSRES_CONST_CODE_REQUISITE_EXCLUDE_COMPONENT SYSRES_CONST_CODE_REQUISITE_RECORD SYSRES_CONST_COMMENT_REQ_CODE SYSRES_CONST_COMMON_SETTINGS_REQUISITE_CODE SYSRES_CONST_COMP_CODE_GRD SYSRES_CONST_COMPONENT_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_COMPONENT_TYPE_ADMIN_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DEVELOPER_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DOCS SYSRES_CONST_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_COMPONENT_TYPE_EDOCS SYSRES_CONST_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_COMPONENT_TYPE_OTHER SYSRES_CONST_COMPONENT_TYPE_REFERENCE_TYPES SYSRES_CONST_COMPONENT_TYPE_REFERENCES SYSRES_CONST_COMPONENT_TYPE_REPORTS SYSRES_CONST_COMPONENT_TYPE_SCRIPTS SYSRES_CONST_COMPONENT_TYPE_URL SYSRES_CONST_COMPONENTS_REMOTE_SERVERS_VIEW_CODE SYSRES_CONST_CONDITION_BLOCK_DESCRIPTION SYSRES_CONST_CONST_FIRM_STATUS_COMMON SYSRES_CONST_CONST_FIRM_STATUS_INDIVIDUAL SYSRES_CONST_CONST_NEGATIVE_VALUE SYSRES_CONST_CONST_POSITIVE_VALUE SYSRES_CONST_CONST_SERVER_STATUS_DONT_REPLICATE SYSRES_CONST_CONST_SERVER_STATUS_REPLICATE SYSRES_CONST_CONTENTS_REQUISITE_CODE SYSRES_CONST_DATA_TYPE_BOOLEAN SYSRES_CONST_DATA_TYPE_DATE SYSRES_CONST_DATA_TYPE_FLOAT SYSRES_CONST_DATA_TYPE_INTEGER SYSRES_CONST_DATA_TYPE_PICK SYSRES_CONST_DATA_TYPE_REFERENCE SYSRES_CONST_DATA_TYPE_STRING SYSRES_CONST_DATA_TYPE_TEXT SYSRES_CONST_DATA_TYPE_VARIANT SYSRES_CONST_DATE_CLOSE_REQ_CODE SYSRES_CONST_DATE_FORMAT_DATE_ONLY_CHAR SYSRES_CONST_DATE_OPEN_REQ_CODE SYSRES_CONST_DATE_REQUISITE SYSRES_CONST_DATE_REQUISITE_CODE SYSRES_CONST_DATE_REQUISITE_NAME SYSRES_CONST_DATE_REQUISITE_TYPE SYSRES_CONST_DATE_TYPE_CHAR SYSRES_CONST_DATETIME_FORMAT_VALUE SYSRES_CONST_DEA_ACCESS_RIGHTS_ACTION_CODE SYSRES_CONST_DESCRIPTION_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_DET1_PART SYSRES_CONST_DET2_PART SYSRES_CONST_DET3_PART SYSRES_CONST_DET4_PART SYSRES_CONST_DET5_PART SYSRES_CONST_DET6_PART SYSRES_CONST_DETAIL_DATASET_KEY_REQUISITE_CODE SYSRES_CONST_DETAIL_PICK_REQUISITE_CODE SYSRES_CONST_DETAIL_REQ_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_NAME SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_NAME SYSRES_CONST_DOCUMENT_STORAGES_CODE SYSRES_CONST_DOCUMENT_TEMPLATES_TYPE_NAME SYSRES_CONST_DOUBLE_REQUISITE_CODE SYSRES_CONST_EDITOR_CLOSE_FILE_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_CLOSE_PROCESS_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_TYPE_REQUISITE_CODE SYSRES_CONST_EDITORS_APPLICATION_NAME_REQUISITE_CODE SYSRES_CONST_EDITORS_CREATE_SEVERAL_PROCESSES_REQUISITE_CODE SYSRES_CONST_EDITORS_EXTENSION_REQUISITE_CODE SYSRES_CONST_EDITORS_OBSERVER_BY_PROCESS_TYPE SYSRES_CONST_EDITORS_REFERENCE_CODE SYSRES_CONST_EDITORS_REPLACE_SPEC_CHARS_REQUISITE_CODE SYSRES_CONST_EDITORS_USE_PLUGINS_REQUISITE_CODE SYSRES_CONST_EDITORS_VIEW_DOCUMENT_OPENED_TO_EDIT_CODE SYSRES_CONST_EDOC_CARD_TYPE_REQUISITE_CODE SYSRES_CONST_EDOC_CARD_TYPES_LINK_REQUISITE_CODE SYSRES_CONST_EDOC_CERTIFICATE_AND_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_CERTIFICATE_ENCODE_CODE SYSRES_CONST_EDOC_DATE_REQUISITE_CODE SYSRES_CONST_EDOC_KIND_REFERENCE_CODE SYSRES_CONST_EDOC_KINDS_BY_TEMPLATE_ACTION_CODE SYSRES_CONST_EDOC_MANAGE_ACCESS_CODE SYSRES_CONST_EDOC_NONE_ENCODE_CODE SYSRES_CONST_EDOC_NUMBER_REQUISITE_CODE SYSRES_CONST_EDOC_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_READONLY_ACCESS_CODE SYSRES_CONST_EDOC_SHELL_LIFE_TYPE_VIEW_VALUE SYSRES_CONST_EDOC_SIZE_RESTRICTION_PRIORITY_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_CHECK_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_COMPUTER_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_DATABASE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_EDIT_IN_STORAGE_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_LOCAL_PATH_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_SHARED_SOURCE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_EDOC_TYPES_REFERENCE_CODE SYSRES_CONST_EDOC_VERSION_ACTIVE_STAGE_CODE SYSRES_CONST_EDOC_VERSION_DESIGN_STAGE_CODE SYSRES_CONST_EDOC_VERSION_OBSOLETE_STAGE_CODE SYSRES_CONST_EDOC_WRITE_ACCES_CODE SYSRES_CONST_EDOCUMENT_CARD_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_END_DATE_REQUISITE_CODE SYSRES_CONST_ENUMERATION_TYPE_REQUISITE_CODE SYSRES_CONST_EXECUTE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_EXECUTIVE_FILE_STORAGE_TYPE SYSRES_CONST_EXIST_CONST SYSRES_CONST_EXIST_VALUE SYSRES_CONST_EXPORT_LOCK_TYPE_ASK SYSRES_CONST_EXPORT_LOCK_TYPE_WITH_LOCK SYSRES_CONST_EXPORT_LOCK_TYPE_WITHOUT_LOCK SYSRES_CONST_EXPORT_VERSION_TYPE_ASK SYSRES_CONST_EXPORT_VERSION_TYPE_LAST SYSRES_CONST_EXPORT_VERSION_TYPE_LAST_ACTIVE SYSRES_CONST_EXTENSION_REQUISITE_CODE SYSRES_CONST_FILTER_NAME_REQUISITE_CODE SYSRES_CONST_FILTER_REQUISITE_CODE SYSRES_CONST_FILTER_TYPE_COMMON_CODE SYSRES_CONST_FILTER_TYPE_COMMON_NAME SYSRES_CONST_FILTER_TYPE_USER_CODE SYSRES_CONST_FILTER_TYPE_USER_NAME SYSRES_CONST_FILTER_VALUE_REQUISITE_NAME SYSRES_CONST_FLOAT_NUMBER_FORMAT_CHAR SYSRES_CONST_FLOAT_REQUISITE_TYPE SYSRES_CONST_FOLDER_AUTHOR_VALUE SYSRES_CONST_FOLDER_KIND_ANY_OBJECTS SYSRES_CONST_FOLDER_KIND_COMPONENTS SYSRES_CONST_FOLDER_KIND_EDOCS SYSRES_CONST_FOLDER_KIND_JOBS SYSRES_CONST_FOLDER_KIND_TASKS SYSRES_CONST_FOLDER_TYPE_COMMON SYSRES_CONST_FOLDER_TYPE_COMPONENT SYSRES_CONST_FOLDER_TYPE_FAVORITES SYSRES_CONST_FOLDER_TYPE_INBOX SYSRES_CONST_FOLDER_TYPE_OUTBOX SYSRES_CONST_FOLDER_TYPE_QUICK_LAUNCH SYSRES_CONST_FOLDER_TYPE_SEARCH SYSRES_CONST_FOLDER_TYPE_SHORTCUTS SYSRES_CONST_FOLDER_TYPE_USER SYSRES_CONST_FROM_DICTIONARY_ENUM_METHOD_FLAG SYSRES_CONST_FULL_SUBSTITUTE_TYPE SYSRES_CONST_FULL_SUBSTITUTE_TYPE_CODE SYSRES_CONST_FUNCTION_CANCEL_RESULT SYSRES_CONST_FUNCTION_CATEGORY_SYSTEM SYSRES_CONST_FUNCTION_CATEGORY_USER SYSRES_CONST_FUNCTION_FAILURE_RESULT SYSRES_CONST_FUNCTION_SAVE_RESULT SYSRES_CONST_GENERATED_REQUISITE SYSRES_CONST_GREEN_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_GROUP_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_NAME SYSRES_CONST_GROUP_CATEGORY_SERVICE_CODE SYSRES_CONST_GROUP_CATEGORY_SERVICE_NAME SYSRES_CONST_GROUP_COMMON_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_FULL_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_CODES_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_SERVICE_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_USER_REQUISITE_CODE SYSRES_CONST_GROUPS_REFERENCE_CODE SYSRES_CONST_GROUPS_REQUISITE_CODE SYSRES_CONST_HIDDEN_MODE_NAME SYSRES_CONST_HIGH_LVL_REQUISITE_CODE SYSRES_CONST_HISTORY_ACTION_CREATE_CODE SYSRES_CONST_HISTORY_ACTION_DELETE_CODE SYSRES_CONST_HISTORY_ACTION_EDIT_CODE SYSRES_CONST_HOUR_CHAR SYSRES_CONST_ID_REQUISITE_CODE SYSRES_CONST_IDSPS_REQUISITE_CODE SYSRES_CONST_IMAGE_MODE_COLOR SYSRES_CONST_IMAGE_MODE_GREYSCALE SYSRES_CONST_IMAGE_MODE_MONOCHROME SYSRES_CONST_IMPORTANCE_HIGH SYSRES_CONST_IMPORTANCE_LOW SYSRES_CONST_IMPORTANCE_NORMAL SYSRES_CONST_IN_DESIGN_VERSION_STATE_PICK_VALUE SYSRES_CONST_INCOMING_WORK_RULE_TYPE_CODE SYSRES_CONST_INT_REQUISITE SYSRES_CONST_INT_REQUISITE_TYPE SYSRES_CONST_INTEGER_NUMBER_FORMAT_CHAR SYSRES_CONST_INTEGER_TYPE_CHAR SYSRES_CONST_IS_GENERATED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_PUBLIC_ROLE_REQUISITE_CODE SYSRES_CONST_IS_REMOTE_USER_NEGATIVE_VALUE SYSRES_CONST_IS_REMOTE_USER_POSITIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_STORED_VALUE SYSRES_CONST_ITALIC_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_JOB_BLOCK_DESCRIPTION SYSRES_CONST_JOB_KIND_CONTROL_JOB SYSRES_CONST_JOB_KIND_JOB SYSRES_CONST_JOB_KIND_NOTICE SYSRES_CONST_JOB_STATE_ABORTED SYSRES_CONST_JOB_STATE_COMPLETE SYSRES_CONST_JOB_STATE_WORKING SYSRES_CONST_KIND_REQUISITE_CODE SYSRES_CONST_KIND_REQUISITE_NAME SYSRES_CONST_KINDS_CREATE_SHADOW_COPIES_REQUISITE_CODE SYSRES_CONST_KINDS_DEFAULT_EDOC_LIFE_STAGE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALL_TEPLATES_ALLOWED_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_LIFE_CYCLE_STAGE_CHANGING_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_MULTIPLE_ACTIVE_VERSIONS_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_SHARE_ACCES_RIGHTS_BY_DEFAULT_CODE SYSRES_CONST_KINDS_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_TYPE_REQUISITE_CODE SYSRES_CONST_KINDS_SIGNERS_REQUISITES_CODE SYSRES_CONST_KOD_INPUT_TYPE SYSRES_CONST_LAST_UPDATE_DATE_REQUISITE_CODE SYSRES_CONST_LIFE_CYCLE_START_STAGE_REQUISITE_CODE SYSRES_CONST_LILAC_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_LINK_OBJECT_KIND_COMPONENT SYSRES_CONST_LINK_OBJECT_KIND_DOCUMENT SYSRES_CONST_LINK_OBJECT_KIND_EDOC SYSRES_CONST_LINK_OBJECT_KIND_FOLDER SYSRES_CONST_LINK_OBJECT_KIND_JOB SYSRES_CONST_LINK_OBJECT_KIND_REFERENCE SYSRES_CONST_LINK_OBJECT_KIND_TASK SYSRES_CONST_LINK_REF_TYPE_REQUISITE_CODE SYSRES_CONST_LIST_REFERENCE_MODE_NAME SYSRES_CONST_LOCALIZATION_DICTIONARY_MAIN_VIEW_CODE SYSRES_CONST_MAIN_VIEW_CODE SYSRES_CONST_MANUAL_ENUM_METHOD_FLAG SYSRES_CONST_MASTER_COMP_TYPE_REQUISITE_CODE SYSRES_CONST_MASTER_TABLE_REC_ID_REQUISITE_CODE SYSRES_CONST_MAXIMIZED_MODE_NAME SYSRES_CONST_ME_VALUE SYSRES_CONST_MESSAGE_ATTENTION_CAPTION SYSRES_CONST_MESSAGE_CONFIRMATION_CAPTION SYSRES_CONST_MESSAGE_ERROR_CAPTION SYSRES_CONST_MESSAGE_INFORMATION_CAPTION SYSRES_CONST_MINIMIZED_MODE_NAME SYSRES_CONST_MINUTE_CHAR SYSRES_CONST_MODULE_REQUISITE_CODE SYSRES_CONST_MONITORING_BLOCK_DESCRIPTION SYSRES_CONST_MONTH_FORMAT_VALUE SYSRES_CONST_NAME_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_NAME_REQUISITE_CODE SYSRES_CONST_NAME_SINGULAR_REQUISITE_CODE SYSRES_CONST_NAMEAN_INPUT_TYPE SYSRES_CONST_NEGATIVE_PICK_VALUE SYSRES_CONST_NEGATIVE_VALUE SYSRES_CONST_NO SYSRES_CONST_NO_PICK_VALUE SYSRES_CONST_NO_SIGNATURE_REQUISITE_CODE SYSRES_CONST_NO_VALUE SYSRES_CONST_NONE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_NORMAL_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NORMAL_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_NORMAL_MODE_NAME SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_NOTE_REQUISITE_CODE SYSRES_CONST_NOTICE_BLOCK_DESCRIPTION SYSRES_CONST_NUM_REQUISITE SYSRES_CONST_NUM_STR_REQUISITE_CODE SYSRES_CONST_NUMERATION_AUTO_NOT_STRONG SYSRES_CONST_NUMERATION_AUTO_STRONG SYSRES_CONST_NUMERATION_FROM_DICTONARY SYSRES_CONST_NUMERATION_MANUAL SYSRES_CONST_NUMERIC_TYPE_CHAR SYSRES_CONST_NUMREQ_REQUISITE_CODE SYSRES_CONST_OBSOLETE_VERSION_STATE_PICK_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_OPTIONAL_FORM_COMP_REQCODE_PREFIX SYSRES_CONST_ORANGE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_ORIGINALREF_REQUISITE_CODE SYSRES_CONST_OURFIRM_REF_CODE SYSRES_CONST_OURFIRM_REQUISITE_CODE SYSRES_CONST_OURFIRM_VAR SYSRES_CONST_OUTGOING_WORK_RULE_TYPE_CODE SYSRES_CONST_PICK_NEGATIVE_RESULT SYSRES_CONST_PICK_POSITIVE_RESULT SYSRES_CONST_PICK_REQUISITE SYSRES_CONST_PICK_REQUISITE_TYPE SYSRES_CONST_PICK_TYPE_CHAR SYSRES_CONST_PLAN_STATUS_REQUISITE_CODE SYSRES_CONST_PLATFORM_VERSION_COMMENT SYSRES_CONST_PLUGINS_SETTINGS_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_POSITIVE_PICK_VALUE SYSRES_CONST_POWER_TO_CREATE_ACTION_CODE SYSRES_CONST_POWER_TO_SIGN_ACTION_CODE SYSRES_CONST_PRIORITY_REQUISITE_CODE SYSRES_CONST_QUALIFIED_TASK_TYPE SYSRES_CONST_QUALIFIED_TASK_TYPE_CODE SYSRES_CONST_RECSTAT_REQUISITE_CODE SYSRES_CONST_RED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_REF_ID_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_REF_REQUISITE SYSRES_CONST_REF_REQUISITE_TYPE SYSRES_CONST_REF_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_REFERENCE_RECORD_HISTORY_CREATE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_DELETE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_MODIFY_ACTION_CODE SYSRES_CONST_REFERENCE_TYPE_CHAR SYSRES_CONST_REFERENCE_TYPE_REQUISITE_NAME SYSRES_CONST_REFERENCES_ADD_PARAMS_REQUISITE_CODE SYSRES_CONST_REFERENCES_DISPLAY_REQUISITE_REQUISITE_CODE SYSRES_CONST_REMOTE_SERVER_STATUS_WORKING SYSRES_CONST_REMOTE_SERVER_TYPE_MAIN SYSRES_CONST_REMOTE_SERVER_TYPE_SECONDARY SYSRES_CONST_REMOTE_USER_FLAG_VALUE_CODE SYSRES_CONST_REPORT_APP_EDITOR_INTERNAL SYSRES_CONST_REPORT_BASE_REPORT_ID_REQUISITE_CODE SYSRES_CONST_REPORT_BASE_REPORT_REQUISITE_CODE SYSRES_CONST_REPORT_SCRIPT_REQUISITE_CODE SYSRES_CONST_REPORT_TEMPLATE_REQUISITE_CODE SYSRES_CONST_REPORT_VIEWER_CODE_REQUISITE_CODE SYSRES_CONST_REQ_ALLOW_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_RECORD_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_SERVER_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_MODE_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_EDIT_CODE SYSRES_CONST_REQ_MODE_HIDDEN_CODE SYSRES_CONST_REQ_MODE_NOT_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_VIEW_CODE SYSRES_CONST_REQ_NUMBER_REQUISITE_CODE SYSRES_CONST_REQ_SECTION_VALUE SYSRES_CONST_REQ_TYPE_VALUE SYSRES_CONST_REQUISITE_FORMAT_BY_UNIT SYSRES_CONST_REQUISITE_FORMAT_DATE_FULL SYSRES_CONST_REQUISITE_FORMAT_DATE_TIME SYSRES_CONST_REQUISITE_FORMAT_LEFT SYSRES_CONST_REQUISITE_FORMAT_RIGHT SYSRES_CONST_REQUISITE_FORMAT_WITHOUT_UNIT SYSRES_CONST_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_REQUISITE_SECTION_ACTIONS SYSRES_CONST_REQUISITE_SECTION_BUTTON SYSRES_CONST_REQUISITE_SECTION_BUTTONS SYSRES_CONST_REQUISITE_SECTION_CARD SYSRES_CONST_REQUISITE_SECTION_TABLE SYSRES_CONST_REQUISITE_SECTION_TABLE10 SYSRES_CONST_REQUISITE_SECTION_TABLE11 SYSRES_CONST_REQUISITE_SECTION_TABLE12 SYSRES_CONST_REQUISITE_SECTION_TABLE13 SYSRES_CONST_REQUISITE_SECTION_TABLE14 SYSRES_CONST_REQUISITE_SECTION_TABLE15 SYSRES_CONST_REQUISITE_SECTION_TABLE16 SYSRES_CONST_REQUISITE_SECTION_TABLE17 SYSRES_CONST_REQUISITE_SECTION_TABLE18 SYSRES_CONST_REQUISITE_SECTION_TABLE19 SYSRES_CONST_REQUISITE_SECTION_TABLE2 SYSRES_CONST_REQUISITE_SECTION_TABLE20 SYSRES_CONST_REQUISITE_SECTION_TABLE21 SYSRES_CONST_REQUISITE_SECTION_TABLE22 SYSRES_CONST_REQUISITE_SECTION_TABLE23 SYSRES_CONST_REQUISITE_SECTION_TABLE24 SYSRES_CONST_REQUISITE_SECTION_TABLE3 SYSRES_CONST_REQUISITE_SECTION_TABLE4 SYSRES_CONST_REQUISITE_SECTION_TABLE5 SYSRES_CONST_REQUISITE_SECTION_TABLE6 SYSRES_CONST_REQUISITE_SECTION_TABLE7 SYSRES_CONST_REQUISITE_SECTION_TABLE8 SYSRES_CONST_REQUISITE_SECTION_TABLE9 SYSRES_CONST_REQUISITES_PSEUDOREFERENCE_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_RIGHT_ALIGNMENT_CODE SYSRES_CONST_ROLES_REFERENCE_CODE SYSRES_CONST_ROUTE_STEP_AFTER_RUS SYSRES_CONST_ROUTE_STEP_AND_CONDITION_RUS SYSRES_CONST_ROUTE_STEP_OR_CONDITION_RUS SYSRES_CONST_ROUTE_TYPE_COMPLEX SYSRES_CONST_ROUTE_TYPE_PARALLEL SYSRES_CONST_ROUTE_TYPE_SERIAL SYSRES_CONST_SBDATASETDESC_NEGATIVE_VALUE SYSRES_CONST_SBDATASETDESC_POSITIVE_VALUE SYSRES_CONST_SBVIEWSDESC_POSITIVE_VALUE SYSRES_CONST_SCRIPT_BLOCK_DESCRIPTION SYSRES_CONST_SEARCH_BY_TEXT_REQUISITE_CODE SYSRES_CONST_SEARCHES_COMPONENT_CONTENT SYSRES_CONST_SEARCHES_CRITERIA_ACTION_NAME SYSRES_CONST_SEARCHES_EDOC_CONTENT SYSRES_CONST_SEARCHES_FOLDER_CONTENT SYSRES_CONST_SEARCHES_JOB_CONTENT SYSRES_CONST_SEARCHES_REFERENCE_CODE SYSRES_CONST_SEARCHES_TASK_CONTENT SYSRES_CONST_SECOND_CHAR SYSRES_CONST_SECTION_REQUISITE_ACTIONS_VALUE SYSRES_CONST_SECTION_REQUISITE_CARD_VALUE SYSRES_CONST_SECTION_REQUISITE_CODE SYSRES_CONST_SECTION_REQUISITE_DETAIL_1_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_2_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_3_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_4_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_5_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_6_VALUE SYSRES_CONST_SELECT_REFERENCE_MODE_NAME SYSRES_CONST_SELECT_TYPE_SELECTABLE SYSRES_CONST_SELECT_TYPE_SELECTABLE_ONLY_CHILD SYSRES_CONST_SELECT_TYPE_SELECTABLE_WITH_CHILD SYSRES_CONST_SELECT_TYPE_UNSLECTABLE SYSRES_CONST_SERVER_TYPE_MAIN SYSRES_CONST_SERVICE_USER_CATEGORY_FIELD_VALUE SYSRES_CONST_SETTINGS_USER_REQUISITE_CODE SYSRES_CONST_SIGNATURE_AND_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SIGNATURE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SINGULAR_TITLE_REQUISITE_CODE SYSRES_CONST_SQL_SERVER_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_SQL_SERVER_ENCODE_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_STANDART_ROUTES_GROUPS_REFERENCE_CODE SYSRES_CONST_STATE_REQ_NAME SYSRES_CONST_STATE_REQUISITE_ACTIVE_VALUE SYSRES_CONST_STATE_REQUISITE_CLOSED_VALUE SYSRES_CONST_STATE_REQUISITE_CODE SYSRES_CONST_STATIC_ROLE_TYPE_CODE SYSRES_CONST_STATUS_PLAN_DEFAULT_VALUE SYSRES_CONST_STATUS_VALUE_AUTOCLEANING SYSRES_CONST_STATUS_VALUE_BLUE_SQUARE SYSRES_CONST_STATUS_VALUE_COMPLETE SYSRES_CONST_STATUS_VALUE_GREEN_SQUARE SYSRES_CONST_STATUS_VALUE_ORANGE_SQUARE SYSRES_CONST_STATUS_VALUE_PURPLE_SQUARE SYSRES_CONST_STATUS_VALUE_RED_SQUARE SYSRES_CONST_STATUS_VALUE_SUSPEND SYSRES_CONST_STATUS_VALUE_YELLOW_SQUARE SYSRES_CONST_STDROUTE_SHOW_TO_USERS_REQUISITE_CODE SYSRES_CONST_STORAGE_TYPE_FILE SYSRES_CONST_STORAGE_TYPE_SQL_SERVER SYSRES_CONST_STR_REQUISITE SYSRES_CONST_STRIKEOUT_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_STRING_FORMAT_LEFT_ALIGN_CHAR SYSRES_CONST_STRING_FORMAT_RIGHT_ALIGN_CHAR SYSRES_CONST_STRING_REQUISITE_CODE SYSRES_CONST_STRING_REQUISITE_TYPE SYSRES_CONST_STRING_TYPE_CHAR SYSRES_CONST_SUBSTITUTES_PSEUDOREFERENCE_CODE SYSRES_CONST_SUBTASK_BLOCK_DESCRIPTION SYSRES_CONST_SYSTEM_SETTING_CURRENT_USER_PARAM_VALUE SYSRES_CONST_SYSTEM_SETTING_EMPTY_VALUE_PARAM_VALUE SYSRES_CONST_SYSTEM_VERSION_COMMENT SYSRES_CONST_TASK_ACCESS_TYPE_ALL SYSRES_CONST_TASK_ACCESS_TYPE_ALL_MEMBERS SYSRES_CONST_TASK_ACCESS_TYPE_MANUAL SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION_AND_PASSWORD SYSRES_CONST_TASK_ENCODE_TYPE_NONE SYSRES_CONST_TASK_ENCODE_TYPE_PASSWORD SYSRES_CONST_TASK_ROUTE_ALL_CONDITION SYSRES_CONST_TASK_ROUTE_AND_CONDITION SYSRES_CONST_TASK_ROUTE_OR_CONDITION SYSRES_CONST_TASK_STATE_ABORTED SYSRES_CONST_TASK_STATE_COMPLETE SYSRES_CONST_TASK_STATE_CONTINUED SYSRES_CONST_TASK_STATE_CONTROL SYSRES_CONST_TASK_STATE_INIT SYSRES_CONST_TASK_STATE_WORKING SYSRES_CONST_TASK_TITLE SYSRES_CONST_TASK_TYPES_GROUPS_REFERENCE_CODE SYSRES_CONST_TASK_TYPES_REFERENCE_CODE SYSRES_CONST_TEMPLATES_REFERENCE_CODE SYSRES_CONST_TEST_DATE_REQUISITE_NAME SYSRES_CONST_TEST_DEV_DATABASE_NAME SYSRES_CONST_TEST_DEV_SYSTEM_CODE SYSRES_CONST_TEST_EDMS_DATABASE_NAME SYSRES_CONST_TEST_EDMS_MAIN_CODE SYSRES_CONST_TEST_EDMS_MAIN_DB_NAME SYSRES_CONST_TEST_EDMS_SECOND_CODE SYSRES_CONST_TEST_EDMS_SECOND_DB_NAME SYSRES_CONST_TEST_EDMS_SYSTEM_CODE SYSRES_CONST_TEST_NUMERIC_REQUISITE_NAME SYSRES_CONST_TEXT_REQUISITE SYSRES_CONST_TEXT_REQUISITE_CODE SYSRES_CONST_TEXT_REQUISITE_TYPE SYSRES_CONST_TEXT_TYPE_CHAR SYSRES_CONST_TYPE_CODE_REQUISITE_CODE SYSRES_CONST_TYPE_REQUISITE_CODE SYSRES_CONST_UNDEFINED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_UNITS_SECTION_ID_REQUISITE_CODE SYSRES_CONST_UNITS_SECTION_REQUISITE_CODE SYSRES_CONST_UNOPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_NAME SYSRES_CONST_USE_ACCESS_TYPE_CODE SYSRES_CONST_USE_ACCESS_TYPE_NAME SYSRES_CONST_USER_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_USER_ADDITIONAL_INFORMATION_REQUISITE_CODE SYSRES_CONST_USER_AND_GROUP_ID_FROM_PSEUDOREFERENCE_REQUISITE_CODE SYSRES_CONST_USER_CATEGORY_NORMAL SYSRES_CONST_USER_CERTIFICATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_STATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_SUBJECT_NAME_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_THUMBPRINT_REQUISITE_CODE SYSRES_CONST_USER_COMMON_CATEGORY SYSRES_CONST_USER_COMMON_CATEGORY_CODE SYSRES_CONST_USER_FULL_NAME_REQUISITE_CODE SYSRES_CONST_USER_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_USER_LOGIN_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_SYSTEM_REQUISITE_CODE SYSRES_CONST_USER_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_USER_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_USER_SERVICE_CATEGORY SYSRES_CONST_USER_SERVICE_CATEGORY_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_NAME SYSRES_CONST_USER_STATUS_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_DEVELOPER_NAME SYSRES_CONST_USER_STATUS_DISABLED_CODE SYSRES_CONST_USER_STATUS_DISABLED_NAME SYSRES_CONST_USER_STATUS_SYSTEM_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_USER_CODE SYSRES_CONST_USER_STATUS_USER_NAME SYSRES_CONST_USER_STATUS_USER_NAME_DEPRECATED SYSRES_CONST_USER_TYPE_FIELD_VALUE_USER SYSRES_CONST_USER_TYPE_REQUISITE_CODE SYSRES_CONST_USERS_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USERS_IS_MAIN_SERVER_REQUISITE_CODE SYSRES_CONST_USERS_REFERENCE_CODE SYSRES_CONST_USERS_REGISTRATION_CERTIFICATES_ACTION_NAME SYSRES_CONST_USERS_REQUISITE_CODE SYSRES_CONST_USERS_SYSTEM_REQUISITE_CODE SYSRES_CONST_USERS_USER_ACCESS_RIGHTS_TYPR_REQUISITE_CODE SYSRES_CONST_USERS_USER_AUTHENTICATION_REQUISITE_CODE SYSRES_CONST_USERS_USER_COMPONENT_REQUISITE_CODE SYSRES_CONST_USERS_USER_GROUP_REQUISITE_CODE SYSRES_CONST_USERS_VIEW_CERTIFICATES_ACTION_NAME SYSRES_CONST_VIEW_DEFAULT_CODE SYSRES_CONST_VIEW_DEFAULT_NAME SYSRES_CONST_VIEWER_REQUISITE_CODE SYSRES_CONST_WAITING_BLOCK_DESCRIPTION SYSRES_CONST_WIZARD_FORM_LABEL_TEST_STRING SYSRES_CONST_WIZARD_QUERY_PARAM_HEIGHT_ETALON_STRING SYSRES_CONST_WIZARD_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_WORK_RULES_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_WORK_TIME_CALENDAR_REFERENCE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORK_WORKFLOW_SOFT_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORKFLOW_ROUTE_TYPR_HARD SYSRES_CONST_WORKFLOW_ROUTE_TYPR_SOFT SYSRES_CONST_XML_ENCODING SYSRES_CONST_XREC_STAT_REQUISITE_CODE SYSRES_CONST_XRECID_FIELD_NAME SYSRES_CONST_YES SYSRES_CONST_YES_NO_2_REQUISITE_CODE SYSRES_CONST_YES_NO_REQUISITE_CODE SYSRES_CONST_YES_NO_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_YES_PICK_VALUE SYSRES_CONST_YES_VALUE CR FALSE nil NO_VALUE NULL TAB TRUE YES_VALUE ADMINISTRATORS_GROUP_NAME CUSTOMIZERS_GROUP_NAME DEVELOPERS_GROUP_NAME SERVICE_USERS_GROUP_NAME DECISION_BLOCK_FIRST_OPERAND_PROPERTY DECISION_BLOCK_NAME_PROPERTY DECISION_BLOCK_OPERATION_PROPERTY DECISION_BLOCK_RESULT_TYPE_PROPERTY DECISION_BLOCK_SECOND_OPERAND_PROPERTY ANY_FILE_EXTENTION COMPRESSED_DOCUMENT_EXTENSION EXTENDED_DOCUMENT_EXTENSION SHORT_COMPRESSED_DOCUMENT_EXTENSION SHORT_EXTENDED_DOCUMENT_EXTENSION JOB_BLOCK_ABORT_DEADLINE_PROPERTY JOB_BLOCK_AFTER_FINISH_EVENT JOB_BLOCK_AFTER_QUERY_PARAMETERS_EVENT JOB_BLOCK_ATTACHMENT_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY JOB_BLOCK_BEFORE_QUERY_PARAMETERS_EVENT JOB_BLOCK_BEFORE_START_EVENT JOB_BLOCK_CREATED_JOBS_PROPERTY JOB_BLOCK_DEADLINE_PROPERTY JOB_BLOCK_EXECUTION_RESULTS_PROPERTY JOB_BLOCK_IS_PARALLEL_PROPERTY JOB_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY JOB_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY JOB_BLOCK_JOB_TEXT_PROPERTY JOB_BLOCK_NAME_PROPERTY JOB_BLOCK_NEED_SIGN_ON_PERFORM_PROPERTY JOB_BLOCK_PERFORMER_PROPERTY JOB_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY JOB_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY JOB_BLOCK_SUBJECT_PROPERTY ENGLISH_LANGUAGE_CODE RUSSIAN_LANGUAGE_CODE smHidden smMaximized smMinimized smNormal wmNo wmYes COMPONENT_TOKEN_LINK_KIND DOCUMENT_LINK_KIND EDOCUMENT_LINK_KIND FOLDER_LINK_KIND JOB_LINK_KIND REFERENCE_LINK_KIND TASK_LINK_KIND COMPONENT_TOKEN_LOCK_TYPE EDOCUMENT_VERSION_LOCK_TYPE MONITOR_BLOCK_AFTER_FINISH_EVENT MONITOR_BLOCK_BEFORE_START_EVENT MONITOR_BLOCK_DEADLINE_PROPERTY MONITOR_BLOCK_INTERVAL_PROPERTY MONITOR_BLOCK_INTERVAL_TYPE_PROPERTY MONITOR_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY MONITOR_BLOCK_NAME_PROPERTY MONITOR_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY MONITOR_BLOCK_SEARCH_SCRIPT_PROPERTY NOTICE_BLOCK_AFTER_FINISH_EVENT NOTICE_BLOCK_ATTACHMENT_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY NOTICE_BLOCK_BEFORE_START_EVENT NOTICE_BLOCK_CREATED_NOTICES_PROPERTY NOTICE_BLOCK_DEADLINE_PROPERTY NOTICE_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY NOTICE_BLOCK_NAME_PROPERTY NOTICE_BLOCK_NOTICE_TEXT_PROPERTY NOTICE_BLOCK_PERFORMER_PROPERTY NOTICE_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY NOTICE_BLOCK_SUBJECT_PROPERTY dseAfterCancel dseAfterClose dseAfterDelete dseAfterDeleteOutOfTransaction dseAfterInsert dseAfterOpen dseAfterScroll dseAfterUpdate dseAfterUpdateOutOfTransaction dseBeforeCancel dseBeforeClose dseBeforeDelete dseBeforeDetailUpdate dseBeforeInsert dseBeforeOpen dseBeforeUpdate dseOnAnyRequisiteChange dseOnCloseRecord dseOnDeleteError dseOnOpenRecord dseOnPrepareUpdate dseOnUpdateError dseOnUpdateRatifiedRecord dseOnValidDelete dseOnValidUpdate reOnChange reOnChangeValues SELECTION_BEGIN_ROUTE_EVENT SELECTION_END_ROUTE_EVENT CURRENT_PERIOD_IS_REQUIRED PREVIOUS_CARD_TYPE_NAME SHOW_RECORD_PROPERTIES_FORM ACCESS_RIGHTS_SETTING_DIALOG_CODE ADMINISTRATOR_USER_CODE ANALYTIC_REPORT_TYPE asrtHideLocal asrtHideRemote CALCULATED_ROLE_TYPE_CODE COMPONENTS_REFERENCE_DEVELOPER_VIEW_CODE DCTS_TEST_PROTOCOLS_FOLDER_PATH E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED_BY_USER E_EDOC_VERSION_ALREDY_SIGNED E_EDOC_VERSION_ALREDY_SIGNED_BY_USER EDOC_TYPES_CODE_REQUISITE_FIELD_NAME EDOCUMENTS_ALIAS_NAME FILES_FOLDER_PATH FILTER_OPERANDS_DELIMITER FILTER_OPERATIONS_DELIMITER FORMCARD_NAME FORMLIST_NAME GET_EXTENDED_DOCUMENT_EXTENSION_CREATION_MODE GET_EXTENDED_DOCUMENT_EXTENSION_IMPORT_MODE INTEGRATED_REPORT_TYPE IS_BUILDER_APPLICATION_ROLE IS_BUILDER_APPLICATION_ROLE2 IS_BUILDER_USERS ISBSYSDEV LOG_FOLDER_PATH mbCancel mbNo mbNoToAll mbOK mbYes mbYesToAll MEMORY_DATASET_DESRIPTIONS_FILENAME mrNo mrNoToAll mrYes mrYesToAll MULTIPLE_SELECT_DIALOG_CODE NONOPERATING_RECORD_FLAG_FEMININE NONOPERATING_RECORD_FLAG_MASCULINE OPERATING_RECORD_FLAG_FEMININE OPERATING_RECORD_FLAG_MASCULINE PROFILING_SETTINGS_COMMON_SETTINGS_CODE_VALUE PROGRAM_INITIATED_LOOKUP_ACTION ratDelete ratEdit ratInsert REPORT_TYPE REQUIRED_PICK_VALUES_VARIABLE rmCard rmList SBRTE_PROGID_DEV SBRTE_PROGID_RELEASE STATIC_ROLE_TYPE_CODE SUPPRESS_EMPTY_TEMPLATE_CREATION SYSTEM_USER_CODE UPDATE_DIALOG_DATASET USED_IN_OBJECT_HINT_PARAM USER_INITIATED_LOOKUP_ACTION USER_NAME_FORMAT USER_SELECTION_RESTRICTIONS WORKFLOW_TEST_PROTOCOLS_FOLDER_PATH ELS_SUBTYPE_CONTROL_NAME ELS_FOLDER_KIND_CONTROL_NAME REPEAT_PROCESS_CURRENT_OBJECT_EXCEPTION_NAME PRIVILEGE_COMPONENT_FULL_ACCESS PRIVILEGE_DEVELOPMENT_EXPORT PRIVILEGE_DEVELOPMENT_IMPORT PRIVILEGE_DOCUMENT_DELETE PRIVILEGE_ESD PRIVILEGE_FOLDER_DELETE PRIVILEGE_MANAGE_ACCESS_RIGHTS PRIVILEGE_MANAGE_REPLICATION PRIVILEGE_MANAGE_SESSION_SERVER PRIVILEGE_OBJECT_FULL_ACCESS PRIVILEGE_OBJECT_VIEW PRIVILEGE_RESERVE_LICENSE PRIVILEGE_SYSTEM_CUSTOMIZE PRIVILEGE_SYSTEM_DEVELOP PRIVILEGE_SYSTEM_INSTALL PRIVILEGE_TASK_DELETE PRIVILEGE_USER_PLUGIN_SETTINGS_CUSTOMIZE PRIVILEGES_PSEUDOREFERENCE_CODE ACCESS_TYPES_PSEUDOREFERENCE_CODE ALL_AVAILABLE_COMPONENTS_PSEUDOREFERENCE_CODE ALL_AVAILABLE_PRIVILEGES_PSEUDOREFERENCE_CODE ALL_REPLICATE_COMPONENTS_PSEUDOREFERENCE_CODE AVAILABLE_DEVELOPERS_COMPONENTS_PSEUDOREFERENCE_CODE COMPONENTS_PSEUDOREFERENCE_CODE FILTRATER_SETTINGS_CONFLICTS_PSEUDOREFERENCE_CODE GROUPS_PSEUDOREFERENCE_CODE RECEIVE_PROTOCOL_PSEUDOREFERENCE_CODE REFERENCE_REQUISITE_PSEUDOREFERENCE_CODE REFERENCE_REQUISITES_PSEUDOREFERENCE_CODE REFTYPES_PSEUDOREFERENCE_CODE REPLICATION_SEANCES_DIARY_PSEUDOREFERENCE_CODE SEND_PROTOCOL_PSEUDOREFERENCE_CODE SUBSTITUTES_PSEUDOREFERENCE_CODE SYSTEM_SETTINGS_PSEUDOREFERENCE_CODE UNITS_PSEUDOREFERENCE_CODE USERS_PSEUDOREFERENCE_CODE VIEWERS_PSEUDOREFERENCE_CODE CERTIFICATE_TYPE_ENCRYPT CERTIFICATE_TYPE_SIGN CERTIFICATE_TYPE_SIGN_AND_ENCRYPT STORAGE_TYPE_FILE STORAGE_TYPE_NAS_CIFS STORAGE_TYPE_SAPERION STORAGE_TYPE_SQL_SERVER COMPTYPE2_REQUISITE_DOCUMENTS_VALUE COMPTYPE2_REQUISITE_TASKS_VALUE COMPTYPE2_REQUISITE_FOLDERS_VALUE COMPTYPE2_REQUISITE_REFERENCES_VALUE SYSREQ_CODE SYSREQ_COMPTYPE2 SYSREQ_CONST_AVAILABLE_FOR_WEB SYSREQ_CONST_COMMON_CODE SYSREQ_CONST_COMMON_VALUE SYSREQ_CONST_FIRM_CODE SYSREQ_CONST_FIRM_STATUS SYSREQ_CONST_FIRM_VALUE SYSREQ_CONST_SERVER_STATUS SYSREQ_CONTENTS SYSREQ_DATE_OPEN SYSREQ_DATE_CLOSE SYSREQ_DESCRIPTION SYSREQ_DESCRIPTION_LOCALIZE_ID SYSREQ_DOUBLE SYSREQ_EDOC_ACCESS_TYPE SYSREQ_EDOC_AUTHOR SYSREQ_EDOC_CREATED SYSREQ_EDOC_DELEGATE_RIGHTS_REQUISITE_CODE SYSREQ_EDOC_EDITOR SYSREQ_EDOC_ENCODE_TYPE SYSREQ_EDOC_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_EXPORT_DATE SYSREQ_EDOC_EXPORTER SYSREQ_EDOC_KIND SYSREQ_EDOC_LIFE_STAGE_NAME SYSREQ_EDOC_LOCKED_FOR_SERVER_CODE SYSREQ_EDOC_MODIFIED SYSREQ_EDOC_NAME SYSREQ_EDOC_NOTE SYSREQ_EDOC_QUALIFIED_ID SYSREQ_EDOC_SESSION_KEY SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_SIGNATURE_TYPE SYSREQ_EDOC_SIGNED SYSREQ_EDOC_STORAGE SYSREQ_EDOC_STORAGES_ARCHIVE_STORAGE SYSREQ_EDOC_STORAGES_CHECK_RIGHTS SYSREQ_EDOC_STORAGES_COMPUTER_NAME SYSREQ_EDOC_STORAGES_EDIT_IN_STORAGE SYSREQ_EDOC_STORAGES_EXECUTIVE_STORAGE SYSREQ_EDOC_STORAGES_FUNCTION SYSREQ_EDOC_STORAGES_INITIALIZED SYSREQ_EDOC_STORAGES_LOCAL_PATH SYSREQ_EDOC_STORAGES_SAPERION_DATABASE_NAME SYSREQ_EDOC_STORAGES_SEARCH_BY_TEXT SYSREQ_EDOC_STORAGES_SERVER_NAME SYSREQ_EDOC_STORAGES_SHARED_SOURCE_NAME SYSREQ_EDOC_STORAGES_TYPE SYSREQ_EDOC_TEXT_MODIFIED SYSREQ_EDOC_TYPE_ACT_CODE SYSREQ_EDOC_TYPE_ACT_DESCRIPTION SYSREQ_EDOC_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_EDOC_TYPE_ACT_SECTION SYSREQ_EDOC_TYPE_ADD_PARAMS SYSREQ_EDOC_TYPE_COMMENT SYSREQ_EDOC_TYPE_EVENT_TEXT SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_EDOC_TYPE_NAME_LOCALIZE_ID SYSREQ_EDOC_TYPE_NUMERATION_METHOD SYSREQ_EDOC_TYPE_PSEUDO_REQUISITE_CODE SYSREQ_EDOC_TYPE_REQ_CODE SYSREQ_EDOC_TYPE_REQ_DESCRIPTION SYSREQ_EDOC_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_REQ_IS_LEADING SYSREQ_EDOC_TYPE_REQ_IS_REQUIRED SYSREQ_EDOC_TYPE_REQ_NUMBER SYSREQ_EDOC_TYPE_REQ_ON_CHANGE SYSREQ_EDOC_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_EDOC_TYPE_REQ_ON_SELECT SYSREQ_EDOC_TYPE_REQ_ON_SELECT_KIND SYSREQ_EDOC_TYPE_REQ_SECTION SYSREQ_EDOC_TYPE_VIEW_CARD SYSREQ_EDOC_TYPE_VIEW_CODE SYSREQ_EDOC_TYPE_VIEW_COMMENT SYSREQ_EDOC_TYPE_VIEW_IS_MAIN SYSREQ_EDOC_TYPE_VIEW_NAME SYSREQ_EDOC_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_EDOC_VERSION_AUTHOR SYSREQ_EDOC_VERSION_CRC SYSREQ_EDOC_VERSION_DATA SYSREQ_EDOC_VERSION_EDITOR SYSREQ_EDOC_VERSION_EXPORT_DATE SYSREQ_EDOC_VERSION_EXPORTER SYSREQ_EDOC_VERSION_HIDDEN SYSREQ_EDOC_VERSION_LIFE_STAGE SYSREQ_EDOC_VERSION_MODIFIED SYSREQ_EDOC_VERSION_NOTE SYSREQ_EDOC_VERSION_SIGNATURE_TYPE SYSREQ_EDOC_VERSION_SIGNED SYSREQ_EDOC_VERSION_SIZE SYSREQ_EDOC_VERSION_SOURCE SYSREQ_EDOC_VERSION_TEXT_MODIFIED SYSREQ_EDOCKIND_DEFAULT_VERSION_STATE_CODE SYSREQ_FOLDER_KIND SYSREQ_FUNC_CATEGORY SYSREQ_FUNC_COMMENT SYSREQ_FUNC_GROUP SYSREQ_FUNC_GROUP_COMMENT SYSREQ_FUNC_GROUP_NUMBER SYSREQ_FUNC_HELP SYSREQ_FUNC_PARAM_DEF_VALUE SYSREQ_FUNC_PARAM_IDENT SYSREQ_FUNC_PARAM_NUMBER SYSREQ_FUNC_PARAM_TYPE SYSREQ_FUNC_TEXT SYSREQ_GROUP_CATEGORY SYSREQ_ID SYSREQ_LAST_UPDATE SYSREQ_LEADER_REFERENCE SYSREQ_LINE_NUMBER SYSREQ_MAIN_RECORD_ID SYSREQ_NAME SYSREQ_NAME_LOCALIZE_ID SYSREQ_NOTE SYSREQ_ORIGINAL_RECORD SYSREQ_OUR_FIRM SYSREQ_PROFILING_SETTINGS_BATCH_LOGING SYSREQ_PROFILING_SETTINGS_BATCH_SIZE SYSREQ_PROFILING_SETTINGS_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_SQL_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_START_LOGGED SYSREQ_RECORD_STATUS SYSREQ_REF_REQ_FIELD_NAME SYSREQ_REF_REQ_FORMAT SYSREQ_REF_REQ_GENERATED SYSREQ_REF_REQ_LENGTH SYSREQ_REF_REQ_PRECISION SYSREQ_REF_REQ_REFERENCE SYSREQ_REF_REQ_SECTION SYSREQ_REF_REQ_STORED SYSREQ_REF_REQ_TOKENS SYSREQ_REF_REQ_TYPE SYSREQ_REF_REQ_VIEW SYSREQ_REF_TYPE_ACT_CODE SYSREQ_REF_TYPE_ACT_DESCRIPTION SYSREQ_REF_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_ACT_ON_EXECUTE SYSREQ_REF_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_REF_TYPE_ACT_SECTION SYSREQ_REF_TYPE_ADD_PARAMS SYSREQ_REF_TYPE_COMMENT SYSREQ_REF_TYPE_COMMON_SETTINGS SYSREQ_REF_TYPE_DISPLAY_REQUISITE_NAME SYSREQ_REF_TYPE_EVENT_TEXT SYSREQ_REF_TYPE_MAIN_LEADING_REF SYSREQ_REF_TYPE_NAME_IN_SINGULAR SYSREQ_REF_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_REF_TYPE_NAME_LOCALIZE_ID SYSREQ_REF_TYPE_NUMERATION_METHOD SYSREQ_REF_TYPE_REQ_CODE SYSREQ_REF_TYPE_REQ_DESCRIPTION SYSREQ_REF_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_REQ_IS_CONTROL SYSREQ_REF_TYPE_REQ_IS_FILTER SYSREQ_REF_TYPE_REQ_IS_LEADING SYSREQ_REF_TYPE_REQ_IS_REQUIRED SYSREQ_REF_TYPE_REQ_NUMBER SYSREQ_REF_TYPE_REQ_ON_CHANGE SYSREQ_REF_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_REF_TYPE_REQ_ON_SELECT SYSREQ_REF_TYPE_REQ_ON_SELECT_KIND SYSREQ_REF_TYPE_REQ_SECTION SYSREQ_REF_TYPE_VIEW_CARD SYSREQ_REF_TYPE_VIEW_CODE SYSREQ_REF_TYPE_VIEW_COMMENT SYSREQ_REF_TYPE_VIEW_IS_MAIN SYSREQ_REF_TYPE_VIEW_NAME SYSREQ_REF_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_REFERENCE_TYPE_ID SYSREQ_STATE SYSREQ_STATЕ SYSREQ_SYSTEM_SETTINGS_VALUE SYSREQ_TYPE SYSREQ_UNIT SYSREQ_UNIT_ID SYSREQ_USER_GROUPS_GROUP_FULL_NAME SYSREQ_USER_GROUPS_GROUP_NAME SYSREQ_USER_GROUPS_GROUP_SERVER_NAME SYSREQ_USERS_ACCESS_RIGHTS SYSREQ_USERS_AUTHENTICATION SYSREQ_USERS_CATEGORY SYSREQ_USERS_COMPONENT SYSREQ_USERS_COMPONENT_USER_IS_PUBLIC SYSREQ_USERS_DOMAIN SYSREQ_USERS_FULL_USER_NAME SYSREQ_USERS_GROUP SYSREQ_USERS_IS_MAIN_SERVER SYSREQ_USERS_LOGIN SYSREQ_USERS_REFERENCE_USER_IS_PUBLIC SYSREQ_USERS_STATUS SYSREQ_USERS_USER_CERTIFICATE SYSREQ_USERS_USER_CERTIFICATE_INFO SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_NAME SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_VERSION SYSREQ_USERS_USER_CERTIFICATE_STATE SYSREQ_USERS_USER_CERTIFICATE_SUBJECT_NAME SYSREQ_USERS_USER_CERTIFICATE_THUMBPRINT SYSREQ_USERS_USER_DEFAULT_CERTIFICATE SYSREQ_USERS_USER_DESCRIPTION SYSREQ_USERS_USER_GLOBAL_NAME SYSREQ_USERS_USER_LOGIN SYSREQ_USERS_USER_MAIN_SERVER SYSREQ_USERS_USER_TYPE SYSREQ_WORK_RULES_FOLDER_ID RESULT_VAR_NAME RESULT_VAR_NAME_ENG AUTO_NUMERATION_RULE_ID CANT_CHANGE_ID_REQUISITE_RULE_ID CANT_CHANGE_OURFIRM_REQUISITE_RULE_ID CHECK_CHANGING_REFERENCE_RECORD_USE_RULE_ID CHECK_CODE_REQUISITE_RULE_ID CHECK_DELETING_REFERENCE_RECORD_USE_RULE_ID CHECK_FILTRATER_CHANGES_RULE_ID CHECK_RECORD_INTERVAL_RULE_ID CHECK_REFERENCE_INTERVAL_RULE_ID CHECK_REQUIRED_DATA_FULLNESS_RULE_ID CHECK_REQUIRED_REQUISITES_FULLNESS_RULE_ID MAKE_RECORD_UNRATIFIED_RULE_ID RESTORE_AUTO_NUMERATION_RULE_ID SET_FIRM_CONTEXT_FROM_RECORD_RULE_ID SET_FIRST_RECORD_IN_LIST_FORM_RULE_ID SET_IDSPS_VALUE_RULE_ID SET_NEXT_CODE_VALUE_RULE_ID SET_OURFIRM_BOUNDS_RULE_ID SET_OURFIRM_REQUISITE_RULE_ID SCRIPT_BLOCK_AFTER_FINISH_EVENT SCRIPT_BLOCK_BEFORE_START_EVENT SCRIPT_BLOCK_EXECUTION_RESULTS_PROPERTY SCRIPT_BLOCK_NAME_PROPERTY SCRIPT_BLOCK_SCRIPT_PROPERTY SUBTASK_BLOCK_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_AFTER_FINISH_EVENT SUBTASK_BLOCK_ASSIGN_PARAMS_EVENT SUBTASK_BLOCK_ATTACHMENTS_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY SUBTASK_BLOCK_BEFORE_START_EVENT SUBTASK_BLOCK_CREATED_TASK_PROPERTY SUBTASK_BLOCK_CREATION_EVENT SUBTASK_BLOCK_DEADLINE_PROPERTY SUBTASK_BLOCK_IMPORTANCE_PROPERTY SUBTASK_BLOCK_INITIATOR_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY SUBTASK_BLOCK_JOBS_TYPE_PROPERTY SUBTASK_BLOCK_NAME_PROPERTY SUBTASK_BLOCK_PARALLEL_ROUTE_PROPERTY SUBTASK_BLOCK_PERFORMERS_PROPERTY SUBTASK_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_REQUIRE_SIGN_PROPERTY SUBTASK_BLOCK_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_START_EVENT SUBTASK_BLOCK_STEP_CONTROL_PROPERTY SUBTASK_BLOCK_SUBJECT_PROPERTY SUBTASK_BLOCK_TASK_CONTROL_PROPERTY SUBTASK_BLOCK_TEXT_PROPERTY SUBTASK_BLOCK_UNLOCK_ATTACHMENTS_ON_STOP_PROPERTY SUBTASK_BLOCK_USE_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_WAIT_FOR_TASK_COMPLETE_PROPERTY SYSCOMP_CONTROL_JOBS SYSCOMP_FOLDERS SYSCOMP_JOBS SYSCOMP_NOTICES SYSCOMP_TASKS SYSDLG_CREATE_EDOCUMENT SYSDLG_CREATE_EDOCUMENT_VERSION SYSDLG_CURRENT_PERIOD SYSDLG_EDIT_FUNCTION_HELP SYSDLG_EDOCUMENT_KINDS_FOR_TEMPLATE SYSDLG_EXPORT_MULTIPLE_EDOCUMENTS SYSDLG_EXPORT_SINGLE_EDOCUMENT SYSDLG_IMPORT_EDOCUMENT SYSDLG_MULTIPLE_SELECT SYSDLG_SETUP_ACCESS_RIGHTS SYSDLG_SETUP_DEFAULT_RIGHTS SYSDLG_SETUP_FILTER_CONDITION SYSDLG_SETUP_SIGN_RIGHTS SYSDLG_SETUP_TASK_OBSERVERS SYSDLG_SETUP_TASK_ROUTE SYSDLG_SETUP_USERS_LIST SYSDLG_SIGN_EDOCUMENT SYSDLG_SIGN_MULTIPLE_EDOCUMENTS SYSREF_ACCESS_RIGHTS_TYPES SYSREF_ADMINISTRATION_HISTORY SYSREF_ALL_AVAILABLE_COMPONENTS SYSREF_ALL_AVAILABLE_PRIVILEGES SYSREF_ALL_REPLICATING_COMPONENTS SYSREF_AVAILABLE_DEVELOPERS_COMPONENTS SYSREF_CALENDAR_EVENTS SYSREF_COMPONENT_TOKEN_HISTORY SYSREF_COMPONENT_TOKENS SYSREF_COMPONENTS SYSREF_CONSTANTS SYSREF_DATA_RECEIVE_PROTOCOL SYSREF_DATA_SEND_PROTOCOL SYSREF_DIALOGS SYSREF_DIALOGS_REQUISITES SYSREF_EDITORS SYSREF_EDOC_CARDS SYSREF_EDOC_TYPES SYSREF_EDOCUMENT_CARD_REQUISITES SYSREF_EDOCUMENT_CARD_TYPES SYSREF_EDOCUMENT_CARD_TYPES_REFERENCE SYSREF_EDOCUMENT_CARDS SYSREF_EDOCUMENT_HISTORY SYSREF_EDOCUMENT_KINDS SYSREF_EDOCUMENT_REQUISITES SYSREF_EDOCUMENT_SIGNATURES SYSREF_EDOCUMENT_TEMPLATES SYSREF_EDOCUMENT_TEXT_STORAGES SYSREF_EDOCUMENT_VIEWS SYSREF_FILTERER_SETUP_CONFLICTS SYSREF_FILTRATER_SETTING_CONFLICTS SYSREF_FOLDER_HISTORY SYSREF_FOLDERS SYSREF_FUNCTION_GROUPS SYSREF_FUNCTION_PARAMS SYSREF_FUNCTIONS SYSREF_JOB_HISTORY SYSREF_LINKS SYSREF_LOCALIZATION_DICTIONARY SYSREF_LOCALIZATION_LANGUAGES SYSREF_MODULES SYSREF_PRIVILEGES SYSREF_RECORD_HISTORY SYSREF_REFERENCE_REQUISITES SYSREF_REFERENCE_TYPE_VIEWS SYSREF_REFERENCE_TYPES SYSREF_REFERENCES SYSREF_REFERENCES_REQUISITES SYSREF_REMOTE_SERVERS SYSREF_REPLICATION_SESSIONS_LOG SYSREF_REPLICATION_SESSIONS_PROTOCOL SYSREF_REPORTS SYSREF_ROLES SYSREF_ROUTE_BLOCK_GROUPS SYSREF_ROUTE_BLOCKS SYSREF_SCRIPTS SYSREF_SEARCHES SYSREF_SERVER_EVENTS SYSREF_SERVER_EVENTS_HISTORY SYSREF_STANDARD_ROUTE_GROUPS SYSREF_STANDARD_ROUTES SYSREF_STATUSES SYSREF_SYSTEM_SETTINGS SYSREF_TASK_HISTORY SYSREF_TASK_KIND_GROUPS SYSREF_TASK_KINDS SYSREF_TASK_RIGHTS SYSREF_TASK_SIGNATURES SYSREF_TASKS SYSREF_UNITS SYSREF_USER_GROUPS SYSREF_USER_GROUPS_REFERENCE SYSREF_USER_SUBSTITUTION SYSREF_USERS SYSREF_USERS_REFERENCE SYSREF_VIEWERS SYSREF_WORKING_TIME_CALENDARS ACCESS_RIGHTS_TABLE_NAME EDMS_ACCESS_TABLE_NAME EDOC_TYPES_TABLE_NAME TEST_DEV_DB_NAME TEST_DEV_SYSTEM_CODE TEST_EDMS_DB_NAME TEST_EDMS_MAIN_CODE TEST_EDMS_MAIN_DB_NAME TEST_EDMS_SECOND_CODE TEST_EDMS_SECOND_DB_NAME TEST_EDMS_SYSTEM_CODE TEST_ISB5_MAIN_CODE TEST_ISB5_SECOND_CODE TEST_SQL_SERVER_2005_NAME TEST_SQL_SERVER_NAME ATTENTION_CAPTION cbsCommandLinks cbsDefault CONFIRMATION_CAPTION ERROR_CAPTION INFORMATION_CAPTION mrCancel mrOk EDOC_VERSION_ACTIVE_STAGE_CODE EDOC_VERSION_DESIGN_STAGE_CODE EDOC_VERSION_OBSOLETE_STAGE_CODE cpDataEnciphermentEnabled cpDigitalSignatureEnabled cpID cpIssuer cpPluginVersion cpSerial cpSubjectName cpSubjSimpleName cpValidFromDate cpValidToDate ISBL_SYNTAX NO_SYNTAX XML_SYNTAX WAIT_BLOCK_AFTER_FINISH_EVENT WAIT_BLOCK_BEFORE_START_EVENT WAIT_BLOCK_DEADLINE_PROPERTY WAIT_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY WAIT_BLOCK_NAME_PROPERTY WAIT_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SYSRES_COMMON SYSRES_CONST SYSRES_MBFUNC SYSRES_SBDATA SYSRES_SBGUI SYSRES_SBINTF SYSRES_SBREFDSC SYSRES_SQLERRORS SYSRES_SYSCOMP atUser atGroup atRole aemEnabledAlways aemDisabledAlways aemEnabledOnBrowse aemEnabledOnEdit aemDisabledOnBrowseEmpty apBegin apEnd alLeft alRight asmNever asmNoButCustomize asmAsLastTime asmYesButCustomize asmAlways cirCommon cirRevoked ctSignature ctEncode ctSignatureEncode clbUnchecked clbChecked clbGrayed ceISB ceAlways ceNever ctDocument ctReference ctScript ctUnknown ctReport ctDialog ctFunction ctFolder ctEDocument ctTask ctJob ctNotice ctControlJob cfInternal cfDisplay ciUnspecified ciWrite ciRead ckFolder ckEDocument ckTask ckJob ckComponentToken ckAny ckReference ckScript ckReport ckDialog ctISBLEditor ctBevel ctButton ctCheckListBox ctComboBox ctComboEdit ctGrid ctDBCheckBox ctDBComboBox ctDBEdit ctDBEllipsis ctDBMemo ctDBNavigator ctDBRadioGroup ctDBStatusLabel ctEdit ctGroupBox ctInplaceHint ctMemo ctPanel ctListBox ctRadioButton ctRichEdit ctTabSheet ctWebBrowser ctImage ctHyperLink ctLabel ctDBMultiEllipsis ctRibbon ctRichView ctInnerPanel ctPanelGroup ctBitButton cctDate cctInteger cctNumeric cctPick cctReference cctString cctText cltInternal cltPrimary cltGUI dseBeforeOpen dseAfterOpen dseBeforeClose dseAfterClose dseOnValidDelete dseBeforeDelete dseAfterDelete dseAfterDeleteOutOfTransaction dseOnDeleteError dseBeforeInsert dseAfterInsert dseOnValidUpdate dseBeforeUpdate dseOnUpdateRatifiedRecord dseAfterUpdate dseAfterUpdateOutOfTransaction dseOnUpdateError dseAfterScroll dseOnOpenRecord dseOnCloseRecord dseBeforeCancel dseAfterCancel dseOnUpdateDeadlockError dseBeforeDetailUpdate dseOnPrepareUpdate dseOnAnyRequisiteChange dssEdit dssInsert dssBrowse dssInActive dftDate dftShortDate dftDateTime dftTimeStamp dotDays dotHours dotMinutes dotSeconds dtkndLocal dtkndUTC arNone arView arEdit arFull ddaView ddaEdit emLock emEdit emSign emExportWithLock emImportWithUnlock emChangeVersionNote emOpenForModify emChangeLifeStage emDelete emCreateVersion emImport emUnlockExportedWithLock emStart emAbort emReInit emMarkAsReaded emMarkAsUnreaded emPerform emAccept emResume emChangeRights emEditRoute emEditObserver emRecoveryFromLocalCopy emChangeWorkAccessType emChangeEncodeTypeToCertificate emChangeEncodeTypeToPassword emChangeEncodeTypeToNone emChangeEncodeTypeToCertificatePassword emChangeStandardRoute emGetText emOpenForView emMoveToStorage emCreateObject emChangeVersionHidden emDeleteVersion emChangeLifeCycleStage emApprovingSign emExport emContinue emLockFromEdit emUnLockForEdit emLockForServer emUnlockFromServer emDelegateAccessRights emReEncode ecotFile ecotProcess eaGet eaCopy eaCreate eaCreateStandardRoute edltAll edltNothing edltQuery essmText essmCard esvtLast esvtLastActive esvtSpecified edsfExecutive edsfArchive edstSQLServer edstFile edvstNone edvstEDocumentVersionCopy edvstFile edvstTemplate edvstScannedFile vsDefault vsDesign vsActive vsObsolete etNone etCertificate etPassword etCertificatePassword ecException ecWarning ecInformation estAll estApprovingOnly evtLast evtLastActive evtQuery fdtString fdtNumeric fdtInteger fdtDate fdtText fdtUnknown fdtWideString fdtLargeInteger ftInbox ftOutbox ftFavorites ftCommonFolder ftUserFolder ftComponents ftQuickLaunch ftShortcuts ftSearch grhAuto grhX1 grhX2 grhX3 hltText hltRTF hltHTML iffBMP iffJPEG iffMultiPageTIFF iffSinglePageTIFF iffTIFF iffPNG im8bGrayscale im24bRGB im1bMonochrome itBMP itJPEG itWMF itPNG ikhInformation ikhWarning ikhError ikhNoIcon icUnknown icScript icFunction icIntegratedReport icAnalyticReport icDataSetEventHandler icActionHandler icFormEventHandler icLookUpEventHandler icRequisiteChangeEventHandler icBeforeSearchEventHandler icRoleCalculation icSelectRouteEventHandler icBlockPropertyCalculation icBlockQueryParamsEventHandler icChangeSearchResultEventHandler icBlockEventHandler icSubTaskInitEventHandler icEDocDataSetEventHandler icEDocLookUpEventHandler icEDocActionHandler icEDocFormEventHandler icEDocRequisiteChangeEventHandler icStructuredConversionRule icStructuredConversionEventBefore icStructuredConversionEventAfter icWizardEventHandler icWizardFinishEventHandler icWizardStepEventHandler icWizardStepFinishEventHandler icWizardActionEnableEventHandler icWizardActionExecuteEventHandler icCreateJobsHandler icCreateNoticesHandler icBeforeLookUpEventHandler icAfterLookUpEventHandler icTaskAbortEventHandler icWorkflowBlockActionHandler icDialogDataSetEventHandler icDialogActionHandler icDialogLookUpEventHandler icDialogRequisiteChangeEventHandler icDialogFormEventHandler icDialogValidCloseEventHandler icBlockFormEventHandler icTaskFormEventHandler icReferenceMethod icEDocMethod icDialogMethod icProcessMessageHandler isShow isHide isByUserSettings jkJob jkNotice jkControlJob jtInner jtLeft jtRight jtFull jtCross lbpAbove lbpBelow lbpLeft lbpRight eltPerConnection eltPerUser sfcUndefined sfcBlack sfcGreen sfcRed sfcBlue sfcOrange sfcLilac sfsItalic sfsStrikeout sfsNormal ldctStandardRoute ldctWizard ldctScript ldctFunction ldctRouteBlock ldctIntegratedReport ldctAnalyticReport ldctReferenceType ldctEDocumentType ldctDialog ldctServerEvents mrcrtNone mrcrtUser mrcrtMaximal mrcrtCustom vtEqual vtGreaterOrEqual vtLessOrEqual vtRange rdYesterday rdToday rdTomorrow rdThisWeek rdThisMonth rdThisYear rdNextMonth rdNextWeek rdLastWeek rdLastMonth rdWindow rdFile rdPrinter rdtString rdtNumeric rdtInteger rdtDate rdtReference rdtAccount rdtText rdtPick rdtUnknown rdtLargeInteger rdtDocument reOnChange reOnChangeValues ttGlobal ttLocal ttUser ttSystem ssmBrowse ssmSelect ssmMultiSelect ssmBrowseModal smSelect smLike smCard stNone stAuthenticating stApproving sctString sctStream sstAnsiSort sstNaturalSort svtEqual svtContain soatString soatNumeric soatInteger soatDatetime soatReferenceRecord soatText soatPick soatBoolean soatEDocument soatAccount soatIntegerCollection soatNumericCollection soatStringCollection soatPickCollection soatDatetimeCollection soatBooleanCollection soatReferenceRecordCollection soatEDocumentCollection soatAccountCollection soatContents soatUnknown tarAbortByUser tarAbortByWorkflowException tvtAllWords tvtExactPhrase tvtAnyWord usNone usCompleted usRedSquare usBlueSquare usYellowSquare usGreenSquare usOrangeSquare usPurpleSquare usFollowUp utUnknown utUser utDeveloper utAdministrator utSystemDeveloper utDisconnected btAnd btDetailAnd btOr btNotOr btOnly vmView vmSelect vmNavigation vsmSingle vsmMultiple vsmMultipleCheck vsmNoSelection wfatPrevious wfatNext wfatCancel wfatFinish wfepUndefined wfepText3 wfepText6 wfepText9 wfepSpinEdit wfepDropDown wfepRadioGroup wfepFlag wfepText12 wfepText15 wfepText18 wfepText21 wfepText24 wfepText27 wfepText30 wfepRadioGroupColumn1 wfepRadioGroupColumn2 wfepRadioGroupColumn3 wfetQueryParameter wfetText wfetDelimiter wfetLabel wptString wptInteger wptNumeric wptBoolean wptDateTime wptPick wptText wptUser wptUserList wptEDocumentInfo wptEDocumentInfoList wptReferenceRecordInfo wptReferenceRecordInfoList wptFolderInfo wptTaskInfo wptContents wptFileName wptDate wsrComplete wsrGoNext wsrGoPrevious wsrCustom wsrCancel wsrGoFinal wstForm wstEDocument wstTaskCard wstReferenceRecordCard wstFinal waAll waPerformers waManual wsbStart wsbFinish wsbNotice wsbStep wsbDecision wsbWait wsbMonitor wsbScript wsbConnector wsbSubTask wsbLifeCycleStage wsbPause wdtInteger wdtFloat wdtString wdtPick wdtDateTime wdtBoolean wdtTask wdtJob wdtFolder wdtEDocument wdtReferenceRecord wdtUser wdtGroup wdtRole wdtIntegerCollection wdtFloatCollection wdtStringCollection wdtPickCollection wdtDateTimeCollection wdtBooleanCollection wdtTaskCollection wdtJobCollection wdtFolderCollection wdtEDocumentCollection wdtReferenceRecordCollection wdtUserCollection wdtGroupCollection wdtRoleCollection wdtContents wdtUserList wdtSearchDescription wdtDeadLine wdtPickSet wdtAccountCollection wiLow wiNormal wiHigh wrtSoft wrtHard wsInit wsRunning wsDone wsControlled wsAborted wsContinued wtmFull wtmFromCurrent wtmOnlyCurrent \",class:\"AltState Application CallType ComponentTokens CreatedJobs CreatedNotices ControlState DialogResult Dialogs EDocuments EDocumentVersionSource Folders GlobalIDs Job Jobs InputValue LookUpReference LookUpRequisiteNames LookUpSearch Object ParentComponent Processes References Requisite ReportName Reports Result Scripts Searches SelectedAttachments SelectedItems SelectMode Sender ServerEvents ServiceFactory ShiftState SubTask SystemDialogs Tasks Wizard Wizards Work ВызовСпособ ИмяОтчета РеквЗнач \",literal:\"null true false nil \"},o={begin:\"\\\\.\\\\s*\"+e.UNDERSCORE_IDENT_RE,keywords:s,relevance:0},l={className:\"type\",begin:\":[ \\\\t]*(\"+\"IApplication IAccessRights IAccountRepository IAccountSelectionRestrictions IAction IActionList IAdministrationHistoryDescription IAnchors IApplication IArchiveInfo IAttachment IAttachmentList ICheckListBox ICheckPointedList IColumn IComponent IComponentDescription IComponentToken IComponentTokenFactory IComponentTokenInfo ICompRecordInfo IConnection IContents IControl IControlJob IControlJobInfo IControlList ICrypto ICrypto2 ICustomJob ICustomJobInfo ICustomListBox ICustomObjectWizardStep ICustomWork ICustomWorkInfo IDataSet IDataSetAccessInfo IDataSigner IDateCriterion IDateRequisite IDateRequisiteDescription IDateValue IDeaAccessRights IDeaObjectInfo IDevelopmentComponentLock IDialog IDialogFactory IDialogPickRequisiteItems IDialogsFactory IDICSFactory IDocRequisite IDocumentInfo IDualListDialog IECertificate IECertificateInfo IECertificates IEditControl IEditorForm IEdmsExplorer IEdmsObject IEdmsObjectDescription IEdmsObjectFactory IEdmsObjectInfo IEDocument IEDocumentAccessRights IEDocumentDescription IEDocumentEditor IEDocumentFactory IEDocumentInfo IEDocumentStorage IEDocumentVersion IEDocumentVersionListDialog IEDocumentVersionSource IEDocumentWizardStep IEDocVerSignature IEDocVersionState IEnabledMode IEncodeProvider IEncrypter IEvent IEventList IException IExternalEvents IExternalHandler IFactory IField IFileDialog IFolder IFolderDescription IFolderDialog IFolderFactory IFolderInfo IForEach IForm IFormTitle IFormWizardStep IGlobalIDFactory IGlobalIDInfo IGrid IHasher IHistoryDescription IHyperLinkControl IImageButton IImageControl IInnerPanel IInplaceHint IIntegerCriterion IIntegerList IIntegerRequisite IIntegerValue IISBLEditorForm IJob IJobDescription IJobFactory IJobForm IJobInfo ILabelControl ILargeIntegerCriterion ILargeIntegerRequisite ILargeIntegerValue ILicenseInfo ILifeCycleStage IList IListBox ILocalIDInfo ILocalization ILock IMemoryDataSet IMessagingFactory IMetadataRepository INotice INoticeInfo INumericCriterion INumericRequisite INumericValue IObject IObjectDescription IObjectImporter IObjectInfo IObserver IPanelGroup IPickCriterion IPickProperty IPickRequisite IPickRequisiteDescription IPickRequisiteItem IPickRequisiteItems IPickValue IPrivilege IPrivilegeList IProcess IProcessFactory IProcessMessage IProgress IProperty IPropertyChangeEvent IQuery IReference IReferenceCriterion IReferenceEnabledMode IReferenceFactory IReferenceHistoryDescription IReferenceInfo IReferenceRecordCardWizardStep IReferenceRequisiteDescription IReferencesFactory IReferenceValue IRefRequisite IReport IReportFactory IRequisite IRequisiteDescription IRequisiteDescriptionList IRequisiteFactory IRichEdit IRouteStep IRule IRuleList ISchemeBlock IScript IScriptFactory ISearchCriteria ISearchCriterion ISearchDescription ISearchFactory ISearchFolderInfo ISearchForObjectDescription ISearchResultRestrictions ISecuredContext ISelectDialog IServerEvent IServerEventFactory IServiceDialog IServiceFactory ISignature ISignProvider ISignProvider2 ISignProvider3 ISimpleCriterion IStringCriterion IStringList IStringRequisite IStringRequisiteDescription IStringValue ISystemDialogsFactory ISystemInfo ITabSheet ITask ITaskAbortReasonInfo ITaskCardWizardStep ITaskDescription ITaskFactory ITaskInfo ITaskRoute ITextCriterion ITextRequisite ITextValue ITreeListSelectDialog IUser IUserList IValue IView IWebBrowserControl IWizard IWizardAction IWizardFactory IWizardFormElement IWizardParam IWizardPickParam IWizardReferenceParam IWizardStep IWorkAccessRights IWorkDescription IWorkflowAskableParam IWorkflowAskableParams IWorkflowBlock IWorkflowBlockResult IWorkflowEnabledMode IWorkflowParam IWorkflowPickParam IWorkflowReferenceParam IWorkState IWorkTreeCustomNode IWorkTreeJobNode IWorkTreeTaskNode IXMLEditorForm SBCrypto \".trim().replace(/\\s/g,\"|\")+\")\",end:\"[ \\\\t]*=\",excludeEnd:!0},c={className:\"variable\",keywords:s,begin:t,relevance:0,contains:[l,o]},_=\"[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]*\\\\(\";return{name:\"ISBL\",case_insensitive:!0,keywords:s,illegal:\"\\\\$|\\\\?|%|,|;$|~|#|@|)?\\\\s+)+\"+e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:a,contains:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:a,relevance:0,contains:[n,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},i,n]}};const Aa=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],ya=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],Da=[].concat([\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\",\"BigInt64Array\",\"BigUint64Array\",\"BigInt\"],[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"]);function Ma(e){return La(\"(?=\",e,\")\")}function La(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var xa=function(e){const t=\"[A-Za-z$_][0-9A-Za-z$_]*\",a=\"<>\",n=\"\",i={begin:/<[A-Za-z0-9\\\\._:-]+/,end:/\\/[A-Za-z0-9\\\\._:-]+>|\\/>/,isTrulyOpeningTag:(e,t)=>{const a=e[0].length+e.index,n=e.input[a];\"<\"!==n?\">\"===n&&(((e,{after:t})=>{const a=\"\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:E}]}]},{begin:/,/,relevance:0},{className:\"\",begin:/\\s/,end:/\\s*/,skip:!0},{variants:[{begin:a,end:n},{begin:i.begin,\"on:begin\":i.isTrulyOpeningTag,end:i.end}],subLanguage:\"xml\",contains:[{begin:i.begin,end:i.end,skip:!0,contains:[\"self\"]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,keywords:r,contains:[\"self\",e.inherit(e.TITLE_MODE,{begin:t}),S],illegal:/%/},{beginKeywords:\"while if switch catch for\"},{className:\"function\",begin:e.UNDERSCORE_IDENT_RE+\"\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)\\\\s*\\\\{\",returnBegin:!0,contains:[S,e.inherit(e.TITLE_MODE,{begin:t})]},{variants:[{begin:\"\\\\.\"+t},{begin:\"\\\\$\"+t}],relevance:0},{className:\"class\",beginKeywords:\"class\",end:/[{;=]/,excludeEnd:!0,illegal:/[:\"[\\]]/,contains:[{beginKeywords:\"extends\"},e.UNDERSCORE_TITLE_MODE]},{begin:/\\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),\"self\",S]},{begin:\"(get|set)\\\\s+(?=\"+t+\"\\\\()\",end:/\\{/,keywords:\"get set\",contains:[e.inherit(e.TITLE_MODE,{begin:t}),{begin:/\\(\\)/},S]},{begin:/\\$[(.]/}]}};var wa=function(e){const t={className:\"params\",begin:/\\(/,end:/\\)/,contains:[{begin:/[\\w-]+ *=/,returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:/[\\w-]+/}]}],relevance:0};return{name:\"JBoss CLI\",aliases:[\"wildfly-cli\"],keywords:{$pattern:\"[a-z-]+\",keyword:\"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source\",literal:\"true false\"},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:\"params\",begin:/--[\\w\\-=\\/]+/},{className:\"function\",begin:/:[\\w\\-.]+/,relevance:0},{className:\"string\",begin:/\\B([\\/.])[\\w\\-.\\/=]+/},t]}};var Pa=function(e){const t={literal:\"true false null\"},a=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],n=[e.QUOTE_STRING_MODE,e.C_NUMBER_MODE],i={end:\",\",endsWithParent:!0,excludeEnd:!0,contains:n,keywords:t},r={begin:/\\{/,end:/\\}/,contains:[{className:\"attr\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE],illegal:\"\\\\n\"},e.inherit(i,{begin:/:/})].concat(a),illegal:\"\\\\S\"},s={begin:\"\\\\[\",end:\"\\\\]\",contains:[e.inherit(i)],illegal:\"\\\\S\"};return n.push(r,s),a.forEach((function(e){n.push(e)})),{name:\"JSON\",contains:n,keywords:t,illegal:\"\\\\S\"}};var ka=function(e){var t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",a={$pattern:t,keyword:[\"baremodule\",\"begin\",\"break\",\"catch\",\"ccall\",\"const\",\"continue\",\"do\",\"else\",\"elseif\",\"end\",\"export\",\"false\",\"finally\",\"for\",\"function\",\"global\",\"if\",\"import\",\"in\",\"isa\",\"let\",\"local\",\"macro\",\"module\",\"quote\",\"return\",\"true\",\"try\",\"using\",\"where\",\"while\"],literal:[\"ARGS\",\"C_NULL\",\"DEPOT_PATH\",\"ENDIAN_BOM\",\"ENV\",\"Inf\",\"Inf16\",\"Inf32\",\"Inf64\",\"InsertionSort\",\"LOAD_PATH\",\"MergeSort\",\"NaN\",\"NaN16\",\"NaN32\",\"NaN64\",\"PROGRAM_FILE\",\"QuickSort\",\"RoundDown\",\"RoundFromZero\",\"RoundNearest\",\"RoundNearestTiesAway\",\"RoundNearestTiesUp\",\"RoundToZero\",\"RoundUp\",\"VERSION|0\",\"devnull\",\"false\",\"im\",\"missing\",\"nothing\",\"pi\",\"stderr\",\"stdin\",\"stdout\",\"true\",\"undef\",\"π\",\"ℯ\"],built_in:[\"AbstractArray\",\"AbstractChannel\",\"AbstractChar\",\"AbstractDict\",\"AbstractDisplay\",\"AbstractFloat\",\"AbstractIrrational\",\"AbstractMatrix\",\"AbstractRange\",\"AbstractSet\",\"AbstractString\",\"AbstractUnitRange\",\"AbstractVecOrMat\",\"AbstractVector\",\"Any\",\"ArgumentError\",\"Array\",\"AssertionError\",\"BigFloat\",\"BigInt\",\"BitArray\",\"BitMatrix\",\"BitSet\",\"BitVector\",\"Bool\",\"BoundsError\",\"CapturedException\",\"CartesianIndex\",\"CartesianIndices\",\"Cchar\",\"Cdouble\",\"Cfloat\",\"Channel\",\"Char\",\"Cint\",\"Cintmax_t\",\"Clong\",\"Clonglong\",\"Cmd\",\"Colon\",\"Complex\",\"ComplexF16\",\"ComplexF32\",\"ComplexF64\",\"CompositeException\",\"Condition\",\"Cptrdiff_t\",\"Cshort\",\"Csize_t\",\"Cssize_t\",\"Cstring\",\"Cuchar\",\"Cuint\",\"Cuintmax_t\",\"Culong\",\"Culonglong\",\"Cushort\",\"Cvoid\",\"Cwchar_t\",\"Cwstring\",\"DataType\",\"DenseArray\",\"DenseMatrix\",\"DenseVecOrMat\",\"DenseVector\",\"Dict\",\"DimensionMismatch\",\"Dims\",\"DivideError\",\"DomainError\",\"EOFError\",\"Enum\",\"ErrorException\",\"Exception\",\"ExponentialBackOff\",\"Expr\",\"Float16\",\"Float32\",\"Float64\",\"Function\",\"GlobalRef\",\"HTML\",\"IO\",\"IOBuffer\",\"IOContext\",\"IOStream\",\"IdDict\",\"IndexCartesian\",\"IndexLinear\",\"IndexStyle\",\"InexactError\",\"InitError\",\"Int\",\"Int128\",\"Int16\",\"Int32\",\"Int64\",\"Int8\",\"Integer\",\"InterruptException\",\"InvalidStateException\",\"Irrational\",\"KeyError\",\"LinRange\",\"LineNumberNode\",\"LinearIndices\",\"LoadError\",\"MIME\",\"Matrix\",\"Method\",\"MethodError\",\"Missing\",\"MissingException\",\"Module\",\"NTuple\",\"NamedTuple\",\"Nothing\",\"Number\",\"OrdinalRange\",\"OutOfMemoryError\",\"OverflowError\",\"Pair\",\"PartialQuickSort\",\"PermutedDimsArray\",\"Pipe\",\"ProcessFailedException\",\"Ptr\",\"QuoteNode\",\"Rational\",\"RawFD\",\"ReadOnlyMemoryError\",\"Real\",\"ReentrantLock\",\"Ref\",\"Regex\",\"RegexMatch\",\"RoundingMode\",\"SegmentationFault\",\"Set\",\"Signed\",\"Some\",\"StackOverflowError\",\"StepRange\",\"StepRangeLen\",\"StridedArray\",\"StridedMatrix\",\"StridedVecOrMat\",\"StridedVector\",\"String\",\"StringIndexError\",\"SubArray\",\"SubString\",\"SubstitutionString\",\"Symbol\",\"SystemError\",\"Task\",\"TaskFailedException\",\"Text\",\"TextDisplay\",\"Timer\",\"Tuple\",\"Type\",\"TypeError\",\"TypeVar\",\"UInt\",\"UInt128\",\"UInt16\",\"UInt32\",\"UInt64\",\"UInt8\",\"UndefInitializer\",\"UndefKeywordError\",\"UndefRefError\",\"UndefVarError\",\"Union\",\"UnionAll\",\"UnitRange\",\"Unsigned\",\"Val\",\"Vararg\",\"VecElement\",\"VecOrMat\",\"Vector\",\"VersionNumber\",\"WeakKeyDict\",\"WeakRef\"]},n={keywords:a,illegal:/<\\//},i={className:\"subst\",begin:/\\$\\(/,end:/\\)/,keywords:a},r={className:\"variable\",begin:\"\\\\$\"+t},s={className:\"string\",contains:[e.BACKSLASH_ESCAPE,i,r],variants:[{begin:/\\w*\"\"\"/,end:/\"\"\"\\w*/,relevance:10},{begin:/\\w*\"/,end:/\"\\w*/}]},o={className:\"string\",contains:[e.BACKSLASH_ESCAPE,i,r],begin:\"`\",end:\"`\"},l={className:\"meta\",begin:\"@\"+t};return n.name=\"Julia\",n.contains=[{className:\"number\",begin:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,relevance:0},{className:\"string\",begin:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},s,o,l,{className:\"comment\",variants:[{begin:\"#=\",end:\"=#\",relevance:10},{begin:\"#\",end:\"$\"}]},e.HASH_COMMENT_MODE,{className:\"keyword\",begin:\"\\\\b(((abstract|primitive)\\\\s+)type|(mutable\\\\s+)?struct)\\\\b\"},{begin:/<:/}],i.contains=n.contains,n};var Ua=function(e){return{name:\"Julia REPL\",contains:[{className:\"meta\",begin:/^julia>/,relevance:10,starts:{end:/^(?![ ]{6})/,subLanguage:\"julia\"},aliases:[\"jldoctest\"]}]}},Fa=\"\\\\.([0-9](_*[0-9])*)\",Ba=\"[0-9a-fA-F](_*[0-9a-fA-F])*\",Ga={className:\"number\",variants:[{begin:`(\\\\b([0-9](_*[0-9])*)((${Fa})|\\\\.)?|(${Fa}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\\\b`},{begin:`\\\\b([0-9](_*[0-9])*)((${Fa})[fFdD]?\\\\b|\\\\.([fFdD]\\\\b)?)`},{begin:`(${Fa})[fFdD]?\\\\b`},{begin:\"\\\\b([0-9](_*[0-9])*)[fFdD]\\\\b\"},{begin:`\\\\b0[xX]((${Ba})\\\\.?|(${Ba})?\\\\.(${Ba}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\\\b`},{begin:\"\\\\b(0|[1-9](_*[0-9])*)[lL]?\\\\b\"},{begin:`\\\\b0[xX](${Ba})[lL]?\\\\b`},{begin:\"\\\\b0(_*[0-7])*[lL]?\\\\b\"},{begin:\"\\\\b0[bB][01](_*[01])*[lL]?\\\\b\"}],relevance:0};var Ya=function(e){const t={keyword:\"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual\",built_in:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\"},a={className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"@\"},n={className:\"subst\",begin:/\\$\\{/,end:/\\}/,contains:[e.C_NUMBER_MODE]},i={className:\"variable\",begin:\"\\\\$\"+e.UNDERSCORE_IDENT_RE},r={className:\"string\",variants:[{begin:'\"\"\"',end:'\"\"\"(?=[^\"])',contains:[i,n]},{begin:\"'\",end:\"'\",illegal:/\\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'\"',end:'\"',illegal:/\\n/,contains:[e.BACKSLASH_ESCAPE,i,n]}]};n.contains.push(r);const s={className:\"meta\",begin:\"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\\\s*:(?:\\\\s*\"+e.UNDERSCORE_IDENT_RE+\")?\"},o={className:\"meta\",begin:\"@\"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\\(/,end:/\\)/,contains:[e.inherit(r,{className:\"meta-string\"})]}]},l=Ga,c=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[e.C_BLOCK_COMMENT_MODE]}),_={variants:[{className:\"type\",begin:e.UNDERSCORE_IDENT_RE},{begin:/\\(/,end:/\\)/,contains:[]}]},d=_;return d.variants[1].contains=[_],_.variants[1].contains=[d],{name:\"Kotlin\",aliases:[\"kt\",\"kts\"],keywords:t,contains:[e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),e.C_LINE_COMMENT_MODE,c,{className:\"keyword\",begin:/\\b(break|continue|return|this)\\b/,starts:{contains:[{className:\"symbol\",begin:/@\\w+/}]}},a,s,o,{className:\"function\",beginKeywords:\"fun\",end:\"[(]|$\",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"type\",begin://,keywords:\"reified\",relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\\/]/,endsWithParent:!0,contains:[_,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,s,o,r,e.C_NUMBER_MODE]},c]},{className:\"class\",beginKeywords:\"class interface trait\",end:/[:\\{(]|$/,excludeEnd:!0,illegal:\"extends implements\",contains:[{beginKeywords:\"public protected internal private constructor\"},e.UNDERSCORE_TITLE_MODE,{className:\"type\",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:/[,:]\\s*/,end:/[<\\(,]|$/,excludeBegin:!0,returnEnd:!0},s,o]},r,{className:\"meta\",begin:\"^#!/usr/bin/env\",end:\"$\",illegal:\"\\n\"},l]}};var Ha=function(e){const t=\"[a-zA-Z_][\\\\w.]*\",a=\"<\\\\?(lasso(script)?|=)\",n=\"\\\\]|\\\\?>\",i={$pattern:\"[a-zA-Z_][\\\\w.]*|&[lg]t;\",literal:\"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},r=e.COMMENT(\"\\x3c!--\",\"--\\x3e\",{relevance:0}),s={className:\"meta\",begin:\"\\\\[noprocess\\\\]\",starts:{end:\"\\\\[/noprocess\\\\]\",returnEnd:!0,contains:[r]}},o={className:\"meta\",begin:\"\\\\[/noprocess|\"+a},l={className:\"symbol\",begin:\"'[a-zA-Z_][\\\\w.]*'\"},c=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(e.C_NUMBER_MODE,{begin:e.C_NUMBER_RE+\"|(-?infinity|NaN)\\\\b\"}),e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"string\",begin:\"`\",end:\"`\"},{variants:[{begin:\"[#$][a-zA-Z_][\\\\w.]*\"},{begin:\"#\",end:\"\\\\d+\",illegal:\"\\\\W\"}]},{className:\"type\",begin:\"::\\\\s*\",end:t,illegal:\"\\\\W\"},{className:\"params\",variants:[{begin:\"-(?!infinity)[a-zA-Z_][\\\\w.]*\",relevance:0},{begin:\"(\\\\.\\\\.\\\\.)\"}]},{begin:/(->|\\.)\\s*/,relevance:0,contains:[l]},{className:\"class\",beginKeywords:\"define\",returnEnd:!0,end:\"\\\\(|=>\",contains:[e.inherit(e.TITLE_MODE,{begin:\"[a-zA-Z_][\\\\w.]*(=(?!>))?|[-+*/%](?!>)\"})]}];return{name:\"Lasso\",aliases:[\"ls\",\"lassoscript\"],case_insensitive:!0,keywords:i,contains:[{className:\"meta\",begin:n,relevance:0,starts:{end:\"\\\\[|\"+a,returnEnd:!0,relevance:0,contains:[r]}},s,o,{className:\"meta\",begin:\"\\\\[no_square_brackets\",starts:{end:\"\\\\[/no_square_brackets\\\\]\",keywords:i,contains:[{className:\"meta\",begin:n,relevance:0,starts:{end:\"\\\\[noprocess\\\\]|\"+a,returnEnd:!0,contains:[r]}},s,o].concat(c)}},{className:\"meta\",begin:\"\\\\[\",relevance:0},{className:\"meta\",begin:\"^#!\",end:\"lasso9$\",relevance:10}].concat(c)}};var Va=function(e){const t=[{begin:/\\^{6}[0-9a-f]{6}/},{begin:/\\^{5}[0-9a-f]{5}/},{begin:/\\^{4}[0-9a-f]{4}/},{begin:/\\^{3}[0-9a-f]{3}/},{begin:/\\^{2}[0-9a-f]{2}/},{begin:/\\^{2}[\\u0000-\\u007f]/}],a=[{className:\"keyword\",begin:/\\\\/,relevance:0,contains:[{endsParent:!0,begin:function(...e){return\"(\"+e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"|\")+\")\"}(...[\"(?:NeedsTeXFormat|RequirePackage|GetIdInfo)\",\"Provides(?:Expl)?(?:Package|Class|File)\",\"(?:DeclareOption|ProcessOptions)\",\"(?:documentclass|usepackage|input|include)\",\"makeat(?:letter|other)\",\"ExplSyntax(?:On|Off)\",\"(?:new|renew|provide)?command\",\"(?:re)newenvironment\",\"(?:New|Renew|Provide|Declare)(?:Expandable)?DocumentCommand\",\"(?:New|Renew|Provide|Declare)DocumentEnvironment\",\"(?:(?:e|g|x)?def|let)\",\"(?:begin|end)\",\"(?:part|chapter|(?:sub){0,2}section|(?:sub)?paragraph)\",\"caption\",\"(?:label|(?:eq|page|name)?ref|(?:paren|foot|super)?cite)\",\"(?:alpha|beta|[Gg]amma|[Dd]elta|(?:var)?epsilon|zeta|eta|[Tt]heta|vartheta)\",\"(?:iota|(?:var)?kappa|[Ll]ambda|mu|nu|[Xx]i|[Pp]i|varpi|(?:var)rho)\",\"(?:[Ss]igma|varsigma|tau|[Uu]psilon|[Pp]hi|varphi|chi|[Pp]si|[Oo]mega)\",\"(?:frac|sum|prod|lim|infty|times|sqrt|leq|geq|left|right|middle|[bB]igg?)\",\"(?:[lr]angle|q?quad|[lcvdi]?dots|d?dot|hat|tilde|bar)\"].map((e=>e+\"(?![a-zA-Z@:_])\")))},{endsParent:!0,begin:new RegExp([\"(?:__)?[a-zA-Z]{2,}_[a-zA-Z](?:_?[a-zA-Z])+:[a-zA-Z]*\",\"[lgc]__?[a-zA-Z](?:_?[a-zA-Z])*_[a-zA-Z]{2,}\",\"[qs]__?[a-zA-Z](?:_?[a-zA-Z])+\",\"use(?:_i)?:[a-zA-Z]*\",\"(?:else|fi|or):\",\"(?:if|cs|exp):w\",\"(?:hbox|vbox):n\",\"::[a-zA-Z]_unbraced\",\"::[a-zA-Z:]\"].map((e=>e+\"(?![a-zA-Z:_])\")).join(\"|\"))},{endsParent:!0,variants:t},{endsParent:!0,relevance:0,variants:[{begin:/[a-zA-Z@]+/},{begin:/[^a-zA-Z@]?/}]}]},{className:\"params\",relevance:0,begin:/#+\\d?/},{variants:t},{className:\"built_in\",relevance:0,begin:/[$&^_]/},{className:\"meta\",begin:\"% !TeX\",end:\"$\",relevance:10},e.COMMENT(\"%\",\"$\",{relevance:0})],n={begin:/\\{/,end:/\\}/,relevance:0,contains:[\"self\",...a]},i=e.inherit(n,{relevance:0,endsParent:!0,contains:[n,...a]}),r={begin:/\\[/,end:/\\]/,endsParent:!0,relevance:0,contains:[n,...a]},s={begin:/\\s+/,relevance:0},o=[i],l=[r],c=function(e,t){return{contains:[s],starts:{relevance:0,contains:e,starts:t}}},_=function(e,t){return{begin:\"\\\\\\\\\"+e+\"(?![a-zA-Z@:_])\",keywords:{$pattern:/\\\\[a-zA-Z]+/,keyword:\"\\\\\"+e},relevance:0,contains:[s],starts:t}},d=function(t,a){return e.inherit({begin:\"\\\\\\\\begin(?=[ \\t]*(\\\\r?\\\\n[ \\t]*)?\\\\{\"+t+\"\\\\})\",keywords:{$pattern:/\\\\[a-zA-Z]+/,keyword:\"\\\\begin\"},relevance:0},c(o,a))},m=(t=\"string\")=>e.END_SAME_AS_BEGIN({className:t,begin:/(.|\\r?\\n)/,end:/(.|\\r?\\n)/,excludeBegin:!0,excludeEnd:!0,endsParent:!0}),u=function(e){return{className:\"string\",end:\"(?=\\\\\\\\end\\\\{\"+e+\"\\\\})\"}},p=(e=\"string\")=>({relevance:0,begin:/\\{/,starts:{endsParent:!0,contains:[{className:e,end:/(?=\\})/,endsParent:!0,contains:[{begin:/\\{/,end:/\\}/,relevance:0,contains:[\"self\"]}]}]}});return{name:\"LaTeX\",aliases:[\"tex\"],contains:[...[...[\"verb\",\"lstinline\"].map((e=>_(e,{contains:[m()]}))),_(\"mint\",c(o,{contains:[m()]})),_(\"mintinline\",c(o,{contains:[p(),m()]})),_(\"url\",{contains:[p(\"link\"),p(\"link\")]}),_(\"hyperref\",{contains:[p(\"link\")]}),_(\"href\",c(l,{contains:[p(\"link\")]})),...[].concat(...[\"\",\"\\\\*\"].map((e=>[d(\"verbatim\"+e,u(\"verbatim\"+e)),d(\"filecontents\"+e,c(o,u(\"filecontents\"+e))),...[\"\",\"B\",\"L\"].map((t=>d(t+\"Verbatim\"+e,c(l,u(t+\"Verbatim\"+e)))))]))),d(\"minted\",c(l,c(o,u(\"minted\"))))],...a]}};var qa=function(e){return{name:\"LDIF\",contains:[{className:\"attribute\",begin:\"^dn\",end:\": \",excludeEnd:!0,starts:{end:\"$\",relevance:0},relevance:10},{className:\"attribute\",begin:\"^\\\\w\",end:\": \",excludeEnd:!0,starts:{end:\"$\",relevance:0}},{className:\"literal\",begin:\"^-\",end:\"$\"},e.HASH_COMMENT_MODE]}};var za=function(e){return{name:\"Leaf\",contains:[{className:\"function\",begin:\"#+[A-Za-z_0-9]*\\\\(\",end:/ \\{/,returnBegin:!0,excludeEnd:!0,contains:[{className:\"keyword\",begin:\"#+\"},{className:\"title\",begin:\"[A-Za-z_][A-Za-z_0-9]*\"},{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,contains:[{className:\"string\",begin:'\"',end:'\"'},{className:\"variable\",begin:\"[A-Za-z_][A-Za-z_0-9]*\"}]}]}]}};const $a=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],Wa=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],Qa=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],Ka=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],ja=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse(),Xa=Qa.concat(Ka);var Za=function(e){const t=(e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),a=Xa,n=\"([\\\\w-]+|@\\\\{[\\\\w-]+\\\\})\",i=[],r=[],s=function(e){return{className:\"string\",begin:\"~?\"+e+\".*?\"+e}},o=function(e,t,a){return{className:e,begin:t,relevance:a}},l={$pattern:/[a-z-]+/,keyword:\"and or not only\",attribute:Wa.join(\" \")},c={begin:\"\\\\(\",end:\"\\\\)\",contains:r,keywords:l,relevance:0};r.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s(\"'\"),s('\"'),e.CSS_NUMBER_MODE,{begin:\"(url|data-uri)\\\\(\",starts:{className:\"string\",end:\"[\\\\)\\\\n]\",excludeEnd:!0}},t.HEXCOLOR,c,o(\"variable\",\"@@?[\\\\w-]+\",10),o(\"variable\",\"@\\\\{[\\\\w-]+\\\\}\"),o(\"built_in\",\"~?`[^`]*?`\"),{className:\"attribute\",begin:\"[\\\\w-]+\\\\s*:\",end:\":\",returnBegin:!0,excludeEnd:!0},t.IMPORTANT);const _=r.concat({begin:/\\{/,end:/\\}/,contains:i}),d={beginKeywords:\"when\",endsWithParent:!0,contains:[{beginKeywords:\"and not\"}].concat(r)},m={begin:n+\"\\\\s*:\",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},{className:\"attribute\",begin:\"\\\\b(\"+ja.join(\"|\")+\")\\\\b\",end:/(?=:)/,starts:{endsWithParent:!0,illegal:\"[<=$]\",relevance:0,contains:r}}]},u={className:\"keyword\",begin:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{end:\"[;{}]\",keywords:l,returnEnd:!0,contains:r,relevance:0}},p={className:\"variable\",variants:[{begin:\"@[\\\\w-]+\\\\s*:\",relevance:15},{begin:\"@[\\\\w-]+\"}],starts:{end:\"[;}]\",returnEnd:!0,contains:_}},g={variants:[{begin:\"[\\\\.#:&\\\\[>]\",end:\"[;{}]\"},{begin:n,end:/\\{/}],returnBegin:!0,returnEnd:!0,illegal:\"[<='$\\\"]\",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,d,o(\"keyword\",\"all\\\\b\"),o(\"variable\",\"@\\\\{[\\\\w-]+\\\\}\"),{begin:\"\\\\b(\"+$a.join(\"|\")+\")\\\\b\",className:\"selector-tag\"},o(\"selector-tag\",n+\"%?\",0),o(\"selector-id\",\"#\"+n),o(\"selector-class\",\"\\\\.\"+n,0),o(\"selector-tag\",\"&\",0),t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-pseudo\",begin:\":(\"+Qa.join(\"|\")+\")\"},{className:\"selector-pseudo\",begin:\"::(\"+Ka.join(\"|\")+\")\"},{begin:\"\\\\(\",end:\"\\\\)\",contains:_},{begin:\"!important\"}]},E={begin:`[\\\\w-]+:(:)?(${a.join(\"|\")})`,returnBegin:!0,contains:[g]};return i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,u,p,E,m,g),{name:\"Less\",case_insensitive:!0,illegal:\"[=>'/<($\\\"]\",contains:i}};var Ja=function(e){var t=\"[a-zA-Z_\\\\-+\\\\*\\\\/<=>&#][a-zA-Z0-9_\\\\-+*\\\\/<=>&#!]*\",a=\"\\\\|[^]*?\\\\|\",n=\"(-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|-)?\\\\d+)?\",i={className:\"literal\",begin:\"\\\\b(t{1}|nil)\\\\b\"},r={className:\"number\",variants:[{begin:n,relevance:0},{begin:\"#(b|B)[0-1]+(/[0-1]+)?\"},{begin:\"#(o|O)[0-7]+(/[0-7]+)?\"},{begin:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{begin:\"#(c|C)\\\\(\"+n+\" +\"+n,end:\"\\\\)\"}]},s=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),o=e.COMMENT(\";\",\"$\",{relevance:0}),l={begin:\"\\\\*\",end:\"\\\\*\"},c={className:\"symbol\",begin:\"[:&]\"+t},_={begin:t,relevance:0},d={begin:a},m={contains:[r,s,l,c,{begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",i,s,r,_]},_],variants:[{begin:\"['`]\\\\(\",end:\"\\\\)\"},{begin:\"\\\\(quote \",end:\"\\\\)\",keywords:{name:\"quote\"}},{begin:\"'\"+a}]},u={variants:[{begin:\"'\"+t},{begin:\"#'\"+t+\"(::\"+t+\")*\"}]},p={begin:\"\\\\(\\\\s*\",end:\"\\\\)\"},g={endsWithParent:!0,relevance:0};return p.contains=[{className:\"name\",variants:[{begin:t,relevance:0},{begin:a}]},g],g.contains=[m,u,p,i,r,s,o,l,c,d,_],{name:\"Lisp\",illegal:/\\S/,contains:[r,e.SHEBANG(),i,s,o,m,u,p,_]}};var en=function(e){const t={className:\"variable\",variants:[{begin:\"\\\\b([gtps][A-Z]{1}[a-zA-Z0-9]*)(\\\\[.+\\\\])?(?:\\\\s*?)\"},{begin:\"\\\\$_[A-Z]+\"}],relevance:0},a=[e.C_BLOCK_COMMENT_MODE,e.HASH_COMMENT_MODE,e.COMMENT(\"--\",\"$\"),e.COMMENT(\"[^:]//\",\"$\")],n=e.inherit(e.TITLE_MODE,{variants:[{begin:\"\\\\b_*rig[A-Z][A-Za-z0-9_\\\\-]*\"},{begin:\"\\\\b_[a-z0-9\\\\-]+\"}]}),i=e.inherit(e.TITLE_MODE,{begin:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{name:\"LiveCode\",case_insensitive:!1,keywords:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",literal:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress difference directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge messageAuthenticationCode messageDigest millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetDriver libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load extension loadedExtensions multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract symmetric union unload vectorDotProduct wait write\"},contains:[t,{className:\"keyword\",begin:\"\\\\bend\\\\sif\\\\b\"},{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[t,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,n]},{className:\"function\",begin:\"\\\\bend\\\\s+\",end:\"$\",keywords:\"end\",contains:[i,n],relevance:0},{beginKeywords:\"command on\",end:\"$\",contains:[t,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,n]},{className:\"meta\",variants:[{begin:\"<\\\\?(rev|lc|livecode)\",relevance:10},{begin:\"<\\\\?\"},{begin:\"\\\\?>\"}]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,n].concat(a),illegal:\";$|^\\\\[|^=|&|\\\\{\"}};const tn=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],an=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],nn=[].concat([\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\",\"BigInt64Array\",\"BigUint64Array\",\"BigInt\"],[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"]);var rn=function(e){const t={keyword:tn.concat([\"then\",\"unless\",\"until\",\"loop\",\"of\",\"by\",\"when\",\"and\",\"or\",\"is\",\"isnt\",\"not\",\"it\",\"that\",\"otherwise\",\"from\",\"to\",\"til\",\"fallthrough\",\"case\",\"enum\",\"native\",\"list\",\"map\",\"__hasProp\",\"__extends\",\"__slice\",\"__bind\",\"__indexOf\"]),literal:an.concat([\"yes\",\"no\",\"on\",\"off\",\"it\",\"that\",\"void\"]),built_in:nn.concat([\"npm\",\"print\"])},a=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",n=e.inherit(e.TITLE_MODE,{begin:a}),i={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:t},r={className:\"subst\",begin:/#[A-Za-z$_]/,end:/(?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,keywords:t},s=[e.BINARY_NUMBER_MODE,{className:\"number\",begin:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",relevance:0,starts:{end:\"(\\\\s*/)?\",relevance:0}},{className:\"string\",variants:[{begin:/'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,i,r]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,i,r]},{begin:/\\\\/,end:/(\\s|$)/,excludeEnd:!0}]},{className:\"regexp\",variants:[{begin:\"//\",end:\"//[gim]*\",contains:[i,e.HASH_COMMENT_MODE]},{begin:/\\/(?![ *])(\\\\.|[^\\\\\\n])*?\\/[gim]*(?=\\W)/}]},{begin:\"@\"+a},{begin:\"``\",end:\"``\",excludeBegin:!0,excludeEnd:!0,subLanguage:\"javascript\"}];i.contains=s;const o={className:\"params\",begin:\"\\\\(\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:t,contains:[\"self\"].concat(s)}]};return{name:\"LiveScript\",aliases:[\"ls\"],keywords:t,illegal:/\\/\\*/,contains:s.concat([e.COMMENT(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HASH_COMMENT_MODE,{begin:\"(#=>|=>|\\\\|>>|-?->|!->)\"},{className:\"function\",contains:[n,o],returnBegin:!0,variants:[{begin:\"(\"+a+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\)\\\\s*)?\\\\B->\\\\*?\",end:\"->\\\\*?\"},{begin:\"(\"+a+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\)\\\\s*)?\\\\B[-~]{1,2}>\\\\*?\",end:\"[-~]{1,2}>\\\\*?\"},{begin:\"(\"+a+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\)\\\\s*)?\\\\B!?[-~]{1,2}>\\\\*?\",end:\"!?[-~]{1,2}>\\\\*?\"}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[n]},n]},{begin:a+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}};function sn(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var on=function(e){const t=/([-a-zA-Z$._][\\w$.-]*)/,a={className:\"variable\",variants:[{begin:sn(/%/,t)},{begin:/%\\d+/},{begin:/#\\d+/}]},n={className:\"title\",variants:[{begin:sn(/@/,t)},{begin:/@\\d+/},{begin:sn(/!/,t)},{begin:sn(/!\\d+/,t)},{begin:/!\\d+/}]};return{name:\"LLVM IR\",keywords:\"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double\",contains:[{className:\"type\",begin:/\\bi\\d+(?=\\s|\\b)/},e.COMMENT(/;\\s*$/,null,{relevance:0}),e.COMMENT(/;/,/$/),e.QUOTE_STRING_MODE,{className:\"string\",variants:[{begin:/\"/,end:/[^\\\\]\"/}]},n,{className:\"punctuation\",relevance:0,begin:/,/},{className:\"operator\",relevance:0,begin:/=/},a,{className:\"symbol\",variants:[{begin:/^\\s*[a-z]+:/}],relevance:0},{className:\"number\",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?/}],relevance:0}]}};var ln=function(e){var t={className:\"string\",begin:'\"',end:'\"',contains:[{className:\"subst\",begin:/\\\\[tn\"\\\\]/}]},a={className:\"number\",relevance:0,begin:e.C_NUMBER_RE};return{name:\"LSL (Linden Scripting Language)\",illegal:\":\",contains:[t,{className:\"comment\",variants:[e.COMMENT(\"//\",\"$\"),e.COMMENT(\"/\\\\*\",\"\\\\*/\")],relevance:0},a,{className:\"section\",variants:[{begin:\"\\\\b(state|default)\\\\b\"},{begin:\"\\\\b(state_(entry|exit)|touch(_(start|end))?|(land_)?collision(_(start|end))?|timer|listen|(no_)?sensor|control|(not_)?at_(rot_)?target|money|email|experience_permissions(_denied)?|run_time_permissions|changed|attach|dataserver|moving_(start|end)|link_message|(on|object)_rez|remote_data|http_re(sponse|quest)|path_update|transaction_result)\\\\b\"}]},{className:\"built_in\",begin:\"\\\\b(ll(AgentInExperience|(Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(Details|ErrorMessage)|ReturnObjectsBy(ID|Owner)|Json(2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(Mag|Norm|Dist)|Rot(Between|2(Euler|Fwd|Left|Up))|(Euler|Axes)2Rot|Whisper|(Region|Owner)?Say|Shout|Listen(Control|Remove)?|Sensor(Repeat|Remove)?|Detected(Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|([GS]et)(AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(Scale|Offset|Rotate)Texture|(Rot)?Target(Remove)?|(Stop)?MoveToTarget|Apply(Rotational)?Impulse|Set(KeyframedMotion|ContentType|RegionPos|(Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(Queueing|Radius)|Vehicle(Type|(Float|Vector|Rotation)Param)|(Touch|Sit)?Text|Camera(Eye|At)Offset|PrimitiveParams|ClickAction|Link(Alpha|Color|PrimitiveParams(Fast)?|Texture(Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get((Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(PrimitiveParams|Number(OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(Details|PermMask|PrimCount)|Parcel(MaxPrims|Details|Prim(Count|Owners))|Attached(List)?|(SPMax|Free|Used)Memory|Region(Name|TimeDilation|FPS|Corner|AgentCount)|Root(Position|Rotation)|UnixTime|(Parcel|Region)Flags|(Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(Prims|NotecardLines|Sides)|Animation(List)?|(Camera|Local)(Pos|Rot)|Vel|Accel|Omega|Time(stamp|OfDay)|(Object|CenterOf)?Mass|MassMKS|Energy|Owner|(Owner)?Key|SunDirection|Texture(Offset|Scale|Rot)|Inventory(Number|Name|Key|Type|Creator|PermMask)|Permissions(Key)?|StartParameter|List(Length|EntryType)|Date|Agent(Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(Name|State))|(Get|Reset|GetAndReset)Time|PlaySound(Slave)?|LoopSound(Master|Slave)?|(Trigger|Stop|Preload)Sound|((Get|Delete)Sub|Insert)String|To(Upper|Lower)|Give(InventoryList|Money)|RezObject|(Stop)?LookAt|Sleep|CollisionFilter|(Take|Release)Controls|DetachFromAvatar|AttachToAvatar(Temp)?|InstantMessage|(GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(Length|Trim)|(Start|Stop)Animation|TargetOmega|Request(Experience)?Permissions|(Create|Break)Link|BreakAllLinks|(Give|Remove)Inventory|Water|PassTouches|Request(Agent|Inventory)Data|TeleportAgent(Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(Axis|Angle)|A(cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(CSV|Integer|Json|Float|String|Key|Vector|Rot|List(Strided)?)|DeleteSubList|List(Statistics|Sort|Randomize|(Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(Slope|Normal|Contour)|GroundRepel|(Set|Remove)VehicleFlags|SitOnLink|(AvatarOn)?(Link)?SitTarget|Script(Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(Integer|String)ToBase64|XorBase64|Log(10)?|Base64To(String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(Load|Release|(E|Une)scape)URL|ParcelMedia(CommandList|Query)|ModPow|MapDestination|(RemoveFrom|AddTo|Reset)Land(Pass|Ban)List|(Set|Clear)CameraParams|HTTP(Request|Response)|TextBox|DetectedTouch(UV|Face|Pos|(N|Bin)ormal|ST)|(MD5|SHA1|DumpList2)String|Request(Secure)?URL|Clear(Prim|Link)Media|(Link)?ParticleSystem|(Get|Request)(Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\\\b\"},{className:\"literal\",variants:[{begin:\"\\\\b(PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\\\b\"},{begin:\"\\\\b(XP_ERROR_(EXPERIENCES_DISABLED|EXPERIENCE_(DISABLED|SUSPENDED)|INVALID_(EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(FOUND|PERMITTED(_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(_OBJECT)?|(DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(_(BY_(LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(PARCEL(_OWNER)?|REGION)))?|CAMERA_(PITCH|DISTANCE|BEHINDNESS_(ANGLE|LAG)|(FOCUS|POSITION)(_(THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(ROOT|SET|ALL_(OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(IVE|_(ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(FWD|BACK|(ROT_)?(LEFT|RIGHT)|UP|DOWN|(ML_)?LBUTTON)|PERMISSION_(RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(_START)?|TELEPORT|MEDIA)|OBJECT_(CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_(ATTACHED|ON_REZ)|NAME|DESC|POS|PRIM_(COUNT|EQUIVALENCE)|RETURN_(PARCEL(_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP(_TAG)?|CREATOR|ATTACHED_(POINT|SLOTS_AVAILABLE)|RENDER_WEIGHT|(BODY_SHAPE|PATHFINDING)_TYPE|(RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(MEMORY|TIME))|TYPE_(INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(DEBUG|PUBLIC)_CHANNEL|ATTACH_(AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](SHOULDER|HAND|FOOT|EAR|EYE|[UL](ARM|LEG)|HIP)|(LEFT|RIGHT)_PEC|HUD_(CENTER_[12]|TOP_(RIGHT|CENTER|LEFT)|BOTTOM(_(RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(BASE|TIP)|[LR]WING|FACE_(JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(ONLINE|NAME|BORN|SIM_(POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(ON_FILE|USED)|REMOTE_DATA_(CHANNEL|REQUEST|REPLY)|PSYS_(PART_(BF_(ZERO|ONE(_MINUS_(DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(START|END)_(COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(RIBBON|WIND|INTERP_(COLOR|SCALE)|BOUNCE|FOLLOW_(SRC|VELOCITY)|TARGET_(POS|LINEAR)|EMISSIVE)_MASK)|SRC_(MAX_AGE|PATTERN|ANGLE_(BEGIN|END)|BURST_(RATE|PART_COUNT|RADIUS|SPEED_(MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(DROP|EXPLODE|ANGLE(_CONE(_EMPTY)?)?)))|VEHICLE_(REFERENCE_FRAME|TYPE_(NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(LINEAR|ANGULAR)_(FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(LINEAR|ANGULAR)_(DEFLECTION_(EFFICIENCY|TIMESCALE)|MOTOR_(DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(EFFICIENCY|TIMESCALE)|BANKING_(EFFICIENCY|MIX|TIMESCALE)|FLAG_(NO_DEFLECTION_UP|LIMIT_(ROLL_ONLY|MOTOR_UP)|HOVER_((WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(ALLOW_UNSIT|ALPHA_MODE(_(BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(_(BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(_(STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(NONE|LOW|MEDIUM|HIGH)|BUMP_(NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(DEFAULT|PLANAR)|SCRIPTED_SIT_ONLY|SCULPT_(TYPE_(SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(MIRROR|INVERT))|PHYSICS(_(SHAPE_(CONVEX|NONE|PRIM|TYPE)))?|(POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIT_TARGET|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(ALT_IMAGE_ENABLE|CONTROLS|(CURRENT|HOME)_URL|AUTO_(LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(WIDTH|HEIGHT)_PIXELS|WHITELIST(_ENABLE)?|PERMS_(INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(STANDARD|MINI)|PERM_(NONE|OWNER|GROUP|ANYONE)|MAX_(URL_LENGTH|WHITELIST_(SIZE|COUNT)|(WIDTH|HEIGHT)_PIXELS)))|MASK_(BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(MEDIA_COMMAND_(STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(ALLOW_(FLY|(GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(GROUP_)?OBJECTS)|USE_(ACCESS_(GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(GROUP|ALL)_OBJECT_ENTRY)|COUNT_(TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(HIDE|DEFAULT)|REGION_FLAG_(ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(METHOD|MIMETYPE|BODY_(MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|SIT_(INVALID_(AGENT|LINK_OBJECT)|NO(T_EXPERIENCE|_(ACCESS|EXPERIENCE_PERMISSION|SIT_TARGET)))|STRING_(TRIM(_(HEAD|TAIL))?)|CLICK_ACTION_(NONE|TOUCH|SIT|BUY|PAY|OPEN(_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(NONE|SCRIPT_MEMORY)|RC_(DATA_FLAGS|DETECT_PHANTOM|GET_(LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(TYPES|AGENTS|(NON)?PHYSICAL|LAND))|RCERR_(CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(ALLOWED_(AGENT|GROUP)_(ADD|REMOVE)|BANNED_AGENT_(ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(COMMAND|CMD_(PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(CMD_((SMOOTH_)?STOP|JUMP)|DESIRED_(TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(_([ABCD]|NONE))?|MAX_(DECEL|TURN_RADIUS|(ACCEL|SPEED)))|PURSUIT_(OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(EVADE_(HIDDEN|SPOTTED)|FAILURE_(DYNAMIC_PATHFINDING_DISABLED|INVALID_(GOAL|START)|NO_(NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(PARCEL_)?UNREACHABLE)|(GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(_(FAST|NONE|SLOW))?|CONTENT_TYPE_(ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(RADIUS|STATIC)|(PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\\\b\"},{begin:\"\\\\b(FALSE|TRUE)\\\\b\"},{begin:\"\\\\b(ZERO_ROTATION)\\\\b\"},{begin:\"\\\\b(EOF|JSON_(ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(GRANTED|DENIED))\\\\b\"},{begin:\"\\\\b(ZERO_VECTOR|TOUCH_INVALID_(TEXCOORD|VECTOR))\\\\b\"}]},{className:\"type\",begin:\"\\\\b(integer|float|string|key|vector|quaternion|rotation|list)\\\\b\"}]}};var cn=function(e){const t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",n={begin:t,end:a,contains:[\"self\"]},i=[e.COMMENT(\"--(?!\\\\[=*\\\\[)\",\"$\"),e.COMMENT(\"--\\\\[=*\\\\[\",a,{contains:[n],relevance:10})];return{name:\"Lua\",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:\"true false nil\",keyword:\"and break do else elseif end for goto if in local not or repeat return then until while\",built_in:\"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove\"},contains:i.concat([{className:\"function\",beginKeywords:\"function\",end:\"\\\\)\",contains:[e.inherit(e.TITLE_MODE,{begin:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{className:\"params\",begin:\"\\\\(\",endsWithParent:!0,contains:i}].concat(i)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:t,end:a,contains:[n],relevance:5}])}};var _n=function(e){const t={className:\"variable\",variants:[{begin:\"\\\\$\\\\(\"+e.UNDERSCORE_IDENT_RE+\"\\\\)\",contains:[e.BACKSLASH_ESCAPE]},{begin:/\\$[@%mn(e))).join(\"\")}function gn(...e){return\"(\"+e.map((e=>mn(e))).join(\"|\")+\")\"}var En=function(e){const t=gn(pn(/([2-9]|[1-2]\\d|[3][0-5])\\^\\^/,/(\\w*\\.\\w+|\\w+\\.\\w*|\\w+)/),/(\\d*\\.\\d+|\\d+\\.\\d*|\\d+)/),a={className:\"number\",relevance:0,begin:pn(t,un(gn(/``[+-]?(\\d*\\.\\d+|\\d+\\.\\d*|\\d+)/,/`([+-]?(\\d*\\.\\d+|\\d+\\.\\d*|\\d+))?/)),un(/\\*\\^[+-]?\\d+/))},n=/[a-zA-Z$][a-zA-Z0-9$]*/,i=new Set(dn),r={variants:[{className:\"builtin-symbol\",begin:n,\"on:begin\":(e,t)=>{i.has(e[0])||t.ignoreMatch()}},{className:\"symbol\",relevance:0,begin:n}]},s={className:\"message-name\",relevance:0,begin:pn(\"::\",n)};return{name:\"Mathematica\",aliases:[\"mma\",\"wl\"],classNameAliases:{brace:\"punctuation\",pattern:\"type\",slot:\"type\",symbol:\"variable\",\"named-character\":\"variable\",\"builtin-symbol\":\"built_in\",\"message-name\":\"string\"},contains:[e.COMMENT(/\\(\\*/,/\\*\\)/,{contains:[\"self\"]}),{className:\"pattern\",relevance:0,begin:/([a-zA-Z$][a-zA-Z0-9$]*)?_+([a-zA-Z$][a-zA-Z0-9$]*)?/},{className:\"slot\",relevance:0,begin:/#[a-zA-Z$][a-zA-Z0-9$]*|#+[0-9]?/},s,r,{className:\"named-character\",begin:/\\\\\\[[$a-zA-Z][$a-zA-Z0-9]+\\]/},e.QUOTE_STRING_MODE,a,{className:\"operator\",relevance:0,begin:/[+\\-*/,;.:@~=><&|_`'^?!%]+/},{className:\"brace\",relevance:0,begin:/[[\\](){}]/}]}};var Sn=function(e){var t=\"('|\\\\.')+\",a={relevance:0,contains:[{begin:t}]};return{name:\"Matlab\",keywords:{keyword:\"arguments break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i|0 inf nan isnan isinf isfinite j|0 why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell \"},illegal:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',contains:[{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",variants:[{begin:\"\\\\(\",end:\"\\\\)\"},{begin:\"\\\\[\",end:\"\\\\]\"}]}]},{className:\"built_in\",begin:/true|false/,relevance:0,starts:a},{begin:\"[a-zA-Z][a-zA-Z_0-9]*('|\\\\.')+\",relevance:0},{className:\"number\",begin:e.C_NUMBER_RE,relevance:0,starts:a},{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE,{begin:\"''\"}]},{begin:/\\]|\\}|\\)/,relevance:0,starts:a},{className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE,{begin:'\"\"'}],starts:a},e.COMMENT(\"^\\\\s*%\\\\{\\\\s*$\",\"^\\\\s*%\\\\}\\\\s*$\"),e.COMMENT(\"%\",\"$\")]}};var bn=function(e){return{name:\"Maxima\",keywords:{$pattern:\"[A-Za-z_%][0-9A-Za-z_%]*\",keyword:\"if then else elseif for thru do while unless step in and or not\",literal:\"true false unknown inf minf ind und %e %i %pi %phi %gamma\",built_in:\" abasep abs absint absolute_real_time acos acosh acot acoth acsc acsch activate addcol add_edge add_edges addmatrices addrow add_vertex add_vertices adjacency_matrix adjoin adjoint af agd airy airy_ai airy_bi airy_dai airy_dbi algsys alg_type alias allroots alphacharp alphanumericp amortization %and annuity_fv annuity_pv antid antidiff AntiDifference append appendfile apply apply1 apply2 applyb1 apropos args arit_amortization arithmetic arithsum array arrayapply arrayinfo arraymake arraysetapply ascii asec asech asin asinh askinteger asksign assoc assoc_legendre_p assoc_legendre_q assume assume_external_byte_order asympa at atan atan2 atanh atensimp atom atvalue augcoefmatrix augmented_lagrangian_method av average_degree backtrace bars barsplot barsplot_description base64 base64_decode bashindices batch batchload bc2 bdvac belln benefit_cost bern bernpoly bernstein_approx bernstein_expand bernstein_poly bessel bessel_i bessel_j bessel_k bessel_simplify bessel_y beta beta_incomplete beta_incomplete_generalized beta_incomplete_regularized bezout bfallroots bffac bf_find_root bf_fmin_cobyla bfhzeta bfloat bfloatp bfpsi bfpsi0 bfzeta biconnected_components bimetric binomial bipartition block blockmatrixp bode_gain bode_phase bothcoef box boxplot boxplot_description break bug_report build_info|10 buildq build_sample burn cabs canform canten cardinality carg cartan cartesian_product catch cauchy_matrix cbffac cdf_bernoulli cdf_beta cdf_binomial cdf_cauchy cdf_chi2 cdf_continuous_uniform cdf_discrete_uniform cdf_exp cdf_f cdf_gamma cdf_general_finite_discrete cdf_geometric cdf_gumbel cdf_hypergeometric cdf_laplace cdf_logistic cdf_lognormal cdf_negative_binomial cdf_noncentral_chi2 cdf_noncentral_student_t cdf_normal cdf_pareto cdf_poisson cdf_rank_sum cdf_rayleigh cdf_signed_rank cdf_student_t cdf_weibull cdisplay ceiling central_moment cequal cequalignore cf cfdisrep cfexpand cgeodesic cgreaterp cgreaterpignore changename changevar chaosgame charat charfun charfun2 charlist charp charpoly chdir chebyshev_t chebyshev_u checkdiv check_overlaps chinese cholesky christof chromatic_index chromatic_number cint circulant_graph clear_edge_weight clear_rules clear_vertex_label clebsch_gordan clebsch_graph clessp clesspignore close closefile cmetric coeff coefmatrix cograd col collapse collectterms columnop columnspace columnswap columnvector combination combine comp2pui compare compfile compile compile_file complement_graph complete_bipartite_graph complete_graph complex_number_p components compose_functions concan concat conjugate conmetderiv connected_components connect_vertices cons constant constantp constituent constvalue cont2part content continuous_freq contortion contour_plot contract contract_edge contragrad contrib_ode convert coord copy copy_file copy_graph copylist copymatrix cor cos cosh cot coth cov cov1 covdiff covect covers crc24sum create_graph create_list csc csch csetup cspline ctaylor ct_coordsys ctransform ctranspose cube_graph cuboctahedron_graph cunlisp cv cycle_digraph cycle_graph cylindrical days360 dblint deactivate declare declare_constvalue declare_dimensions declare_fundamental_dimensions declare_fundamental_units declare_qty declare_translated declare_unit_conversion declare_units declare_weights decsym defcon define define_alt_display define_variable defint defmatch defrule defstruct deftaylor degree_sequence del delete deleten delta demo demoivre denom depends derivdegree derivlist describe desolve determinant dfloat dgauss_a dgauss_b dgeev dgemm dgeqrf dgesv dgesvd diag diagmatrix diag_matrix diagmatrixp diameter diff digitcharp dimacs_export dimacs_import dimension dimensionless dimensions dimensions_as_list direct directory discrete_freq disjoin disjointp disolate disp dispcon dispform dispfun dispJordan display disprule dispterms distrib divide divisors divsum dkummer_m dkummer_u dlange dodecahedron_graph dotproduct dotsimp dpart draw draw2d draw3d drawdf draw_file draw_graph dscalar echelon edge_coloring edge_connectivity edges eigens_by_jacobi eigenvalues eigenvectors eighth einstein eivals eivects elapsed_real_time elapsed_run_time ele2comp ele2polynome ele2pui elem elementp elevation_grid elim elim_allbut eliminate eliminate_using ellipse elliptic_e elliptic_ec elliptic_eu elliptic_f elliptic_kc elliptic_pi ematrix empty_graph emptyp endcons entermatrix entertensor entier equal equalp equiv_classes erf erfc erf_generalized erfi errcatch error errormsg errors euler ev eval_string evenp every evolution evolution2d evundiff example exp expand expandwrt expandwrt_factored expint expintegral_chi expintegral_ci expintegral_e expintegral_e1 expintegral_ei expintegral_e_simplify expintegral_li expintegral_shi expintegral_si explicit explose exponentialize express expt exsec extdiff extract_linear_equations extremal_subset ezgcd %f f90 facsum factcomb factor factorfacsum factorial factorout factorsum facts fast_central_elements fast_linsolve fasttimes featurep fernfale fft fib fibtophi fifth filename_merge file_search file_type fillarray findde find_root find_root_abs find_root_error find_root_rel first fix flatten flength float floatnump floor flower_snark flush flush1deriv flushd flushnd flush_output fmin_cobyla forget fortran fourcos fourexpand fourier fourier_elim fourint fourintcos fourintsin foursimp foursin fourth fposition frame_bracket freeof freshline fresnel_c fresnel_s from_adjacency_matrix frucht_graph full_listify fullmap fullmapl fullratsimp fullratsubst fullsetify funcsolve fundamental_dimensions fundamental_units fundef funmake funp fv g0 g1 gamma gamma_greek gamma_incomplete gamma_incomplete_generalized gamma_incomplete_regularized gauss gauss_a gauss_b gaussprob gcd gcdex gcdivide gcfac gcfactor gd generalized_lambert_w genfact gen_laguerre genmatrix gensym geo_amortization geo_annuity_fv geo_annuity_pv geomap geometric geometric_mean geosum get getcurrentdirectory get_edge_weight getenv get_lu_factors get_output_stream_string get_pixel get_plot_option get_tex_environment get_tex_environment_default get_vertex_label gfactor gfactorsum ggf girth global_variances gn gnuplot_close gnuplot_replot gnuplot_reset gnuplot_restart gnuplot_start go Gosper GosperSum gr2d gr3d gradef gramschmidt graph6_decode graph6_encode graph6_export graph6_import graph_center graph_charpoly graph_eigenvalues graph_flow graph_order graph_periphery graph_product graph_size graph_union great_rhombicosidodecahedron_graph great_rhombicuboctahedron_graph grid_graph grind grobner_basis grotzch_graph hamilton_cycle hamilton_path hankel hankel_1 hankel_2 harmonic harmonic_mean hav heawood_graph hermite hessian hgfred hilbertmap hilbert_matrix hipow histogram histogram_description hodge horner hypergeometric i0 i1 %ibes ic1 ic2 ic_convert ichr1 ichr2 icosahedron_graph icosidodecahedron_graph icurvature ident identfor identity idiff idim idummy ieqn %if ifactors iframes ifs igcdex igeodesic_coords ilt image imagpart imetric implicit implicit_derivative implicit_plot indexed_tensor indices induced_subgraph inferencep inference_result infix info_display init_atensor init_ctensor in_neighbors innerproduct inpart inprod inrt integerp integer_partitions integrate intersect intersection intervalp intopois intosum invariant1 invariant2 inverse_fft inverse_jacobi_cd inverse_jacobi_cn inverse_jacobi_cs inverse_jacobi_dc inverse_jacobi_dn inverse_jacobi_ds inverse_jacobi_nc inverse_jacobi_nd inverse_jacobi_ns inverse_jacobi_sc inverse_jacobi_sd inverse_jacobi_sn invert invert_by_adjoint invert_by_lu inv_mod irr is is_biconnected is_bipartite is_connected is_digraph is_edge_in_graph is_graph is_graph_or_digraph ishow is_isomorphic isolate isomorphism is_planar isqrt isreal_p is_sconnected is_tree is_vertex_in_graph items_inference %j j0 j1 jacobi jacobian jacobi_cd jacobi_cn jacobi_cs jacobi_dc jacobi_dn jacobi_ds jacobi_nc jacobi_nd jacobi_ns jacobi_p jacobi_sc jacobi_sd jacobi_sn JF jn join jordan julia julia_set julia_sin %k kdels kdelta kill killcontext kostka kron_delta kronecker_product kummer_m kummer_u kurtosis kurtosis_bernoulli kurtosis_beta kurtosis_binomial kurtosis_chi2 kurtosis_continuous_uniform kurtosis_discrete_uniform kurtosis_exp kurtosis_f kurtosis_gamma kurtosis_general_finite_discrete kurtosis_geometric kurtosis_gumbel kurtosis_hypergeometric kurtosis_laplace kurtosis_logistic kurtosis_lognormal kurtosis_negative_binomial kurtosis_noncentral_chi2 kurtosis_noncentral_student_t kurtosis_normal kurtosis_pareto kurtosis_poisson kurtosis_rayleigh kurtosis_student_t kurtosis_weibull label labels lagrange laguerre lambda lambert_w laplace laplacian_matrix last lbfgs lc2kdt lcharp lc_l lcm lc_u ldefint ldisp ldisplay legendre_p legendre_q leinstein length let letrules letsimp levi_civita lfreeof lgtreillis lhs li liediff limit Lindstedt linear linearinterpol linear_program linear_regression line_graph linsolve listarray list_correlations listify list_matrix_entries list_nc_monomials listoftens listofvars listp lmax lmin load loadfile local locate_matrix_entry log logcontract log_gamma lopow lorentz_gauge lowercasep lpart lratsubst lreduce lriemann lsquares_estimates lsquares_estimates_approximate lsquares_estimates_exact lsquares_mse lsquares_residual_mse lsquares_residuals lsum ltreillis lu_backsub lucas lu_factor %m macroexpand macroexpand1 make_array makebox makefact makegamma make_graph make_level_picture makelist makeOrders make_poly_continent make_poly_country make_polygon make_random_state make_rgb_picture makeset make_string_input_stream make_string_output_stream make_transform mandelbrot mandelbrot_set map mapatom maplist matchdeclare matchfix mat_cond mat_fullunblocker mat_function mathml_display mat_norm matrix matrixmap matrixp matrix_size mattrace mat_trace mat_unblocker max max_clique max_degree max_flow maximize_lp max_independent_set max_matching maybe md5sum mean mean_bernoulli mean_beta mean_binomial mean_chi2 mean_continuous_uniform mean_deviation mean_discrete_uniform mean_exp mean_f mean_gamma mean_general_finite_discrete mean_geometric mean_gumbel mean_hypergeometric mean_laplace mean_logistic mean_lognormal mean_negative_binomial mean_noncentral_chi2 mean_noncentral_student_t mean_normal mean_pareto mean_poisson mean_rayleigh mean_student_t mean_weibull median median_deviation member mesh metricexpandall mgf1_sha1 min min_degree min_edge_cut minfactorial minimalPoly minimize_lp minimum_spanning_tree minor minpack_lsquares minpack_solve min_vertex_cover min_vertex_cut mkdir mnewton mod mode_declare mode_identity ModeMatrix moebius mon2schur mono monomial_dimensions multibernstein_poly multi_display_for_texinfo multi_elem multinomial multinomial_coeff multi_orbit multiplot_mode multi_pui multsym multthru mycielski_graph nary natural_unit nc_degree ncexpt ncharpoly negative_picture neighbors new newcontext newdet new_graph newline newton new_variable next_prime nicedummies niceindices ninth nofix nonarray noncentral_moment nonmetricity nonnegintegerp nonscalarp nonzeroandfreeof notequal nounify nptetrad npv nroots nterms ntermst nthroot nullity nullspace num numbered_boundaries numberp number_to_octets num_distinct_partitions numerval numfactor num_partitions nusum nzeta nzetai nzetar octets_to_number octets_to_oid odd_girth oddp ode2 ode_check odelin oid_to_octets op opena opena_binary openr openr_binary openw openw_binary operatorp opsubst optimize %or orbit orbits ordergreat ordergreatp orderless orderlessp orthogonal_complement orthopoly_recur orthopoly_weight outermap out_neighbors outofpois pade parabolic_cylinder_d parametric parametric_surface parg parGosper parse_string parse_timedate part part2cont partfrac partition partition_set partpol path_digraph path_graph pathname_directory pathname_name pathname_type pdf_bernoulli pdf_beta pdf_binomial pdf_cauchy pdf_chi2 pdf_continuous_uniform pdf_discrete_uniform pdf_exp pdf_f pdf_gamma pdf_general_finite_discrete pdf_geometric pdf_gumbel pdf_hypergeometric pdf_laplace pdf_logistic pdf_lognormal pdf_negative_binomial pdf_noncentral_chi2 pdf_noncentral_student_t pdf_normal pdf_pareto pdf_poisson pdf_rank_sum pdf_rayleigh pdf_signed_rank pdf_student_t pdf_weibull pearson_skewness permanent permut permutation permutations petersen_graph petrov pickapart picture_equalp picturep piechart piechart_description planar_embedding playback plog plot2d plot3d plotdf ploteq plsquares pochhammer points poisdiff poisexpt poisint poismap poisplus poissimp poissubst poistimes poistrim polar polarform polartorect polar_to_xy poly_add poly_buchberger poly_buchberger_criterion poly_colon_ideal poly_content polydecomp poly_depends_p poly_elimination_ideal poly_exact_divide poly_expand poly_expt poly_gcd polygon poly_grobner poly_grobner_equal poly_grobner_member poly_grobner_subsetp poly_ideal_intersection poly_ideal_polysaturation poly_ideal_polysaturation1 poly_ideal_saturation poly_ideal_saturation1 poly_lcm poly_minimization polymod poly_multiply polynome2ele polynomialp poly_normal_form poly_normalize poly_normalize_list poly_polysaturation_extension poly_primitive_part poly_pseudo_divide poly_reduced_grobner poly_reduction poly_saturation_extension poly_s_polynomial poly_subtract polytocompanion pop postfix potential power_mod powerseries powerset prefix prev_prime primep primes principal_components print printf printfile print_graph printpois printprops prodrac product properties propvars psi psubst ptriangularize pui pui2comp pui2ele pui2polynome pui_direct puireduc push put pv qput qrange qty quad_control quad_qag quad_qagi quad_qagp quad_qags quad_qawc quad_qawf quad_qawo quad_qaws quadrilateral quantile quantile_bernoulli quantile_beta quantile_binomial quantile_cauchy quantile_chi2 quantile_continuous_uniform quantile_discrete_uniform quantile_exp quantile_f quantile_gamma quantile_general_finite_discrete quantile_geometric quantile_gumbel quantile_hypergeometric quantile_laplace quantile_logistic quantile_lognormal quantile_negative_binomial quantile_noncentral_chi2 quantile_noncentral_student_t quantile_normal quantile_pareto quantile_poisson quantile_rayleigh quantile_student_t quantile_weibull quartile_skewness quit qunit quotient racah_v racah_w radcan radius random random_bernoulli random_beta random_binomial random_bipartite_graph random_cauchy random_chi2 random_continuous_uniform random_digraph random_discrete_uniform random_exp random_f random_gamma random_general_finite_discrete random_geometric random_graph random_graph1 random_gumbel random_hypergeometric random_laplace random_logistic random_lognormal random_negative_binomial random_network random_noncentral_chi2 random_noncentral_student_t random_normal random_pareto random_permutation random_poisson random_rayleigh random_regular_graph random_student_t random_tournament random_tree random_weibull range rank rat ratcoef ratdenom ratdiff ratdisrep ratexpand ratinterpol rational rationalize ratnumer ratnump ratp ratsimp ratsubst ratvars ratweight read read_array read_binary_array read_binary_list read_binary_matrix readbyte readchar read_hashed_array readline read_list read_matrix read_nested_list readonly read_xpm real_imagpart_to_conjugate realpart realroots rearray rectangle rectform rectform_log_if_constant recttopolar rediff reduce_consts reduce_order region region_boundaries region_boundaries_plus rem remainder remarray rembox remcomps remcon remcoord remfun remfunction remlet remove remove_constvalue remove_dimensions remove_edge remove_fundamental_dimensions remove_fundamental_units remove_plot_option remove_vertex rempart remrule remsym remvalue rename rename_file reset reset_displays residue resolvante resolvante_alternee1 resolvante_bipartite resolvante_diedrale resolvante_klein resolvante_klein3 resolvante_produit_sym resolvante_unitaire resolvante_vierer rest resultant return reveal reverse revert revert2 rgb2level rhs ricci riemann rinvariant risch rk rmdir rncombine romberg room rootscontract round row rowop rowswap rreduce run_testsuite %s save saving scalarp scaled_bessel_i scaled_bessel_i0 scaled_bessel_i1 scalefactors scanmap scatterplot scatterplot_description scene schur2comp sconcat scopy scsimp scurvature sdowncase sec sech second sequal sequalignore set_alt_display setdifference set_draw_defaults set_edge_weight setelmx setequalp setify setp set_partitions set_plot_option set_prompt set_random_state set_tex_environment set_tex_environment_default setunits setup_autoload set_up_dot_simplifications set_vertex_label seventh sexplode sf sha1sum sha256sum shortest_path shortest_weighted_path show showcomps showratvars sierpinskiale sierpinskimap sign signum similaritytransform simp_inequality simplify_sum simplode simpmetderiv simtran sin sinh sinsert sinvertcase sixth skewness skewness_bernoulli skewness_beta skewness_binomial skewness_chi2 skewness_continuous_uniform skewness_discrete_uniform skewness_exp skewness_f skewness_gamma skewness_general_finite_discrete skewness_geometric skewness_gumbel skewness_hypergeometric skewness_laplace skewness_logistic skewness_lognormal skewness_negative_binomial skewness_noncentral_chi2 skewness_noncentral_student_t skewness_normal skewness_pareto skewness_poisson skewness_rayleigh skewness_student_t skewness_weibull slength smake small_rhombicosidodecahedron_graph small_rhombicuboctahedron_graph smax smin smismatch snowmap snub_cube_graph snub_dodecahedron_graph solve solve_rec solve_rec_rat some somrac sort sparse6_decode sparse6_encode sparse6_export sparse6_import specint spherical spherical_bessel_j spherical_bessel_y spherical_hankel1 spherical_hankel2 spherical_harmonic spherical_to_xyz splice split sposition sprint sqfr sqrt sqrtdenest sremove sremovefirst sreverse ssearch ssort sstatus ssubst ssubstfirst staircase standardize standardize_inverse_trig starplot starplot_description status std std1 std_bernoulli std_beta std_binomial std_chi2 std_continuous_uniform std_discrete_uniform std_exp std_f std_gamma std_general_finite_discrete std_geometric std_gumbel std_hypergeometric std_laplace std_logistic std_lognormal std_negative_binomial std_noncentral_chi2 std_noncentral_student_t std_normal std_pareto std_poisson std_rayleigh std_student_t std_weibull stemplot stirling stirling1 stirling2 strim striml strimr string stringout stringp strong_components struve_h struve_l sublis sublist sublist_indices submatrix subsample subset subsetp subst substinpart subst_parallel substpart substring subvar subvarp sum sumcontract summand_to_rec supcase supcontext symbolp symmdifference symmetricp system take_channel take_inference tan tanh taylor taylorinfo taylorp taylor_simplifier taytorat tcl_output tcontract tellrat tellsimp tellsimpafter tentex tenth test_mean test_means_difference test_normality test_proportion test_proportions_difference test_rank_sum test_sign test_signed_rank test_variance test_variance_ratio tex tex1 tex_display texput %th third throw time timedate timer timer_info tldefint tlimit todd_coxeter toeplitz tokens to_lisp topological_sort to_poly to_poly_solve totaldisrep totalfourier totient tpartpol trace tracematrix trace_options transform_sample translate translate_file transpose treefale tree_reduce treillis treinat triangle triangularize trigexpand trigrat trigreduce trigsimp trunc truncate truncated_cube_graph truncated_dodecahedron_graph truncated_icosahedron_graph truncated_tetrahedron_graph tr_warnings_get tube tutte_graph ueivects uforget ultraspherical underlying_graph undiff union unique uniteigenvectors unitp units unit_step unitvector unorder unsum untellrat untimer untrace uppercasep uricci uriemann uvect vandermonde_matrix var var1 var_bernoulli var_beta var_binomial var_chi2 var_continuous_uniform var_discrete_uniform var_exp var_f var_gamma var_general_finite_discrete var_geometric var_gumbel var_hypergeometric var_laplace var_logistic var_lognormal var_negative_binomial var_noncentral_chi2 var_noncentral_student_t var_normal var_pareto var_poisson var_rayleigh var_student_t var_weibull vector vectorpotential vectorsimp verbify vers vertex_coloring vertex_connectivity vertex_degree vertex_distance vertex_eccentricity vertex_in_degree vertex_out_degree vertices vertices_to_cycle vertices_to_path %w weyl wheel_graph wiener_index wigner_3j wigner_6j wigner_9j with_stdout write_binary_data writebyte write_data writefile wronskian xreduce xthru %y Zeilberger zeroequiv zerofor zeromatrix zeromatrixp zeta zgeev zheev zlange zn_add_table zn_carmichael_lambda zn_characteristic_factors zn_determinant zn_factor_generators zn_invert_by_lu zn_log zn_mult_table absboxchar activecontexts adapt_depth additive adim aform algebraic algepsilon algexact aliases allbut all_dotsimp_denoms allocation allsym alphabetic animation antisymmetric arrays askexp assume_pos assume_pos_pred assumescalar asymbol atomgrad atrig1 axes axis_3d axis_bottom axis_left axis_right axis_top azimuth background background_color backsubst berlefact bernstein_explicit besselexpand beta_args_sum_to_integer beta_expand bftorat bftrunc bindtest border boundaries_array box boxchar breakup %c capping cauchysum cbrange cbtics center cflength cframe_flag cnonmet_flag color color_bar color_bar_tics colorbox columns commutative complex cone context contexts contour contour_levels cosnpiflag ctaypov ctaypt ctayswitch ctayvar ct_coords ctorsion_flag ctrgsimp cube current_let_rule_package cylinder data_file_name debugmode decreasing default_let_rule_package delay dependencies derivabbrev derivsubst detout diagmetric diff dim dimensions dispflag display2d|10 display_format_internal distribute_over doallmxops domain domxexpt domxmxops domxnctimes dontfactor doscmxops doscmxplus dot0nscsimp dot0simp dot1simp dotassoc dotconstrules dotdistrib dotexptsimp dotident dotscrules draw_graph_program draw_realpart edge_color edge_coloring edge_partition edge_type edge_width %edispflag elevation %emode endphi endtheta engineering_format_floats enhanced3d %enumer epsilon_lp erfflag erf_representation errormsg error_size error_syms error_type %e_to_numlog eval even evenfun evflag evfun ev_point expandwrt_denom expintexpand expintrep expon expop exptdispflag exptisolate exptsubst facexpand facsum_combine factlim factorflag factorial_expand factors_only fb feature features file_name file_output_append file_search_demo file_search_lisp file_search_maxima|10 file_search_tests file_search_usage file_type_lisp file_type_maxima|10 fill_color fill_density filled_func fixed_vertices flipflag float2bf font font_size fortindent fortspaces fpprec fpprintprec functions gamma_expand gammalim gdet genindex gensumnum GGFCFMAX GGFINFINITY globalsolve gnuplot_command gnuplot_curve_styles gnuplot_curve_titles gnuplot_default_term_command gnuplot_dumb_term_command gnuplot_file_args gnuplot_file_name gnuplot_out_file gnuplot_pdf_term_command gnuplot_pm3d gnuplot_png_term_command gnuplot_postamble gnuplot_preamble gnuplot_ps_term_command gnuplot_svg_term_command gnuplot_term gnuplot_view_args Gosper_in_Zeilberger gradefs grid grid2d grind halfangles head_angle head_both head_length head_type height hypergeometric_representation %iargs ibase icc1 icc2 icounter idummyx ieqnprint ifb ifc1 ifc2 ifg ifgi ifr iframe_bracket_form ifri igeowedge_flag ikt1 ikt2 imaginary inchar increasing infeval infinity inflag infolists inm inmc1 inmc2 intanalysis integer integervalued integrate_use_rootsof integration_constant integration_constant_counter interpolate_color intfaclim ip_grid ip_grid_in irrational isolate_wrt_times iterations itr julia_parameter %k1 %k2 keepfloat key key_pos kinvariant kt label label_alignment label_orientation labels lassociative lbfgs_ncorrections lbfgs_nfeval_max leftjust legend letrat let_rule_packages lfg lg lhospitallim limsubst linear linear_solver linechar linel|10 linenum line_type linewidth line_width linsolve_params linsolvewarn lispdisp listarith listconstvars listdummyvars lmxchar load_pathname loadprint logabs logarc logcb logconcoeffp logexpand lognegint logsimp logx logx_secondary logy logy_secondary logz lriem m1pbranch macroexpansion macros mainvar manual_demo maperror mapprint matrix_element_add matrix_element_mult matrix_element_transpose maxapplydepth maxapplyheight maxima_tempdir|10 maxima_userdir|10 maxnegex MAX_ORD maxposex maxpsifracdenom maxpsifracnum maxpsinegint maxpsiposint maxtayorder mesh_lines_color method mod_big_prime mode_check_errorp mode_checkp mode_check_warnp mod_test mod_threshold modular_linear_solver modulus multiplicative multiplicities myoptions nary negdistrib negsumdispflag newline newtonepsilon newtonmaxiter nextlayerfactor niceindicespref nm nmc noeval nolabels nonegative_lp noninteger nonscalar noun noundisp nouns np npi nticks ntrig numer numer_pbranch obase odd oddfun opacity opproperties opsubst optimprefix optionset orientation origin orthopoly_returns_intervals outative outchar packagefile palette partswitch pdf_file pfeformat phiresolution %piargs piece pivot_count_sx pivot_max_sx plot_format plot_options plot_realpart png_file pochhammer_max_index points pointsize point_size points_joined point_type poislim poisson poly_coefficient_ring poly_elimination_order polyfactor poly_grobner_algorithm poly_grobner_debug poly_monomial_order poly_primary_elimination_order poly_return_term_list poly_secondary_elimination_order poly_top_reduction_only posfun position powerdisp pred prederror primep_number_of_tests product_use_gamma program programmode promote_float_to_bigfloat prompt proportional_axes props psexpand ps_file radexpand radius radsubstflag rassociative ratalgdenom ratchristof ratdenomdivide rateinstein ratepsilon ratfac rational ratmx ratprint ratriemann ratsimpexpons ratvarswitch ratweights ratweyl ratwtlvl real realonly redraw refcheck resolution restart resultant ric riem rmxchar %rnum_list rombergabs rombergit rombergmin rombergtol rootsconmode rootsepsilon run_viewer same_xy same_xyz savedef savefactors scalar scalarmatrixp scale scale_lp setcheck setcheckbreak setval show_edge_color show_edges show_edge_type show_edge_width show_id show_label showtime show_vertex_color show_vertex_size show_vertex_type show_vertices show_weight simp simplified_output simplify_products simpproduct simpsum sinnpiflag solvedecomposes solveexplicit solvefactors solvenullwarn solveradcan solvetrigwarn space sparse sphere spring_embedding_depth sqrtdispflag stardisp startphi starttheta stats_numer stringdisp structures style sublis_apply_lambda subnumsimp sumexpand sumsplitfact surface surface_hide svg_file symmetric tab taylordepth taylor_logexpand taylor_order_coefficients taylor_truncate_polynomials tensorkill terminal testsuite_files thetaresolution timer_devalue title tlimswitch tr track transcompile transform transform_xy translate_fast_arrays transparent transrun tr_array_as_ref tr_bound_function_applyp tr_file_tty_messagesp tr_float_can_branch_complex tr_function_call_default trigexpandplus trigexpandtimes triginverses trigsign trivial_solutions tr_numer tr_optimize_max_loop tr_semicompile tr_state_vars tr_warn_bad_function_calls tr_warn_fexpr tr_warn_meval tr_warn_mode tr_warn_undeclared tr_warn_undefined_variable tstep ttyoff tube_extremes ufg ug %unitexpand unit_vectors uric uriem use_fast_arrays user_preamble usersetunits values vect_cross verbose vertex_color vertex_coloring vertex_partition vertex_size vertex_type view warnings weyl width windowname windowtitle wired_surface wireframe xaxis xaxis_color xaxis_secondary xaxis_type xaxis_width xlabel xlabel_secondary xlength xrange xrange_secondary xtics xtics_axis xtics_rotate xtics_rotate_secondary xtics_secondary xtics_secondary_axis xu_grid x_voxel xy_file xyplane xy_scale yaxis yaxis_color yaxis_secondary yaxis_type yaxis_width ylabel ylabel_secondary ylength yrange yrange_secondary ytics ytics_axis ytics_rotate ytics_rotate_secondary ytics_secondary ytics_secondary_axis yv_grid y_voxel yx_ratio zaxis zaxis_color zaxis_type zaxis_width zeroa zerob zerobern zeta%pi zlabel zlabel_rotate zlength zmin zn_primroot_limit zn_primroot_pretest\",symbol:\"_ __ %|0 %%|0\"},contains:[{className:\"comment\",begin:\"/\\\\*\",end:\"\\\\*/\",contains:[\"self\"]},e.QUOTE_STRING_MODE,{className:\"number\",relevance:0,variants:[{begin:\"\\\\b(\\\\d+|\\\\d+\\\\.|\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)[Ee][-+]?\\\\d+\\\\b\"},{begin:\"\\\\b(\\\\d+|\\\\d+\\\\.|\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)[Bb][-+]?\\\\d+\\\\b\",relevance:10},{begin:\"\\\\b(\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)\\\\b\"},{begin:\"\\\\b(\\\\d+|0[0-9A-Za-z]+)\\\\.?\\\\b\"}]}],illegal:/@/}};var Tn=function(e){return{name:\"MEL\",keywords:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",illegal:\"\"},{begin:\"<=\",relevance:0},{begin:\"=>\",relevance:0},{begin:\"/\\\\\\\\\"},{begin:\"\\\\\\\\/\"}]},{className:\"built_in\",variants:[{begin:\":-\\\\|--\\x3e\"},{begin:\"=\",relevance:0}]},t,e.C_BLOCK_COMMENT_MODE,{className:\"number\",begin:\"0'.\\\\|0[box][0-9a-fA-F]*\"},e.NUMBER_MODE,a,n,{begin:/:-/},{begin:/\\.$/}]}};var Cn=function(e){return{name:\"MIPS Assembly\",case_insensitive:!0,aliases:[\"mips\"],keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,meta:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg \",built_in:\"$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt \"},contains:[{className:\"keyword\",begin:\"\\\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(\\\\.hb)?|jr(\\\\.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs\\\\.[sd]|add\\\\.[sd]|alnv.ps|bc1[ft]l?|c\\\\.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et])\\\\.[sd]|(ceil|floor|round|trunc)\\\\.[lw]\\\\.[sd]|cfc1|cvt\\\\.d\\\\.[lsw]|cvt\\\\.l\\\\.[dsw]|cvt\\\\.ps\\\\.s|cvt\\\\.s\\\\.[dlw]|cvt\\\\.s\\\\.p[lu]|cvt\\\\.w\\\\.[dls]|div\\\\.[ds]|ldx?c1|luxc1|lwx?c1|madd\\\\.[sd]|mfc1|mov[fntz]?\\\\.[ds]|msub\\\\.[sd]|mth?c1|mul\\\\.[ds]|neg\\\\.[ds]|nmadd\\\\.[ds]|nmsub\\\\.[ds]|p[lu][lu]\\\\.ps|recip\\\\.fmt|r?sqrt\\\\.[ds]|sdx?c1|sub\\\\.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)\",end:\"\\\\s\"},e.COMMENT(\"[;#](?!\\\\s*$)\",\"$\"),e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",relevance:0},{className:\"title\",begin:\"\\\\|\",end:\"\\\\|\",illegal:\"\\\\n\",relevance:0},{className:\"number\",variants:[{begin:\"0x[0-9a-f]+\"},{begin:\"\\\\b-?\\\\d+\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{begin:\"^\\\\s*[0-9]+:\"},{begin:\"[0-9]+[bf]\"}],relevance:0}],illegal:/\\//}};var Nn=function(e){return{name:\"Mizar\",keywords:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",contains:[e.COMMENT(\"::\",\"$\")]}};function Rn(e){return e?\"string\"==typeof e?e:e.source:null}function On(...e){return e.map((e=>Rn(e))).join(\"\")}function hn(...e){return\"(\"+e.map((e=>Rn(e))).join(\"|\")+\")\"}var vn=function(e){const t=/[dualxmsipngr]{0,12}/,a={$pattern:/[\\w.]+/,keyword:[\"abs\",\"accept\",\"alarm\",\"and\",\"atan2\",\"bind\",\"binmode\",\"bless\",\"break\",\"caller\",\"chdir\",\"chmod\",\"chomp\",\"chop\",\"chown\",\"chr\",\"chroot\",\"close\",\"closedir\",\"connect\",\"continue\",\"cos\",\"crypt\",\"dbmclose\",\"dbmopen\",\"defined\",\"delete\",\"die\",\"do\",\"dump\",\"each\",\"else\",\"elsif\",\"endgrent\",\"endhostent\",\"endnetent\",\"endprotoent\",\"endpwent\",\"endservent\",\"eof\",\"eval\",\"exec\",\"exists\",\"exit\",\"exp\",\"fcntl\",\"fileno\",\"flock\",\"for\",\"foreach\",\"fork\",\"format\",\"formline\",\"getc\",\"getgrent\",\"getgrgid\",\"getgrnam\",\"gethostbyaddr\",\"gethostbyname\",\"gethostent\",\"getlogin\",\"getnetbyaddr\",\"getnetbyname\",\"getnetent\",\"getpeername\",\"getpgrp\",\"getpriority\",\"getprotobyname\",\"getprotobynumber\",\"getprotoent\",\"getpwent\",\"getpwnam\",\"getpwuid\",\"getservbyname\",\"getservbyport\",\"getservent\",\"getsockname\",\"getsockopt\",\"given\",\"glob\",\"gmtime\",\"goto\",\"grep\",\"gt\",\"hex\",\"if\",\"index\",\"int\",\"ioctl\",\"join\",\"keys\",\"kill\",\"last\",\"lc\",\"lcfirst\",\"length\",\"link\",\"listen\",\"local\",\"localtime\",\"log\",\"lstat\",\"lt\",\"ma\",\"map\",\"mkdir\",\"msgctl\",\"msgget\",\"msgrcv\",\"msgsnd\",\"my\",\"ne\",\"next\",\"no\",\"not\",\"oct\",\"open\",\"opendir\",\"or\",\"ord\",\"our\",\"pack\",\"package\",\"pipe\",\"pop\",\"pos\",\"print\",\"printf\",\"prototype\",\"push\",\"q|0\",\"qq\",\"quotemeta\",\"qw\",\"qx\",\"rand\",\"read\",\"readdir\",\"readline\",\"readlink\",\"readpipe\",\"recv\",\"redo\",\"ref\",\"rename\",\"require\",\"reset\",\"return\",\"reverse\",\"rewinddir\",\"rindex\",\"rmdir\",\"say\",\"scalar\",\"seek\",\"seekdir\",\"select\",\"semctl\",\"semget\",\"semop\",\"send\",\"setgrent\",\"sethostent\",\"setnetent\",\"setpgrp\",\"setpriority\",\"setprotoent\",\"setpwent\",\"setservent\",\"setsockopt\",\"shift\",\"shmctl\",\"shmget\",\"shmread\",\"shmwrite\",\"shutdown\",\"sin\",\"sleep\",\"socket\",\"socketpair\",\"sort\",\"splice\",\"split\",\"sprintf\",\"sqrt\",\"srand\",\"stat\",\"state\",\"study\",\"sub\",\"substr\",\"symlink\",\"syscall\",\"sysopen\",\"sysread\",\"sysseek\",\"system\",\"syswrite\",\"tell\",\"telldir\",\"tie\",\"tied\",\"time\",\"times\",\"tr\",\"truncate\",\"uc\",\"ucfirst\",\"umask\",\"undef\",\"unless\",\"unlink\",\"unpack\",\"unshift\",\"untie\",\"until\",\"use\",\"utime\",\"values\",\"vec\",\"wait\",\"waitpid\",\"wantarray\",\"warn\",\"when\",\"while\",\"write\",\"x|0\",\"xor\",\"y|0\"].join(\" \")},n={className:\"subst\",begin:\"[$@]\\\\{\",end:\"\\\\}\",keywords:a},i={begin:/->\\{/,end:/\\}/},r={variants:[{begin:/\\$\\d/},{begin:On(/[$%@](\\^\\w\\b|#\\w+(::\\w+)*|\\{\\w+\\}|\\w+(::\\w*)*)/,\"(?![A-Za-z])(?![@$%])\")},{begin:/[$%@][^\\s\\w{]/,relevance:0}]},s=[e.BACKSLASH_ESCAPE,n,r],o=[/!/,/\\//,/\\|/,/\\?/,/'/,/\"/,/#/],l=(e,a,n=\"\\\\1\")=>{const i=\"\\\\1\"===n?n:On(n,a);return On(On(\"(?:\",e,\")\"),a,/(?:\\\\.|[^\\\\\\/])*?/,i,/(?:\\\\.|[^\\\\\\/])*?/,n,t)},c=(e,a,n)=>On(On(\"(?:\",e,\")\"),a,/(?:\\\\.|[^\\\\\\/])*?/,n,t),_=[r,e.HASH_COMMENT_MODE,e.COMMENT(/^=\\w/,/=cut/,{endsWithParent:!0}),i,{className:\"string\",contains:s,variants:[{begin:\"q[qwxr]?\\\\s*\\\\(\",end:\"\\\\)\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\[\",end:\"\\\\]\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\{\",end:\"\\\\}\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\|\",end:\"\\\\|\",relevance:5},{begin:\"q[qwxr]?\\\\s*<\",end:\">\",relevance:5},{begin:\"qw\\\\s+q\",end:\"q\",relevance:5},{begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE]},{begin:'\"',end:'\"'},{begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE]},{begin:/\\{\\w+\\}/,relevance:0},{begin:\"-?\\\\w+\\\\s*=>\",relevance:0}]},{className:\"number\",begin:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",relevance:0},{begin:\"(\\\\/\\\\/|\"+e.RE_STARTERS_RE+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",keywords:\"split return print reverse grep\",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:\"regexp\",variants:[{begin:l(\"s|tr|y\",hn(...o))},{begin:l(\"s|tr|y\",\"\\\\(\",\"\\\\)\")},{begin:l(\"s|tr|y\",\"\\\\[\",\"\\\\]\")},{begin:l(\"s|tr|y\",\"\\\\{\",\"\\\\}\")}],relevance:2},{className:\"regexp\",variants:[{begin:/(m|qr)\\/\\//,relevance:0},{begin:c(\"(?:m|qr)?\",/\\//,/\\//)},{begin:c(\"m|qr\",hn(...o),/\\1/)},{begin:c(\"m|qr\",/\\(/,/\\)/)},{begin:c(\"m|qr\",/\\[/,/\\]/)},{begin:c(\"m|qr\",/\\{/,/\\}/)}]}]},{className:\"function\",beginKeywords:\"sub\",end:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:\"-\\\\w\\\\b\",relevance:0},{begin:\"^__DATA__$\",end:\"^__END__$\",subLanguage:\"mojolicious\",contains:[{begin:\"^@@.*\",end:\"$\",className:\"comment\"}]}];return n.contains=_,i.contains=_,{name:\"Perl\",aliases:[\"pl\",\"pm\"],keywords:a,contains:_}};var In=function(e){return{name:\"Mojolicious\",subLanguage:\"xml\",contains:[{className:\"meta\",begin:\"^__(END|DATA)__$\"},{begin:\"^\\\\s*%{1,2}={0,2}\",end:\"$\",subLanguage:\"perl\"},{begin:\"<%{1,2}={0,2}\",end:\"={0,1}%>\",subLanguage:\"perl\",excludeBegin:!0,excludeEnd:!0}]}};var An=function(e){const t={className:\"number\",relevance:0,variants:[{begin:\"[$][a-fA-F0-9]+\"},e.NUMBER_MODE]};return{name:\"Monkey\",case_insensitive:!0,keywords:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},illegal:/\\/\\*/,contains:[e.COMMENT(\"#rem\",\"#end\"),e.COMMENT(\"'\",\"$\",{relevance:0}),{className:\"function\",beginKeywords:\"function method\",end:\"[(=:]|$\",illegal:/\\n/,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"class\",beginKeywords:\"class interface\",end:\"$\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{className:\"built_in\",begin:\"\\\\b(self|super)\\\\b\"},{className:\"meta\",begin:\"\\\\s*#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elseif endif end then\"}},{className:\"meta\",begin:\"^\\\\s*strict\\\\b\"},{beginKeywords:\"alias\",end:\"=\",contains:[e.UNDERSCORE_TITLE_MODE]},e.QUOTE_STRING_MODE,t]}};var yn=function(e){const t={keyword:\"if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using\",literal:\"true false nil\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},a=\"[A-Za-z$_][0-9A-Za-z$_]*\",n={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:t},i=[e.inherit(e.C_NUMBER_MODE,{starts:{end:\"(\\\\s*/)?\",relevance:0}}),{className:\"string\",variants:[{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,n]}]},{className:\"built_in\",begin:\"@__\"+e.IDENT_RE},{begin:\"@\"+e.IDENT_RE},{begin:e.IDENT_RE+\"\\\\\\\\\"+e.IDENT_RE}];n.contains=i;const r=e.inherit(e.TITLE_MODE,{begin:a}),s=\"(\\\\(.*\\\\)\\\\s*)?\\\\B[-=]>\",o={className:\"params\",begin:\"\\\\([^\\\\(]\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:t,contains:[\"self\"].concat(i)}]};return{name:\"MoonScript\",aliases:[\"moon\"],keywords:t,illegal:/\\/\\*/,contains:i.concat([e.COMMENT(\"--\",\"$\"),{className:\"function\",begin:\"^\\\\s*\"+a+\"\\\\s*=\\\\s*\"+s,end:\"[-=]>\",returnBegin:!0,contains:[r,o]},{begin:/[\\(,:=]\\s*/,relevance:0,contains:[{className:\"function\",begin:s,end:\"[-=]>\",returnBegin:!0,contains:[o]}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[r]},r]},{className:\"name\",begin:a+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}};var Dn=function(e){return{name:\"N1QL\",case_insensitive:!0,contains:[{beginKeywords:\"build create index delete drop explain infer|10 insert merge prepare select update upsert|10\",end:/;/,endsWithParent:!0,keywords:{keyword:\"all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor\",literal:\"true false null missing|5\",built_in:\"array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE]},{className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE]},{className:\"symbol\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE],relevance:2},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE]}};var Mn=function(e){const t={className:\"variable\",variants:[{begin:/\\$\\d+/},{begin:/\\$\\{/,end:/\\}/},{begin:/[$@]/+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{$pattern:\"[a-z/_]+\",literal:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},relevance:0,illegal:\"=>\",contains:[e.HASH_COMMENT_MODE,{className:\"string\",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/}]},{begin:\"([a-z]+):/\",end:\"\\\\s\",endsWithParent:!0,excludeEnd:!0,contains:[t]},{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:\"\\\\s\\\\^\",end:\"\\\\s|\\\\{|;\",returnEnd:!0},{begin:\"~\\\\*?\\\\s+\",end:\"\\\\s|\\\\{|;\",returnEnd:!0},{begin:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{begin:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{className:\"number\",begin:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{className:\"number\",begin:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",relevance:0},t]};return{name:\"Nginx config\",aliases:[\"nginxconf\"],contains:[e.HASH_COMMENT_MODE,{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s+\\\\{\",returnBegin:!0,end:/\\{/,contains:[{className:\"section\",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s\",end:\";|\\\\{\",returnBegin:!0,contains:[{className:\"attribute\",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],illegal:\"[^\\\\s\\\\}]\"}};var Ln=function(e){return{name:\"Nim\",keywords:{keyword:\"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from func generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield\",literal:\"shared guarded stdin stdout stderr result true false\",built_in:\"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic\"},contains:[{className:\"meta\",begin:/\\{\\./,end:/\\.\\}/,relevance:10},{className:\"string\",begin:/[a-zA-Z]\\w*\"/,end:/\"/,contains:[{begin:/\"\"/}]},{className:\"string\",begin:/([a-zA-Z]\\w*)?\"\"\"/,end:/\"\"\"/},e.QUOTE_STRING_MODE,{className:\"type\",begin:/\\b[A-Z]\\w+\\b/,relevance:0},{className:\"number\",relevance:0,variants:[{begin:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{begin:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/}]},e.HASH_COMMENT_MODE]}};var xn=function(e){const t={keyword:\"rec with let in inherit assert if else then\",literal:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},a={className:\"subst\",begin:/\\$\\{/,end:/\\}/,keywords:t},n={className:\"string\",contains:[a],variants:[{begin:\"''\",end:\"''\"},{begin:'\"',end:'\"'}]},i=[e.NUMBER_MODE,e.HASH_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n,{begin:/[a-zA-Z0-9-_]+(\\s*=)/,returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:/\\S+/}]}];return a.contains=i,{name:\"Nix\",aliases:[\"nixos\"],keywords:t,contains:i}};var wn=function(e){return{name:\"Node REPL\",contains:[{className:\"meta\",starts:{end:/ |$/,starts:{end:\"$\",subLanguage:\"javascript\"}},variants:[{begin:/^>(?=[ ]|$)/},{begin:/^\\.\\.\\.(?=[ ]|$)/}]}]}};var Pn=function(e){const t={className:\"variable\",begin:/\\$+\\{[\\w.:-]+\\}/},a={className:\"variable\",begin:/\\$+\\w+/,illegal:/\\(\\)\\{\\}/},n={className:\"variable\",begin:/\\$+\\([\\w^.:-]+\\)/},i={className:\"string\",variants:[{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"},{begin:\"`\",end:\"`\"}],illegal:/\\n/,contains:[{className:\"meta\",begin:/\\$(\\\\[nrt]|\\$)/},{className:\"variable\",begin:/\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)/},t,a,n]};return{name:\"NSIS\",case_insensitive:!1,keywords:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecShellWait ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileWriteUTF16LE FileSeek FileWrite FileWriteByte FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetKnownFolderPath GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfRtlLanguage IfShellVarContextAll IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText Int64Cmp Int64CmpU Int64Fmt IntCmp IntCmpU IntFmt IntOp IntPtrCmp IntPtrCmpU IntPtrOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadAndSetImage LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestLongPathAware ManifestMaxVersionTested ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PEAddResource PEDllCharacteristics PERemoveResource PESubsysVer Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegMultiStr WriteRegNone WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib\"},contains:[e.HASH_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"function\",beginKeywords:\"Function PageEx Section SectionGroup\",end:\"$\"},i,{className:\"keyword\",begin:/!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversion|gettlbversion|if|ifdef|ifmacrodef|ifmacrondef|ifndef|include|insertmacro|macro|macroend|makensis|packhdr|searchparse|searchreplace|system|tempfile|undef|verbose|warning)/},t,a,n,{className:\"params\",begin:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},{className:\"class\",begin:/\\w+::\\w+/},e.NUMBER_MODE]}};var kn=function(e){const t=/[a-zA-Z@][a-zA-Z0-9_]*/,a={$pattern:t,keyword:\"@interface @class @protocol @implementation\"};return{name:\"Objective-C\",aliases:[\"mm\",\"objc\",\"obj-c\",\"obj-c++\",\"objective-c++\"],keywords:{$pattern:t,keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},illegal:\"/,end:/$/,illegal:\"\\\\n\"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"class\",begin:\"(\"+a.keyword.split(\" \").join(\"|\")+\")\\\\b\",end:/(\\{|$)/,excludeEnd:!0,keywords:a,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:\"\\\\.\"+e.UNDERSCORE_IDENT_RE,relevance:0}]}};var Un=function(e){return{name:\"OCaml\",aliases:[\"ml\"],keywords:{$pattern:\"[a-z_]\\\\w*!?\",keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},illegal:/\\/\\/|>>/,contains:[{className:\"literal\",begin:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",relevance:0},e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"symbol\",begin:\"'[A-Za-z_](?!')[\\\\w']*\"},{className:\"type\",begin:\"`[A-Z][\\\\w']*\"},{className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},{begin:\"[a-z_]\\\\w*'[\\\\w']*\",relevance:0},e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"number\",begin:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",relevance:0},{begin:/->/}]}};var Fn=function(e){const t={className:\"keyword\",begin:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},a={className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",relevance:0},n=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),i={className:\"function\",beginKeywords:\"module function\",end:/=|\\{/,contains:[{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",a,n,t,{className:\"literal\",begin:\"false|true|PI|undef\"}]},e.UNDERSCORE_TITLE_MODE]};return{name:\"OpenSCAD\",aliases:[\"scad\"],keywords:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:\"meta\",keywords:{\"meta-keyword\":\"include use\"},begin:\"include|use <\",end:\">\"},n,t,{begin:\"[*!#%]\",relevance:0},i]}};var Bn=function(e){const t={$pattern:/\\.?\\w+/,keyword:\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\"},a=e.COMMENT(/\\{/,/\\}/,{relevance:0}),n=e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{relevance:10}),i={className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},r={className:\"string\",begin:\"(#\\\\d+)+\"},s={className:\"function\",beginKeywords:\"function constructor destructor procedure method\",end:\"[:;]\",keywords:\"function constructor|10 destructor|10 procedure|10 method|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",keywords:t,contains:[i,r]},a,n]};return{name:\"Oxygene\",case_insensitive:!0,keywords:t,illegal:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*||->)',contains:[a,n,e.C_LINE_COMMENT_MODE,i,r,e.NUMBER_MODE,s,{className:\"class\",begin:\"=\\\\bclass\\\\b\",end:\"end;\",keywords:t,contains:[i,r,a,n,e.C_LINE_COMMENT_MODE,s]}]}};var Gn=function(e){const t=e.COMMENT(/\\{/,/\\}/,{contains:[\"self\"]});return{name:\"Parser3\",subLanguage:\"xml\",relevance:0,contains:[e.COMMENT(\"^#\",\"$\"),e.COMMENT(/\\^rem\\{/,/\\}/,{relevance:10,contains:[t]}),{className:\"meta\",begin:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",relevance:10},{className:\"title\",begin:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{className:\"variable\",begin:/\\$\\{?[\\w\\-.:]+\\}?/},{className:\"keyword\",begin:/\\^[\\w\\-.:]+/},{className:\"number\",begin:\"\\\\^#[0-9a-fA-F]+\"},e.C_NUMBER_MODE]}};var Yn=function(e){return{name:\"Packet Filter config\",aliases:[\"pf.conf\"],keywords:{$pattern:/[a-z0-9_<>-]+/,built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to route allow-opts divert-packet divert-reply divert-to flags group icmp-type icmp6-type label once probability recieved-on rtable prio queue tos tag tagged user keep fragment for os drop af-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robin source-hash static-port dup-to reply-to route-to parent bandwidth default min max qlimit block-policy debug fingerprints hostid limit loginterface optimization reassemble ruleset-optimization basic none profile skip state-defaults state-policy timeout const counters persist no modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppy source-track global rule max-src-nodes max-src-states max-src-conn max-src-conn-rate overload flush scrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},contains:[e.HASH_COMMENT_MODE,e.NUMBER_MODE,e.QUOTE_STRING_MODE,{className:\"variable\",begin:/\\$[\\w\\d#@][\\w\\d_]*/},{className:\"variable\",begin:/<(?!\\/)/,end:/>/}]}};var Hn=function(e){const t=e.COMMENT(\"--\",\"$\"),a=\"\\\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\\\$\",n=\"BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 \",i=n.trim().split(\" \").map((function(e){return e.split(\"|\")[0]})).join(\"|\"),r=\"ARRAY_AGG AVG BIT_AND BIT_OR BOOL_AND BOOL_OR COUNT EVERY JSON_AGG JSONB_AGG JSON_OBJECT_AGG JSONB_OBJECT_AGG MAX MIN MODE STRING_AGG SUM XMLAGG CORR COVAR_POP COVAR_SAMP REGR_AVGX REGR_AVGY REGR_COUNT REGR_INTERCEPT REGR_R2 REGR_SLOPE REGR_SXX REGR_SXY REGR_SYY STDDEV STDDEV_POP STDDEV_SAMP VARIANCE VAR_POP VAR_SAMP PERCENTILE_CONT PERCENTILE_DISC ROW_NUMBER RANK DENSE_RANK PERCENT_RANK CUME_DIST NTILE LAG LEAD FIRST_VALUE LAST_VALUE NTH_VALUE NUM_NONNULLS NUM_NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH_BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT_LENGTH CHAR_LENGTH CHARACTER_LENGTH LOWER OCTET_LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT_WS CONVERT CONVERT_FROM CONVERT_TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE_IDENT PG_CLIENT_ENCODING QUOTE_IDENT|10 QUOTE_LITERAL|10 QUOTE_NULLABLE|10 REGEXP_MATCH REGEXP_MATCHES REGEXP_REPLACE REGEXP_SPLIT_TO_ARRAY REGEXP_SPLIT_TO_TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT_PART STRPOS SUBSTR TO_ASCII TO_HEX TRANSLATE OCTET_LENGTH GET_BIT GET_BYTE SET_BIT SET_BYTE TO_CHAR TO_DATE TO_NUMBER TO_TIMESTAMP AGE CLOCK_TIMESTAMP|10 DATE_PART DATE_TRUNC ISFINITE JUSTIFY_DAYS JUSTIFY_HOURS JUSTIFY_INTERVAL MAKE_DATE MAKE_INTERVAL|10 MAKE_TIME MAKE_TIMESTAMP|10 MAKE_TIMESTAMPTZ|10 NOW STATEMENT_TIMESTAMP|10 TIMEOFDAY TRANSACTION_TIMESTAMP|10 ENUM_FIRST ENUM_LAST ENUM_RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND_BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET_MASKLEN TEXT INET_SAME_FAMILY INET_MERGE MACADDR8_SET7BIT ARRAY_TO_TSVECTOR GET_CURRENT_TS_CONFIG NUMNODE PLAINTO_TSQUERY PHRASETO_TSQUERY WEBSEARCH_TO_TSQUERY QUERYTREE SETWEIGHT STRIP TO_TSQUERY TO_TSVECTOR JSON_TO_TSVECTOR JSONB_TO_TSVECTOR TS_DELETE TS_FILTER TS_HEADLINE TS_RANK TS_RANK_CD TS_REWRITE TSQUERY_PHRASE TSVECTOR_TO_ARRAY TSVECTOR_UPDATE_TRIGGER TSVECTOR_UPDATE_TRIGGER_COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML_IS_WELL_FORMED XML_IS_WELL_FORMED_DOCUMENT XML_IS_WELL_FORMED_CONTENT XPATH XPATH_EXISTS XMLTABLE XMLNAMESPACES TABLE_TO_XML TABLE_TO_XMLSCHEMA TABLE_TO_XML_AND_XMLSCHEMA QUERY_TO_XML QUERY_TO_XMLSCHEMA QUERY_TO_XML_AND_XMLSCHEMA CURSOR_TO_XML CURSOR_TO_XMLSCHEMA SCHEMA_TO_XML SCHEMA_TO_XMLSCHEMA SCHEMA_TO_XML_AND_XMLSCHEMA DATABASE_TO_XML DATABASE_TO_XMLSCHEMA DATABASE_TO_XML_AND_XMLSCHEMA XMLATTRIBUTES TO_JSON TO_JSONB ARRAY_TO_JSON ROW_TO_JSON JSON_BUILD_ARRAY JSONB_BUILD_ARRAY JSON_BUILD_OBJECT JSONB_BUILD_OBJECT JSON_OBJECT JSONB_OBJECT JSON_ARRAY_LENGTH JSONB_ARRAY_LENGTH JSON_EACH JSONB_EACH JSON_EACH_TEXT JSONB_EACH_TEXT JSON_EXTRACT_PATH JSONB_EXTRACT_PATH JSON_OBJECT_KEYS JSONB_OBJECT_KEYS JSON_POPULATE_RECORD JSONB_POPULATE_RECORD JSON_POPULATE_RECORDSET JSONB_POPULATE_RECORDSET JSON_ARRAY_ELEMENTS JSONB_ARRAY_ELEMENTS JSON_ARRAY_ELEMENTS_TEXT JSONB_ARRAY_ELEMENTS_TEXT JSON_TYPEOF JSONB_TYPEOF JSON_TO_RECORD JSONB_TO_RECORD JSON_TO_RECORDSET JSONB_TO_RECORDSET JSON_STRIP_NULLS JSONB_STRIP_NULLS JSONB_SET JSONB_INSERT JSONB_PRETTY CURRVAL LASTVAL NEXTVAL SETVAL COALESCE NULLIF GREATEST LEAST ARRAY_APPEND ARRAY_CAT ARRAY_NDIMS ARRAY_DIMS ARRAY_FILL ARRAY_LENGTH ARRAY_LOWER ARRAY_POSITION ARRAY_POSITIONS ARRAY_PREPEND ARRAY_REMOVE ARRAY_REPLACE ARRAY_TO_STRING ARRAY_UPPER CARDINALITY STRING_TO_ARRAY UNNEST ISEMPTY LOWER_INC UPPER_INC LOWER_INF UPPER_INF RANGE_MERGE GENERATE_SERIES GENERATE_SUBSCRIPTS CURRENT_DATABASE CURRENT_QUERY CURRENT_SCHEMA|10 CURRENT_SCHEMAS|10 INET_CLIENT_ADDR INET_CLIENT_PORT INET_SERVER_ADDR INET_SERVER_PORT ROW_SECURITY_ACTIVE FORMAT_TYPE TO_REGCLASS TO_REGPROC TO_REGPROCEDURE TO_REGOPER TO_REGOPERATOR TO_REGTYPE TO_REGNAMESPACE TO_REGROLE COL_DESCRIPTION OBJ_DESCRIPTION SHOBJ_DESCRIPTION TXID_CURRENT TXID_CURRENT_IF_ASSIGNED TXID_CURRENT_SNAPSHOT TXID_SNAPSHOT_XIP TXID_SNAPSHOT_XMAX TXID_SNAPSHOT_XMIN TXID_VISIBLE_IN_SNAPSHOT TXID_STATUS CURRENT_SETTING SET_CONFIG BRIN_SUMMARIZE_NEW_VALUES BRIN_SUMMARIZE_RANGE BRIN_DESUMMARIZE_RANGE GIN_CLEAN_PENDING_LIST SUPPRESS_REDUNDANT_UPDATES_TRIGGER LO_FROM_BYTEA LO_PUT LO_GET LO_CREAT LO_CREATE LO_UNLINK LO_IMPORT LO_EXPORT LOREAD LOWRITE GROUPING CAST \".trim().split(\" \").map((function(e){return e.split(\"|\")[0]})).join(\"|\");return{name:\"PostgreSQL\",aliases:[\"postgres\",\"postgresql\"],case_insensitive:!0,keywords:{keyword:\"ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS \",built_in:\"CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED \"},illegal:/:==|\\W\\s*\\(\\*|(^|\\s)\\$[a-z]|\\{\\{|[a-z]:\\s*$|\\.\\.\\.|TO:|DO:/,contains:[{className:\"keyword\",variants:[{begin:/\\bTEXT\\s*SEARCH\\b/},{begin:/\\b(PRIMARY|FOREIGN|FOR(\\s+NO)?)\\s+KEY\\b/},{begin:/\\bPARALLEL\\s+(UNSAFE|RESTRICTED|SAFE)\\b/},{begin:/\\bSTORAGE\\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\\b/},{begin:/\\bMATCH\\s+(FULL|PARTIAL|SIMPLE)\\b/},{begin:/\\bNULLS\\s+(FIRST|LAST)\\b/},{begin:/\\bEVENT\\s+TRIGGER\\b/},{begin:/\\b(MAPPING|OR)\\s+REPLACE\\b/},{begin:/\\b(FROM|TO)\\s+(PROGRAM|STDIN|STDOUT)\\b/},{begin:/\\b(SHARE|EXCLUSIVE)\\s+MODE\\b/},{begin:/\\b(LEFT|RIGHT)\\s+(OUTER\\s+)?JOIN\\b/},{begin:/\\b(FETCH|MOVE)\\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\\b/},{begin:/\\bPRESERVE\\s+ROWS\\b/},{begin:/\\bDISCARD\\s+PLANS\\b/},{begin:/\\bREFERENCING\\s+(OLD|NEW)\\b/},{begin:/\\bSKIP\\s+LOCKED\\b/},{begin:/\\bGROUPING\\s+SETS\\b/},{begin:/\\b(BINARY|INSENSITIVE|SCROLL|NO\\s+SCROLL)\\s+(CURSOR|FOR)\\b/},{begin:/\\b(WITH|WITHOUT)\\s+HOLD\\b/},{begin:/\\bWITH\\s+(CASCADED|LOCAL)\\s+CHECK\\s+OPTION\\b/},{begin:/\\bEXCLUDE\\s+(TIES|NO\\s+OTHERS)\\b/},{begin:/\\bFORMAT\\s+(TEXT|XML|JSON|YAML)\\b/},{begin:/\\bSET\\s+((SESSION|LOCAL)\\s+)?NAMES\\b/},{begin:/\\bIS\\s+(NOT\\s+)?UNKNOWN\\b/},{begin:/\\bSECURITY\\s+LABEL\\b/},{begin:/\\bSTANDALONE\\s+(YES|NO|NO\\s+VALUE)\\b/},{begin:/\\bWITH\\s+(NO\\s+)?DATA\\b/},{begin:/\\b(FOREIGN|SET)\\s+DATA\\b/},{begin:/\\bSET\\s+(CATALOG|CONSTRAINTS)\\b/},{begin:/\\b(WITH|FOR)\\s+ORDINALITY\\b/},{begin:/\\bIS\\s+(NOT\\s+)?DOCUMENT\\b/},{begin:/\\bXML\\s+OPTION\\s+(DOCUMENT|CONTENT)\\b/},{begin:/\\b(STRIP|PRESERVE)\\s+WHITESPACE\\b/},{begin:/\\bNO\\s+(ACTION|MAXVALUE|MINVALUE)\\b/},{begin:/\\bPARTITION\\s+BY\\s+(RANGE|LIST|HASH)\\b/},{begin:/\\bAT\\s+TIME\\s+ZONE\\b/},{begin:/\\bGRANTED\\s+BY\\b/},{begin:/\\bRETURN\\s+(QUERY|NEXT)\\b/},{begin:/\\b(ATTACH|DETACH)\\s+PARTITION\\b/},{begin:/\\bFORCE\\s+ROW\\s+LEVEL\\s+SECURITY\\b/},{begin:/\\b(INCLUDING|EXCLUDING)\\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\\b/},{begin:/\\bAS\\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\\b/}]},{begin:/\\b(FORMAT|FAMILY|VERSION)\\s*\\(/},{begin:/\\bINCLUDE\\s*\\(/,keywords:\"INCLUDE\"},{begin:/\\bRANGE(?!\\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/},{begin:/\\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\\s*=/},{begin:/\\b(PG_\\w+?|HAS_[A-Z_]+_PRIVILEGE)\\b/,relevance:10},{begin:/\\bEXTRACT\\s*\\(/,end:/\\bFROM\\b/,returnEnd:!0,keywords:{type:\"CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR\"}},{begin:/\\b(XMLELEMENT|XMLPI)\\s*\\(\\s*NAME/,keywords:{keyword:\"NAME\"}},{begin:/\\b(XMLPARSE|XMLSERIALIZE)\\s*\\(\\s*(DOCUMENT|CONTENT)/,keywords:{keyword:\"DOCUMENT CONTENT\"}},{beginKeywords:\"CACHE INCREMENT MAXVALUE MINVALUE\",end:e.C_NUMBER_RE,returnEnd:!0,keywords:\"BY CACHE INCREMENT MAXVALUE MINVALUE\"},{className:\"type\",begin:/\\b(WITH|WITHOUT)\\s+TIME\\s+ZONE\\b/},{className:\"type\",begin:/\\bINTERVAL\\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\\s+TO\\s+(MONTH|HOUR|MINUTE|SECOND))?\\b/},{begin:/\\bRETURNS\\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\\b/,keywords:{keyword:\"RETURNS\",type:\"LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER\"}},{begin:\"\\\\b(\"+r+\")\\\\s*\\\\(\"},{begin:\"\\\\.(\"+i+\")\\\\b\"},{begin:\"\\\\b(\"+i+\")\\\\s+PATH\\\\b\",keywords:{keyword:\"PATH\",type:n.replace(\"PATH \",\"\")}},{className:\"type\",begin:\"\\\\b(\"+i+\")\\\\b\"},{className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},{className:\"string\",begin:\"(e|E|u&|U&)'\",end:\"'\",contains:[{begin:\"\\\\\\\\.\"}],relevance:10},e.END_SAME_AS_BEGIN({begin:a,end:a,contains:[{subLanguage:[\"pgsql\",\"perl\",\"python\",\"tcl\",\"r\",\"lua\",\"java\",\"php\",\"ruby\",\"bash\",\"scheme\",\"xml\",\"json\"],endsWithParent:!0}]}),{begin:'\"',end:'\"',contains:[{begin:'\"\"'}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:\"meta\",variants:[{begin:\"%(ROW)?TYPE\",relevance:10},{begin:\"\\\\$\\\\d+\"},{begin:\"^#\\\\w\",end:\"$\"}]},{className:\"symbol\",begin:\"<<\\\\s*[a-zA-Z_][a-zA-Z_0-9$]*\\\\s*>>\",relevance:10}]}};var Vn=function(e){const t={className:\"variable\",begin:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])\"},a={className:\"meta\",variants:[{begin:/<\\?php/,relevance:10},{begin:/<\\?[=]?/},{begin:/\\?>/}]},n={className:\"subst\",variants:[{begin:/\\$\\w+/},{begin:/\\{\\$/,end:/\\}/}]},i=e.inherit(e.APOS_STRING_MODE,{illegal:null}),r=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(n)}),s=e.END_SAME_AS_BEGIN({begin:/<<<[ \\t]*(\\w+)\\n/,end:/[ \\t]*(\\w+)\\b/,contains:e.QUOTE_STRING_MODE.contains.concat(n)}),o={className:\"string\",contains:[e.BACKSLASH_ESCAPE,a],variants:[e.inherit(i,{begin:\"b'\",end:\"'\"}),e.inherit(r,{begin:'b\"',end:'\"'}),r,i,s]},l={className:\"number\",variants:[{begin:\"\\\\b0b[01]+(?:_[01]+)*\\\\b\"},{begin:\"\\\\b0o[0-7]+(?:_[0-7]+)*\\\\b\"},{begin:\"\\\\b0x[\\\\da-f]+(?:_[\\\\da-f]+)*\\\\b\"},{begin:\"(?:\\\\b\\\\d+(?:_\\\\d+)*(\\\\.(?:\\\\d+(?:_\\\\d+)*))?|\\\\B\\\\.\\\\d+)(?:e[+-]?\\\\d+)?\"}],relevance:0},c={keyword:\"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield\",literal:\"false null true\",built_in:\"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass\"};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\",\"php7\",\"php8\"],case_insensitive:!0,keywords:c,contains:[e.HASH_COMMENT_MODE,e.COMMENT(\"//\",\"$\",{contains:[a]}),e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),e.COMMENT(\"__halt_compiler.+?;\",!1,{endsWithParent:!0,keywords:\"__halt_compiler\"}),a,{className:\"keyword\",begin:/\\$this\\b/},t,{begin:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{className:\"function\",relevance:0,beginKeywords:\"fn function\",end:/[;{]/,excludeEnd:!0,illegal:\"[$%\\\\[]\",contains:[{beginKeywords:\"use\"},e.UNDERSCORE_TITLE_MODE,{begin:\"=>\",endsParent:!0},{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0,keywords:c,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,o,l]}]},{className:\"class\",variants:[{beginKeywords:\"enum\",illegal:/[($\"]/},{beginKeywords:\"class interface trait\",illegal:/[:($\"]/}],relevance:0,end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"namespace\",relevance:0,end:\";\",illegal:/[.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"use\",relevance:0,end:\";\",contains:[e.UNDERSCORE_TITLE_MODE]},o,l]}};var qn=function(e){return{name:\"PHP template\",subLanguage:\"xml\",contains:[{begin:/<\\?(php|=)?/,end:/\\?>/,subLanguage:\"php\",contains:[{begin:\"/\\\\*\",end:\"\\\\*/\",skip:!0},{begin:'b\"',end:'\"',skip:!0},{begin:\"b'\",end:\"'\",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}};var zn=function(e){return{name:\"Plain text\",aliases:[\"text\",\"txt\"],disableAutodetect:!0}};var $n=function(e){return{name:\"Pony\",keywords:{keyword:\"actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor\",meta:\"iso val tag trn box ref\",literal:\"this false true\"},contains:[{className:\"type\",begin:\"\\\\b_?[A-Z][\\\\w]*\",relevance:0},{className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:10},{className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE]},{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE],relevance:0},{begin:e.IDENT_RE+\"'\",relevance:0},{className:\"number\",begin:\"(-?)(\\\\b0[xX][a-fA-F0-9]+|\\\\b0[bB][01]+|(\\\\b\\\\d+(_\\\\d+)?(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",relevance:0},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}};var Wn=function(e){const t={$pattern:/-?[A-z\\.\\-]+\\b/,keyword:\"if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter\",built_in:\"ac asnp cat cd CFS chdir clc clear clhy cli clp cls clv cnsn compare copy cp cpi cpp curl cvpa dbp del diff dir dnsn ebp echo|0 epal epcsv epsn erase etsn exsn fc fhx fl ft fw gal gbp gc gcb gci gcm gcs gdr gerr ghy gi gin gjb gl gm gmo gp gps gpv group gsn gsnp gsv gtz gu gv gwmi h history icm iex ihy ii ipal ipcsv ipmo ipsn irm ise iwmi iwr kill lp ls man md measure mi mount move mp mv nal ndr ni nmo npssc nsn nv ogv oh popd ps pushd pwd r rbp rcjb rcsn rd rdr ren ri rjb rm rmdir rmo rni rnp rp rsn rsnp rujb rv rvpa rwmi sajb sal saps sasv sbp sc scb select set shcm si sl sleep sls sort sp spjb spps spsv start stz sujb sv swmi tee trcm type wget where wjb write\"},a={begin:\"`[\\\\s\\\\S]\",relevance:0},n={className:\"variable\",variants:[{begin:/\\$\\B/},{className:\"keyword\",begin:/\\$this/},{begin:/\\$[\\w\\d][\\w\\d_:]*/}]},i={className:\"string\",variants:[{begin:/\"/,end:/\"/},{begin:/@\"/,end:/^\"@/}],contains:[a,n,{className:\"variable\",begin:/\\$[A-z]/,end:/[^A-z]/}]},r={className:\"string\",variants:[{begin:/'/,end:/'/},{begin:/@'/,end:/^'@/}]},s=e.inherit(e.COMMENT(null,null),{variants:[{begin:/#/,end:/$/},{begin:/<#/,end:/#>/}],contains:[{className:\"doctag\",variants:[{begin:/\\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{begin:/\\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\\s+\\S+/}]}]}),o={className:\"built_in\",variants:[{begin:\"(\".concat(\"Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|Mount|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Build|Complete|Confirm|Deny|Deploy|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where\",\")+(-)[\\\\w\\\\d]+\")}]},l={className:\"class\",beginKeywords:\"class enum\",end:/\\s*[{]/,excludeEnd:!0,relevance:0,contains:[e.TITLE_MODE]},c={className:\"function\",begin:/function\\s+/,end:/\\s*\\{|$/,excludeEnd:!0,returnBegin:!0,relevance:0,contains:[{begin:\"function\",relevance:0,className:\"keyword\"},{className:\"title\",begin:/\\w[\\w\\d]*((-)[\\w\\d]+)*/,relevance:0},{begin:/\\(/,end:/\\)/,className:\"params\",relevance:0,contains:[n]}]},_={begin:/using\\s/,end:/$/,returnBegin:!0,contains:[i,r,{className:\"keyword\",begin:/(using|assembly|command|module|namespace|type)/}]},d={variants:[{className:\"operator\",begin:\"(\".concat(\"-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor\",\")\\\\b\")},{className:\"literal\",begin:/(-)[\\w\\d]+/,relevance:0}]},m={className:\"function\",begin:/\\[.*\\]\\s*[\\w]+[ ]??\\(/,end:/$/,returnBegin:!0,relevance:0,contains:[{className:\"keyword\",begin:\"(\".concat(t.keyword.toString().replace(/\\s/g,\"|\"),\")\\\\b\"),endsParent:!0,relevance:0},e.inherit(e.TITLE_MODE,{endsParent:!0})]},u=[m,s,a,e.NUMBER_MODE,i,r,o,n,{className:\"literal\",begin:/\\$(null|true|false)\\b/},{className:\"selector-tag\",begin:/@\\B/,relevance:0}],p={begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[].concat(\"self\",u,{begin:\"(\"+[\"string\",\"char\",\"byte\",\"int\",\"long\",\"bool\",\"decimal\",\"single\",\"double\",\"DateTime\",\"xml\",\"array\",\"hashtable\",\"void\"].join(\"|\")+\")\",className:\"built_in\",relevance:0},{className:\"type\",begin:/[\\.\\w\\d]+/,relevance:0})};return m.contains.unshift(p),{name:\"PowerShell\",aliases:[\"ps\",\"ps1\"],case_insensitive:!0,keywords:t,contains:u.concat(l,c,_,d,p)}};var Qn=function(e){return{name:\"Processing\",keywords:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",literal:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",title:\"setup draw\",built_in:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}};var Kn=function(e){return{name:\"Python profiler\",contains:[e.C_NUMBER_MODE,{begin:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",end:\":\",excludeEnd:!0},{begin:\"(ncalls|tottime|cumtime)\",end:\"$\",keywords:\"ncalls tottime|10 cumtime|10 filename\",relevance:10},{begin:\"function calls\",end:\"$\",contains:[e.C_NUMBER_MODE],relevance:10},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"\\\\(\",end:\"\\\\)$\",excludeBegin:!0,excludeEnd:!0,relevance:0}]}};var jn=function(e){const t={begin:/\\(/,end:/\\)/,relevance:0},a={begin:/\\[/,end:/\\]/},n={className:\"comment\",begin:/%/,end:/$/,contains:[e.PHRASAL_WORDS_MODE]},i={className:\"string\",begin:/`/,end:/`/,contains:[e.BACKSLASH_ESCAPE]},r=[{begin:/[a-z][A-Za-z0-9_]*/,relevance:0},{className:\"symbol\",variants:[{begin:/[A-Z][a-zA-Z0-9_]*/},{begin:/_[A-Za-z0-9_]*/}],relevance:0},t,{begin:/:-/},a,n,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,{className:\"string\",begin:/0'(\\\\'|.)/},{className:\"string\",begin:/0'\\\\s/},e.C_NUMBER_MODE];return t.contains=r,a.contains=r,{name:\"Prolog\",contains:r.concat([{begin:/\\.$/}])}};var Xn=function(e){var t=\"[ \\\\t\\\\f]*\",a=t+\"[:=]\"+t,n=\"[ \\\\t\\\\f]+\",i=\"(\"+a+\"|\"+\"[ \\\\t\\\\f]+)\",r=\"([^\\\\\\\\\\\\W:= \\\\t\\\\f\\\\n]|\\\\\\\\.)+\",s=\"([^\\\\\\\\:= \\\\t\\\\f\\\\n]|\\\\\\\\.)+\",o={end:i,relevance:0,starts:{className:\"string\",end:/$/,relevance:0,contains:[{begin:\"\\\\\\\\\\\\\\\\\"},{begin:\"\\\\\\\\\\\\n\"}]}};return{name:\".properties\",case_insensitive:!0,illegal:/\\S/,contains:[e.COMMENT(\"^\\\\s*[!#]\",\"$\"),{returnBegin:!0,variants:[{begin:r+a,relevance:1},{begin:r+n,relevance:0}],contains:[{className:\"attr\",begin:r,endsParent:!0,relevance:0}],starts:o},{begin:s+i,returnBegin:!0,relevance:0,contains:[{className:\"meta\",begin:s,endsParent:!0,relevance:0}],starts:o},{className:\"attr\",relevance:0,begin:s+t+\"$\"}]}};var Zn=function(e){return{name:\"Protocol Buffers\",keywords:{keyword:\"package import option optional required repeated group oneof\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"message enum service\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:\"function\",beginKeywords:\"rpc\",end:/[{;]/,excludeEnd:!0,keywords:\"rpc returns\"},{begin:/^\\s*[A-Z_]+(?=\\s*=[^\\n]+;$)/}]}};var Jn=function(e){const t=e.COMMENT(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",n=e.inherit(e.TITLE_MODE,{begin:a}),i={className:\"variable\",begin:\"\\\\$\"+a},r={className:\"string\",contains:[e.BACKSLASH_ESCAPE,i],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/}]};return{name:\"Puppet\",aliases:[\"pp\"],contains:[t,i,r,{beginKeywords:\"class\",end:\"\\\\{|;\",illegal:/=/,contains:[n,t]},{beginKeywords:\"define\",end:/\\{/,contains:[{className:\"section\",begin:e.IDENT_RE,endsParent:!0}]},{begin:e.IDENT_RE+\"\\\\s+\\\\{\",returnBegin:!0,end:/\\S/,contains:[{className:\"keyword\",begin:e.IDENT_RE},{begin:/\\{/,end:/\\}/,keywords:{keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},relevance:0,contains:[r,t,{begin:\"[a-zA-Z_]+\\\\s*=>\",returnBegin:!0,end:\"=>\",contains:[{className:\"attr\",begin:e.IDENT_RE}]},{className:\"number\",begin:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",relevance:0},i]}],relevance:0}]}};var ei=function(e){return{name:\"PureBASIC\",aliases:[\"pb\",\"pbi\"],keywords:\"Align And Array As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount Map Module NewList NewMap Next Not Or Procedure ProcedureC ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim Read Repeat Restore Return Runtime Select Shared Static Step Structure StructureUnion Swap Threaded To UndefineMacro Until Until UnuseModule UseModule Wend While With XIncludeFile XOr\",contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"function\",begin:\"\\\\b(Procedure|Declare)(C|CDLL|DLL)?\\\\b\",end:\"\\\\(\",excludeEnd:!0,returnBegin:!0,contains:[{className:\"keyword\",begin:\"(Procedure|Declare)(C|CDLL|DLL)?\",excludeEnd:!0},{className:\"type\",begin:\"\\\\.\\\\w*\"},e.UNDERSCORE_TITLE_MODE]},{className:\"string\",begin:'(~)?\"',end:'\"',illegal:\"\\\\n\"},{className:\"symbol\",begin:\"#[a-zA-Z_]\\\\w*\\\\$?\"}]}};function ti(e){return function(...e){return e.map((e=>function(e){return e?\"string\"==typeof e?e:e.source:null}(e))).join(\"\")}(\"(?=\",e,\")\")}var ai=function(e){const t={$pattern:/[A-Za-z]\\w+|__\\w+__/,keyword:[\"and\",\"as\",\"assert\",\"async\",\"await\",\"break\",\"class\",\"continue\",\"def\",\"del\",\"elif\",\"else\",\"except\",\"finally\",\"for\",\"from\",\"global\",\"if\",\"import\",\"in\",\"is\",\"lambda\",\"nonlocal|10\",\"not\",\"or\",\"pass\",\"raise\",\"return\",\"try\",\"while\",\"with\",\"yield\"],built_in:[\"__import__\",\"abs\",\"all\",\"any\",\"ascii\",\"bin\",\"bool\",\"breakpoint\",\"bytearray\",\"bytes\",\"callable\",\"chr\",\"classmethod\",\"compile\",\"complex\",\"delattr\",\"dict\",\"dir\",\"divmod\",\"enumerate\",\"eval\",\"exec\",\"filter\",\"float\",\"format\",\"frozenset\",\"getattr\",\"globals\",\"hasattr\",\"hash\",\"help\",\"hex\",\"id\",\"input\",\"int\",\"isinstance\",\"issubclass\",\"iter\",\"len\",\"list\",\"locals\",\"map\",\"max\",\"memoryview\",\"min\",\"next\",\"object\",\"oct\",\"open\",\"ord\",\"pow\",\"print\",\"property\",\"range\",\"repr\",\"reversed\",\"round\",\"set\",\"setattr\",\"slice\",\"sorted\",\"staticmethod\",\"str\",\"sum\",\"super\",\"tuple\",\"type\",\"vars\",\"zip\"],literal:[\"__debug__\",\"Ellipsis\",\"False\",\"None\",\"NotImplemented\",\"True\"],type:[\"Any\",\"Callable\",\"Coroutine\",\"Dict\",\"List\",\"Literal\",\"Generic\",\"Optional\",\"Sequence\",\"Set\",\"Tuple\",\"Type\",\"Union\"]},a={className:\"meta\",begin:/^(>>>|\\.\\.\\.) /},n={className:\"subst\",begin:/\\{/,end:/\\}/,keywords:t,illegal:/#/},i={begin:/\\{\\{/,relevance:0},r={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,i,n]},{begin:/([fF][rR]|[rR][fF]|[fF])\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,a,i,n]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])\"/,end:/\"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])\"/,end:/\"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,i,n]},{begin:/([fF][rR]|[rR][fF]|[fF])\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,i,n]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},s=\"[0-9](_?[0-9])*\",o=`(\\\\b(${s}))?\\\\.(${s})|\\\\b(${s})\\\\.`,l={className:\"number\",relevance:0,variants:[{begin:`(\\\\b(${s})|(${o}))[eE][+-]?(${s})[jJ]?\\\\b`},{begin:`(${o})[jJ]?`},{begin:\"\\\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\\\b\"},{begin:\"\\\\b0[bB](_?[01])+[lL]?\\\\b\"},{begin:\"\\\\b0[oO](_?[0-7])+[lL]?\\\\b\"},{begin:\"\\\\b0[xX](_?[0-9a-fA-F])+[lL]?\\\\b\"},{begin:`\\\\b(${s})[jJ]\\\\b`}]},c={className:\"comment\",begin:ti(/# type:/),end:/$/,keywords:t,contains:[{begin:/# type:/},{begin:/#/,end:/\\b\\B/,endsWithParent:!0}]},_={className:\"params\",variants:[{className:\"\",begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:[\"self\",a,l,r,e.HASH_COMMENT_MODE]}]};return n.contains=[r,l,a],{name:\"Python\",aliases:[\"py\",\"gyp\",\"ipython\"],keywords:t,illegal:/(<\\/|->|\\?)|=>/,contains:[a,l,{begin:/\\bself\\b/},{beginKeywords:\"if\",relevance:0},r,c,e.HASH_COMMENT_MODE,{variants:[{className:\"function\",beginKeywords:\"def\"},{className:\"class\",beginKeywords:\"class\"}],end:/:/,illegal:/[${=;\\n,]/,contains:[e.UNDERSCORE_TITLE_MODE,_,{begin:/->/,endsWithParent:!0,keywords:t}]},{className:\"meta\",begin:/^[\\t ]*@/,end:/(?=#)|$/,contains:[l,_,r]}]}};var ni=function(e){return{aliases:[\"pycon\"],contains:[{className:\"meta\",starts:{end:/ |$/,starts:{end:\"$\",subLanguage:\"python\"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\\.\\.\\.(?=[ ]|$)/}]}]}};var ii=function(e){return{name:\"Q\",aliases:[\"k\",\"kdb\"],keywords:{$pattern:/(`?)[A-Za-z0-9_]+\\b/,keyword:\"do while select delete by update from\",literal:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",type:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"},contains:[e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}};function ri(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var si=function(e){const t=\"[a-zA-Z_][a-zA-Z0-9\\\\._]*\",a={className:\"attribute\",begin:\"\\\\bid\\\\s*:\",starts:{className:\"string\",end:t,returnEnd:!1}},n={begin:t+\"\\\\s*:\",returnBegin:!0,contains:[{className:\"attribute\",begin:t,end:\"\\\\s*:\",excludeEnd:!0,relevance:0}],relevance:0},i={begin:ri(t,/\\s*\\{/),end:/\\{/,returnBegin:!0,relevance:0,contains:[e.inherit(e.TITLE_MODE,{begin:t})]};return{name:\"QML\",aliases:[\"qt\"],case_insensitive:!1,keywords:{keyword:\"in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4d Promise\"},contains:[{className:\"meta\",begin:/^\\s*['\"]use (strict|asm)['\"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,{className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\"}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"number\",variants:[{begin:\"\\\\b(0[bB][01]+)\"},{begin:\"\\\\b(0[oO][0-7]+)\"},{begin:e.C_NUMBER_RE}],relevance:0},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",keywords:\"return throw case\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.REGEXP_MODE,{begin:/\\s*[);\\]]/,relevance:0,subLanguage:\"xml\"}],relevance:0},{className:\"keyword\",begin:\"\\\\bsignal\\\\b\",starts:{className:\"string\",end:\"(\\\\(|:|=|;|,|//|/\\\\*|$)\",returnEnd:!0}},{className:\"keyword\",begin:\"\\\\bproperty\\\\b\",starts:{className:\"string\",end:\"(:|=|;|,|//|/\\\\*|$)\",returnEnd:!0}},{className:\"function\",beginKeywords:\"function\",end:/\\{/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}],illegal:/\\[|%/},{begin:\"\\\\.\"+e.IDENT_RE,relevance:0},a,n,i],illegal:/#/}};function oi(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var li=function(e){const t=/(?:(?:[a-zA-Z]|\\.[._a-zA-Z])[._a-zA-Z0-9]*)|\\.(?!\\d)/;return{name:\"R\",illegal:/->/,keywords:{$pattern:t,keyword:\"function if in break next repeat else for while\",literal:\"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\",built_in:\"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm\"},compilerExtensions:[(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error(\"beforeMatch cannot be used with starts\");const a=Object.assign({},e);Object.keys(e).forEach((t=>{delete e[t]})),e.begin=oi(a.beforeMatch,oi(\"(?=\",a.begin,\")\")),e.starts={relevance:0,contains:[Object.assign(a,{endsParent:!0})]},e.relevance=0,delete a.beforeMatch}],contains:[e.COMMENT(/#'/,/$/,{contains:[{className:\"doctag\",begin:\"@examples\",starts:{contains:[{begin:/\\n/},{begin:/#'\\s*(?=@[a-zA-Z]+)/,endsParent:!0},{begin:/#'/,end:/$/,excludeBegin:!0}]}},{className:\"doctag\",begin:\"@param\",end:/$/,contains:[{className:\"variable\",variants:[{begin:t},{begin:/`(?:\\\\.|[^`\\\\])+`/}],endsParent:!0}]},{className:\"doctag\",begin:/@[a-zA-Z]+/},{className:\"meta-keyword\",begin:/\\\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\(/,end:/\\)(-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\{/,end:/\\}(-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\[/,end:/\\](-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\(/,end:/\\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\{/,end:/\\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\[/,end:/\\](-*)'/}),{begin:'\"',end:'\"',relevance:0},{begin:\"'\",end:\"'\",relevance:0}]},{className:\"number\",relevance:0,beforeMatch:/([^a-zA-Z0-9._])/,variants:[{match:/0[xX][0-9a-fA-F]+\\.[0-9a-fA-F]*[pP][+-]?\\d+i?/},{match:/0[xX][0-9a-fA-F]+([pP][+-]?\\d+)?[Li]?/},{match:/(\\d+(\\.\\d*)?|\\.\\d+)([eE][+-]?\\d+)?[Li]?/}]},{begin:\"%\",end:\"%\"},{begin:oi(/[a-zA-Z][a-zA-Z_0-9]*/,\"\\\\s+<-\\\\s+\")},{begin:\"`\",end:\"`\",contains:[{begin:/\\\\./}]}]}};var ci=function(e){const t=\"~?[a-z$_][0-9a-zA-Z$_]*\",a=\"`?[A-Z$_][0-9a-zA-Z$_]*\",n=\"(\"+([\"||\",\"++\",\"**\",\"+.\",\"*\",\"/\",\"*.\",\"/.\",\"...\"].map((function(e){return e.split(\"\").map((function(e){return\"\\\\\"+e})).join(\"\")})).join(\"|\")+\"|\\\\|>|&&|==|===)\"),i=\"\\\\s+\"+n+\"\\\\s+\",r={keyword:\"and as asr assert begin class constraint do done downto else end exception external for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new nonrec object of open or private rec sig struct then to try type val virtual when while with\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit \",literal:\"true false\"},s=\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",o={className:\"number\",relevance:0,variants:[{begin:s},{begin:\"\\\\(-\"+s+\"\\\\)\"}]},l={className:\"operator\",relevance:0,begin:n},c=[{className:\"identifier\",relevance:0,begin:t},l,o],_=[e.QUOTE_STRING_MODE,l,{className:\"module\",begin:\"\\\\b\"+a,returnBegin:!0,end:\".\",contains:[{className:\"identifier\",begin:a,relevance:0}]}],d=[{className:\"module\",begin:\"\\\\b\"+a,returnBegin:!0,end:\".\",relevance:0,contains:[{className:\"identifier\",begin:a,relevance:0}]}],m={className:\"function\",relevance:0,keywords:r,variants:[{begin:\"\\\\s(\\\\(\\\\.?.*?\\\\)|\"+t+\")\\\\s*=>\",end:\"\\\\s*=>\",returnBegin:!0,relevance:0,contains:[{className:\"params\",variants:[{begin:t},{begin:\"~?[a-z$_][0-9a-zA-Z$_]*(\\\\s*:\\\\s*[a-z$_][0-9a-z$_]*(\\\\(\\\\s*('?[a-z$_][0-9a-z$_]*\\\\s*(,'?[a-z$_][0-9a-z$_]*\\\\s*)*)?\\\\))?){0,2}\"},{begin:/\\(\\s*\\)/}]}]},{begin:\"\\\\s\\\\(\\\\.?[^;\\\\|]*\\\\)\\\\s*=>\",end:\"\\\\s=>\",returnBegin:!0,relevance:0,contains:[{className:\"params\",relevance:0,variants:[{begin:t,end:\"(,|\\\\n|\\\\))\",relevance:0,contains:[l,{className:\"typing\",begin:\":\",end:\"(,|\\\\n)\",returnBegin:!0,relevance:0,contains:d}]}]}]},{begin:\"\\\\(\\\\.\\\\s\"+t+\"\\\\)\\\\s*=>\"}]};_.push(m);const u={className:\"constructor\",begin:a+\"\\\\(\",end:\"\\\\)\",illegal:\"\\\\n\",keywords:r,contains:[e.QUOTE_STRING_MODE,l,{className:\"params\",begin:\"\\\\b\"+t}]},p={className:\"pattern-match\",begin:\"\\\\|\",returnBegin:!0,keywords:r,end:\"=>\",relevance:0,contains:[u,l,{relevance:0,className:\"constructor\",begin:a}]},g={className:\"module-access\",keywords:r,returnBegin:!0,variants:[{begin:\"\\\\b(\"+a+\"\\\\.)+\"+t},{begin:\"\\\\b(\"+a+\"\\\\.)+\\\\(\",end:\"\\\\)\",returnBegin:!0,contains:[m,{begin:\"\\\\(\",end:\"\\\\)\",skip:!0}].concat(_)},{begin:\"\\\\b(\"+a+\"\\\\.)+\\\\{\",end:/\\}/}],contains:_};return d.push(g),{name:\"ReasonML\",aliases:[\"re\"],keywords:r,illegal:\"(:-|:=|\\\\$\\\\{|\\\\+=)\",contains:[e.COMMENT(\"/\\\\*\",\"\\\\*/\",{illegal:\"^(#,\\\\/\\\\/)\"}),{className:\"character\",begin:\"'(\\\\\\\\[^']+|[^'])'\",illegal:\"\\\\n\",relevance:0},e.QUOTE_STRING_MODE,{className:\"literal\",begin:\"\\\\(\\\\)\",relevance:0},{className:\"literal\",begin:\"\\\\[\\\\|\",end:\"\\\\|\\\\]\",relevance:0,contains:c},{className:\"literal\",begin:\"\\\\[\",end:\"\\\\]\",relevance:0,contains:c},u,{className:\"operator\",begin:i,illegal:\"--\\x3e\",relevance:0},o,e.C_LINE_COMMENT_MODE,p,m,{className:\"module-def\",begin:\"\\\\bmodule\\\\s+\"+t+\"\\\\s+\"+a+\"\\\\s+=\\\\s+\\\\{\",end:/\\}/,returnBegin:!0,keywords:r,relevance:0,contains:[{className:\"module\",relevance:0,begin:a},{begin:/\\{/,end:/\\}/,skip:!0}].concat(_)},g]}};var _i=function(e){return{name:\"RenderMan RIB\",keywords:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",illegal:\"/}],illegal:/./},e.COMMENT(\"^#\",\"$\"),i,r,n,{begin:/[\\w-]+=([^\\s{}[\\]()>]+)/,relevance:0,returnBegin:!0,contains:[{className:\"attribute\",begin:/[^=]+/},{begin:/=/,endsWithParent:!0,relevance:0,contains:[i,r,n,{className:\"literal\",begin:\"\\\\b(\"+a.split(\" \").join(\"|\")+\")\\\\b\"},{begin:/(\"[^\"]*\"|[^\\s{}[\\]]+)/}]}]},{className:\"number\",begin:/\\*[0-9a-fA-F]+/},{begin:\"\\\\b(\"+\"add remove enable disable set get print export edit find run debug error info warning\".split(\" \").join(\"|\")+\")([\\\\s[(\\\\]|])\",returnBegin:!0,contains:[{className:\"builtin-name\",begin:/\\w+/}]},{className:\"built_in\",variants:[{begin:\"(\\\\.\\\\./|/|\\\\s)((\"+\"traffic-flow traffic-generator firewall scheduler aaa accounting address-list address align area bandwidth-server bfd bgp bridge client clock community config connection console customer default dhcp-client dhcp-server discovery dns e-mail ethernet filter firmware gps graphing group hardware health hotspot identity igmp-proxy incoming instance interface ip ipsec ipv6 irq l2tp-server lcd ldp logging mac-server mac-winbox mangle manual mirror mme mpls nat nd neighbor network note ntp ospf ospf-v3 ovpn-server page peer pim ping policy pool port ppp pppoe-client pptp-server prefix profile proposal proxy queue radius resource rip ripng route routing screen script security-profiles server service service-port settings shares smb sms sniffer snmp snooper socks sstp-server system tool tracking type upgrade upnp user-manager users user vlan secret vrrp watchdog web-access wireless pptp pppoe lan wan layer7-protocol lease simple raw\".split(\" \").join(\"|\")+\");?\\\\s)+\"},{begin:/\\.\\./,relevance:0}]}]}};var ui=function(e){return{name:\"RenderMan RSL\",keywords:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},illegal:\"\"}]}};var Ei=function(e){return{name:\"SAS\",case_insensitive:!0,keywords:{literal:\"null missing _all_ _automatic_ _character_ _infile_ _n_ _name_ _null_ _numeric_ _user_ _webout_\",meta:\"do if then else end until while abort array attrib by call cards cards4 catname continue datalines datalines4 delete delim delimiter display dm drop endsas error file filename footnote format goto in infile informat input keep label leave length libname link list lostcard merge missing modify options output out page put redirect remove rename replace retain return select set skip startsas stop title update waitsas where window x systask add and alter as cascade check create delete describe distinct drop foreign from group having index insert into in key like message modify msgtype not null on or order primary references reset restrict select set table unique update validate view where\"},contains:[{className:\"keyword\",begin:/^\\s*(proc [\\w\\d_]+|data|run|quit)[\\s;]/},{className:\"variable\",begin:/&[a-zA-Z_&][a-zA-Z0-9_]*\\.?/},{className:\"emphasis\",begin:/^\\s*datalines|cards.*;/,end:/^\\s*;\\s*$/},{className:\"built_in\",begin:\"%(bquote|nrbquote|cmpres|qcmpres|compstor|datatyp|display|do|else|end|eval|global|goto|if|index|input|keydef|label|left|length|let|local|lowcase|macro|mend|nrbquote|nrquote|nrstr|put|qcmpres|qleft|qlowcase|qscan|qsubstr|qsysfunc|qtrim|quote|qupcase|scan|str|substr|superq|syscall|sysevalf|sysexec|sysfunc|sysget|syslput|sysprod|sysrc|sysrput|then|to|trim|unquote|until|upcase|verify|while|window)\"},{className:\"name\",begin:/%[a-zA-Z_][a-zA-Z_0-9]*/},{className:\"meta\",begin:\"[^%](abs|addr|airy|arcos|arsin|atan|attrc|attrn|band|betainv|blshift|bnot|bor|brshift|bxor|byte|cdf|ceil|cexist|cinv|close|cnonct|collate|compbl|compound|compress|cos|cosh|css|curobs|cv|daccdb|daccdbsl|daccsl|daccsyd|dacctab|dairy|date|datejul|datepart|datetime|day|dclose|depdb|depdbsl|depdbsl|depsl|depsl|depsyd|depsyd|deptab|deptab|dequote|dhms|dif|digamma|dim|dinfo|dnum|dopen|doptname|doptnum|dread|dropnote|dsname|erf|erfc|exist|exp|fappend|fclose|fcol|fdelete|fetch|fetchobs|fexist|fget|fileexist|filename|fileref|finfo|finv|fipname|fipnamel|fipstate|floor|fnonct|fnote|fopen|foptname|foptnum|fpoint|fpos|fput|fread|frewind|frlen|fsep|fuzz|fwrite|gaminv|gamma|getoption|getvarc|getvarn|hbound|hms|hosthelp|hour|ibessel|index|indexc|indexw|input|inputc|inputn|int|intck|intnx|intrr|irr|jbessel|juldate|kurtosis|lag|lbound|left|length|lgamma|libname|libref|log|log10|log2|logpdf|logpmf|logsdf|lowcase|max|mdy|mean|min|minute|mod|month|mopen|mort|n|netpv|nmiss|normal|note|npv|open|ordinal|pathname|pdf|peek|peekc|pmf|point|poisson|poke|probbeta|probbnml|probchi|probf|probgam|probhypr|probit|probnegb|probnorm|probt|put|putc|putn|qtr|quote|ranbin|rancau|ranexp|rangam|range|rank|rannor|ranpoi|rantbl|rantri|ranuni|repeat|resolve|reverse|rewind|right|round|saving|scan|sdf|second|sign|sin|sinh|skewness|soundex|spedis|sqrt|std|stderr|stfips|stname|stnamel|substr|sum|symget|sysget|sysmsg|sysprod|sysrc|system|tan|tanh|time|timepart|tinv|tnonct|today|translate|tranwrd|trigamma|trim|trimn|trunc|uniform|upcase|uss|var|varfmt|varinfmt|varlabel|varlen|varname|varnum|varray|varrayx|vartype|verify|vformat|vformatd|vformatdx|vformatn|vformatnx|vformatw|vformatwx|vformatx|vinarray|vinarrayx|vinformat|vinformatd|vinformatdx|vinformatn|vinformatnx|vinformatw|vinformatwx|vinformatx|vlabel|vlabelx|vlength|vlengthx|vname|vnamex|vtype|vtypex|weekday|year|yyq|zipfips|zipname|zipnamel|zipstate)[(]\"},{className:\"string\",variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},e.COMMENT(\"\\\\*\",\";\"),e.C_BLOCK_COMMENT_MODE]}};var Si=function(e){const t={className:\"subst\",variants:[{begin:\"\\\\$[A-Za-z0-9_]+\"},{begin:/\\$\\{/,end:/\\}/}]},a={className:\"string\",variants:[{begin:'\"\"\"',end:'\"\"\"'},{begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:'[a-z]+\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,t]},{className:\"string\",begin:'[a-z]+\"\"\"',end:'\"\"\"',contains:[t],relevance:10}]},n={className:\"type\",begin:\"\\\\b[A-Z][A-Za-z0-9_]*\",relevance:0},i={className:\"title\",begin:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,relevance:0},r={className:\"class\",beginKeywords:\"class object trait type\",end:/[:={\\[\\n;]/,excludeEnd:!0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{beginKeywords:\"extends with\",relevance:10},{begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[n]},{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[n]},i]},s={className:\"function\",beginKeywords:\"def\",end:/[:={\\[(\\n;]/,excludeEnd:!0,contains:[i]};return{name:\"Scala\",keywords:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:\"symbol\",begin:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},n,s,r,e.C_NUMBER_MODE,{className:\"meta\",begin:\"@[A-Za-z]+\"}]}};var bi=function(e){const t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",a=\"(-|\\\\+)?\\\\d+([./]\\\\d+)?\",n={$pattern:t,\"builtin-name\":\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},i={className:\"literal\",begin:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},r={className:\"number\",variants:[{begin:a,relevance:0},{begin:\"(-|\\\\+)?\\\\d+([./]\\\\d+)?[+\\\\-](-|\\\\+)?\\\\d+([./]\\\\d+)?i\",relevance:0},{begin:\"#b[0-1]+(/[0-1]+)?\"},{begin:\"#o[0-7]+(/[0-7]+)?\"},{begin:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QUOTE_STRING_MODE,o=[e.COMMENT(\";\",\"$\",{relevance:0}),e.COMMENT(\"#\\\\|\",\"\\\\|#\")],l={begin:t,relevance:0},c={className:\"symbol\",begin:\"'\"+t},_={endsWithParent:!0,relevance:0},d={variants:[{begin:/'/},{begin:\"`\"}],contains:[{begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",i,s,r,l,c]}]},m={className:\"name\",relevance:0,begin:t,keywords:n},u={variants:[{begin:\"\\\\(\",end:\"\\\\)\"},{begin:\"\\\\[\",end:\"\\\\]\"}],contains:[{begin:/lambda/,endsWithParent:!0,returnBegin:!0,contains:[m,{endsParent:!0,variants:[{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/}],contains:[l]}]},m,_]};return _.contains=[i,r,s,l,c,d,u].concat(o),{name:\"Scheme\",illegal:/\\S/,contains:[e.SHEBANG(),r,s,c,d,u].concat(o)}};var Ti=function(e){const t=[e.C_NUMBER_MODE,{className:\"string\",begin:\"'|\\\"\",end:\"'|\\\"\",contains:[e.BACKSLASH_ESCAPE,{begin:\"''\"}]}];return{name:\"Scilab\",aliases:[\"sci\"],keywords:{$pattern:/%?\\w+/,keyword:\"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while\",literal:\"%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix\"},illegal:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',contains:[{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},{begin:\"[a-zA-Z_][a-zA-Z_0-9]*[\\\\.']+\",relevance:0},{begin:\"\\\\[\",end:\"\\\\][\\\\.']*\",relevance:0,contains:t},e.COMMENT(\"//\",\"$\")].concat(t)}};const fi=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],Ci=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],Ni=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],Ri=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],Oi=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();var hi=function(e){const t=(e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),a=Ri,n=Ni,i=\"@[a-z-]+\",r={className:\"variable\",begin:\"(\\\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\\\b\"};return{name:\"SCSS\",case_insensitive:!0,illegal:\"[=/|']\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"selector-id\",begin:\"#[A-Za-z0-9_-]+\",relevance:0},{className:\"selector-class\",begin:\"\\\\.[A-Za-z0-9_-]+\",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-tag\",begin:\"\\\\b(\"+fi.join(\"|\")+\")\\\\b\",relevance:0},{className:\"selector-pseudo\",begin:\":(\"+n.join(\"|\")+\")\"},{className:\"selector-pseudo\",begin:\"::(\"+a.join(\"|\")+\")\"},r,{begin:/\\(/,end:/\\)/,contains:[e.CSS_NUMBER_MODE]},{className:\"attribute\",begin:\"\\\\b(\"+Oi.join(\"|\")+\")\\\\b\"},{begin:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{begin:\":\",end:\";\",contains:[r,t.HEXCOLOR,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT]},{begin:\"@(page|font-face)\",lexemes:i,keywords:\"@page @font-face\"},{begin:\"@\",end:\"[{;]\",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:\"and or not only\",attribute:Ci.join(\" \")},contains:[{begin:i,className:\"keyword\"},{begin:/[a-z-]+(?=:)/,className:\"attribute\"},r,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,e.CSS_NUMBER_MODE]}]}};var vi=function(e){return{name:\"Shell Session\",aliases:[\"console\"],contains:[{className:\"meta\",begin:/^\\s{0,3}[/~\\w\\d[\\]()@-]*[>%$#]/,starts:{end:/[^\\\\](?=\\s*$)/,subLanguage:\"bash\"}}]}};var Ii=function(e){const t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"];return{name:\"Smali\",contains:[{className:\"string\",begin:'\"',end:'\"',relevance:0},e.COMMENT(\"#\",\"$\",{relevance:0}),{className:\"keyword\",variants:[{begin:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\"},{begin:\"^[ ]*\\\\.[a-zA-Z]*\",relevance:0},{begin:\"\\\\s:[a-zA-Z_0-9]*\",relevance:0},{begin:\"\\\\s(\"+[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"].join(\"|\")+\")\"}]},{className:\"built_in\",variants:[{begin:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\"},{begin:\"\\\\s(\"+t.join(\"|\")+\")((-|/)[a-zA-Z0-9]+)+\\\\s\",relevance:10},{begin:\"\\\\s(\"+[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"].join(\"|\")+\")((-|/)[a-zA-Z0-9]+)*\\\\s\",relevance:10}]},{className:\"class\",begin:\"L[^(;:\\n]*;\",relevance:0},{begin:\"[vp][0-9]+\"}]}};var Ai=function(e){const t=\"[a-z][a-zA-Z0-9_]*\",a={className:\"string\",begin:\"\\\\$.{1}\"},n={className:\"symbol\",begin:\"#\"+e.UNDERSCORE_IDENT_RE};return{name:\"Smalltalk\",aliases:[\"st\"],keywords:\"self super nil true false thisContext\",contains:[e.COMMENT('\"','\"'),e.APOS_STRING_MODE,{className:\"type\",begin:\"\\\\b[A-Z][A-Za-z0-9_]*\",relevance:0},{begin:t+\":\",relevance:0},e.C_NUMBER_MODE,n,a,{begin:\"\\\\|[ ]*\"+t+\"([ ]+\"+t+\")*[ ]*\\\\|\",returnBegin:!0,end:/\\|/,illegal:/\\S/,contains:[{begin:\"(\\\\|[ ]*)?\"+t}]},{begin:\"#\\\\(\",end:\"\\\\)\",contains:[e.APOS_STRING_MODE,a,e.C_NUMBER_MODE,n]}]}};var yi=function(e){return{name:\"SML (Standard ML)\",aliases:[\"ml\"],keywords:{$pattern:\"[a-z_]\\\\w*!?\",keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},illegal:/\\/\\/|>>/,contains:[{className:\"literal\",begin:/\\[(\\|\\|)?\\]|\\(\\)/,relevance:0},e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"symbol\",begin:\"'[A-Za-z_](?!')[\\\\w']*\"},{className:\"type\",begin:\"`[A-Z][\\\\w']*\"},{className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},{begin:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"number\",begin:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",relevance:0},{begin:/[-=]>/}]}};var Di=function(e){const t={className:\"string\",variants:[{begin:'\"',end:'\"',contains:[{begin:'\"\"',relevance:0}]},{begin:\"'\",end:\"'\",contains:[{begin:\"''\",relevance:0}]}]},a={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"define undef ifdef ifndef else endif include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(t,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<[^\\n>]*>/,end:/$/,illegal:\"\\\\n\"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]};return{name:\"SQF\",case_insensitive:!0,keywords:{keyword:\"case catch default do else exit exitWith for forEach from if private switch then throw to try waitUntil while with\",built_in:\"abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addForce addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addTorque addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret admin agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airplaneThrottle airportSide AISFinishHeal alive all3DENEntities allAirports allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSimpleObjects allSites allTurrets allUnits allUnitsUAV allVariables ammo ammoOnPylon and animate animateBay animateDoor animatePylon animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canTriggerDynamicSimulation canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory collectiveRTD combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configProperties configSourceAddonList configSourceMod configSourceModList confirmSensorTarget connectTerminalToUAV controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctAddHeader ctAddRow ctClear ctCurSel ctData ctFindHeaderRows ctFindRowHeader ctHeaderControls ctHeaderCount ctRemoveHeaders ctRemoveRows ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPixelPrecision ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlTextWidth ctrlType ctrlVisible ctRowControls ctRowCount ctSetCurSel ctSetData ctSetHeaderTemplate ctSetRowTemplate ctSetValue ctValue curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteGroupWhenEmpty deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureFrameToFile diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_lightNewLoad diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_setLightNew diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableMapIndicators disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle drawTriangle driver drop dynamicSimulationDistance dynamicSimulationDistanceCoef dynamicSimulationEnabled dynamicSimulationSystemEnabled echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableAutoStartUpRTD enableAutoTrimRTD enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableDynamicSimulation enableDynamicSimulationSystem enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableInfoPanelComponent enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableTraffic enableUAVConnectability enableUAVWaypoints enableVehicleCargo enableVehicleSensor enableWeaponDisassembly endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities environmentEnabled estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findIf findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagAnimationPhase flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceFlagTexture forceFollowRoad forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam forgetTarget format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllEnvSoundControllers getAllHitPointsDamage getAllOwnedMines getAllSoundControllers getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getCompatiblePylonMagazines getConnectedUAV getContainerMaxLoad getCursorObjectParams getCustomAimCoef getDammage getDescription getDir getDirVisual getDLCAssetsUsage getDLCAssetsUsageByName getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getEnvSoundController getFatigue getForcedFlagTexture getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getMusicPlayedTime getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlateNumber getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getPylonMagazines getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSoundController getSoundControllerResult getSpeed getStamina getStatValue getSuppression getTerrainGrid getTerrainHeightASL getText getTotalDLCUsageTime getUnitLoadout getUnitTrait getUserMFDText getUserMFDvalue getVariable getVehicleCargo getWeaponCargo getWeaponSway getWingsOrientationRTD getWingsPositionRTD getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState inflame inflamed infoPanel infoPanelComponentEnabled infoPanelComponents infoPanels inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDamageAllowed isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isGroupDeletedWhenEmpty isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLaserOn isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSimpleObject isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUIContext isUniformAllowed isVehicleCargo isVehicleRadarOn isVehicleSensorEnabled isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbColorRight lbCurSel lbData lbDelete lbIsSelected lbPicture lbPictureRight lbSelection lbSetColor lbSetColorRight lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetPictureRight lbSetPictureRightColor lbSetPictureRightColorDisabled lbSetPictureRightColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetText lbSetTextRight lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbTextRight lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaderboardRequestRowsFriends leaderboardsRequestUploadScore leaderboardsRequestUploadScoreKeepBest leaderboardState leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects listRemoteTargets listVehicleSensors ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbSort lnbSortByValue lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modelToWorldVisualWorld modelToWorldWorld modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberOfEnginesRTD numberToDate objectCurators objectFromNetId objectParent objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openSteamApp openYoutubeVideo or orderGetIn overcast overcastForecast owner param params parseNumber parseSimpleArray parseText parsingNamespace particlesQuality pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remoteExecutedOwner remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponAttachmentCargo removeWeaponCargo removeWeaponGlobal removeWeaponTurret reportRemoteTarget requiredVersion resetCamShake resetSubgroupDirection resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectRandomWeighted selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENLogicType set3DENMissionAttribute set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setActualCollectiveRTD setAirplaneThrottle setAirportSide setAmmo setAmmoCargo setAmmoOnPylon setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setBrakesRTD setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTI setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setConvoySeparation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setCustomWeightRTD setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDriveOnPath setDropInterval setDynamicSimulationDistance setDynamicSimulationDistanceCoef setEditorMode setEditorObjectScope setEffectCondition setEngineRPMRTD setFace setFaceAnimation setFatigue setFeatureType setFlagAnimationPhase setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setInfoPanel setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlateNumber setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setPylonLoadOut setPylonsPriority setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setRotorBrakeRTD setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskMarkerOffset setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTrafficDensity setTrafficDistance setTrafficGap setTrafficSpeed setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setUserMFDText setUserMFDvalue setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleRadar setVehicleReceiveRemoteTargets setVehicleReportOwnPosition setVehicleReportRemoteTargets setVehicleTIPars setVehicleVarName setVelocity setVelocityModelSpace setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWantedRPMRTD setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWingForceScaleRTD setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideChat sideEnemy sideFriendly sideRadio simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targets targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskParent taskResult taskState taskType teamMember teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL terrainIntersectAtASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerDynamicSimulation triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCollapseAll tvCount tvCurSel tvData tvDelete tvExpand tvExpandAll tvPicture tvSetColor tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves userInputDisabled vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorModelToWorld vectorModelToWorldVisual vectorMultiply vectorNormalized vectorUp vectorUpVisual vectorWorldToModel vectorWorldToModelVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicleReceiveRemoteTargets vehicleReportOwnPosition vehicleReportRemoteTargets vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD WFSideText wind \",literal:\"blufor civilian configNull controlNull displayNull east endl false grpNull independent lineBreak locationNull nil objNull opfor pi resistance scriptNull sideAmbientLife sideEmpty sideLogic sideUnknown taskNull teamMemberNull true west\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.NUMBER_MODE,{className:\"variable\",begin:/\\b_+[a-zA-Z]\\w*/},{className:\"title\",begin:/[a-zA-Z][a-zA-Z0-9]+_fnc_\\w*/},t,a],illegal:/#|^\\$ /}};var Mi=function(e){var t=e.COMMENT(\"--\",\"$\");return{name:\"SQL (more)\",aliases:[\"mysql\",\"oracle\"],disableAutodetect:!0,case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with\",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\\w\\.]+/,keyword:\"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null unknown\",built_in:\"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},{className:\"string\",begin:'\"',end:'\"',contains:[{begin:'\"\"'}]},{className:\"string\",begin:\"`\",end:\"`\"},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]}};function Li(e){return e?\"string\"==typeof e?e:e.source:null}function xi(...e){return e.map((e=>Li(e))).join(\"\")}function wi(...e){return\"(\"+e.map((e=>Li(e))).join(\"|\")+\")\"}var Pi=function(e){const t=e.COMMENT(\"--\",\"$\"),a=[\"true\",\"false\",\"unknown\"],n=[\"bigint\",\"binary\",\"blob\",\"boolean\",\"char\",\"character\",\"clob\",\"date\",\"dec\",\"decfloat\",\"decimal\",\"float\",\"int\",\"integer\",\"interval\",\"nchar\",\"nclob\",\"national\",\"numeric\",\"real\",\"row\",\"smallint\",\"time\",\"timestamp\",\"varchar\",\"varying\",\"varbinary\"],i=[\"abs\",\"acos\",\"array_agg\",\"asin\",\"atan\",\"avg\",\"cast\",\"ceil\",\"ceiling\",\"coalesce\",\"corr\",\"cos\",\"cosh\",\"count\",\"covar_pop\",\"covar_samp\",\"cume_dist\",\"dense_rank\",\"deref\",\"element\",\"exp\",\"extract\",\"first_value\",\"floor\",\"json_array\",\"json_arrayagg\",\"json_exists\",\"json_object\",\"json_objectagg\",\"json_query\",\"json_table\",\"json_table_primitive\",\"json_value\",\"lag\",\"last_value\",\"lead\",\"listagg\",\"ln\",\"log\",\"log10\",\"lower\",\"max\",\"min\",\"mod\",\"nth_value\",\"ntile\",\"nullif\",\"percent_rank\",\"percentile_cont\",\"percentile_disc\",\"position\",\"position_regex\",\"power\",\"rank\",\"regr_avgx\",\"regr_avgy\",\"regr_count\",\"regr_intercept\",\"regr_r2\",\"regr_slope\",\"regr_sxx\",\"regr_sxy\",\"regr_syy\",\"row_number\",\"sin\",\"sinh\",\"sqrt\",\"stddev_pop\",\"stddev_samp\",\"substring\",\"substring_regex\",\"sum\",\"tan\",\"tanh\",\"translate\",\"translate_regex\",\"treat\",\"trim\",\"trim_array\",\"unnest\",\"upper\",\"value_of\",\"var_pop\",\"var_samp\",\"width_bucket\"],r=[\"create table\",\"insert into\",\"primary key\",\"foreign key\",\"not null\",\"alter table\",\"add constraint\",\"grouping sets\",\"on overflow\",\"character set\",\"respect nulls\",\"ignore nulls\",\"nulls first\",\"nulls last\",\"depth first\",\"breadth first\"],s=i,o=[\"abs\",\"acos\",\"all\",\"allocate\",\"alter\",\"and\",\"any\",\"are\",\"array\",\"array_agg\",\"array_max_cardinality\",\"as\",\"asensitive\",\"asin\",\"asymmetric\",\"at\",\"atan\",\"atomic\",\"authorization\",\"avg\",\"begin\",\"begin_frame\",\"begin_partition\",\"between\",\"bigint\",\"binary\",\"blob\",\"boolean\",\"both\",\"by\",\"call\",\"called\",\"cardinality\",\"cascaded\",\"case\",\"cast\",\"ceil\",\"ceiling\",\"char\",\"char_length\",\"character\",\"character_length\",\"check\",\"classifier\",\"clob\",\"close\",\"coalesce\",\"collate\",\"collect\",\"column\",\"commit\",\"condition\",\"connect\",\"constraint\",\"contains\",\"convert\",\"copy\",\"corr\",\"corresponding\",\"cos\",\"cosh\",\"count\",\"covar_pop\",\"covar_samp\",\"create\",\"cross\",\"cube\",\"cume_dist\",\"current\",\"current_catalog\",\"current_date\",\"current_default_transform_group\",\"current_path\",\"current_role\",\"current_row\",\"current_schema\",\"current_time\",\"current_timestamp\",\"current_path\",\"current_role\",\"current_transform_group_for_type\",\"current_user\",\"cursor\",\"cycle\",\"date\",\"day\",\"deallocate\",\"dec\",\"decimal\",\"decfloat\",\"declare\",\"default\",\"define\",\"delete\",\"dense_rank\",\"deref\",\"describe\",\"deterministic\",\"disconnect\",\"distinct\",\"double\",\"drop\",\"dynamic\",\"each\",\"element\",\"else\",\"empty\",\"end\",\"end_frame\",\"end_partition\",\"end-exec\",\"equals\",\"escape\",\"every\",\"except\",\"exec\",\"execute\",\"exists\",\"exp\",\"external\",\"extract\",\"false\",\"fetch\",\"filter\",\"first_value\",\"float\",\"floor\",\"for\",\"foreign\",\"frame_row\",\"free\",\"from\",\"full\",\"function\",\"fusion\",\"get\",\"global\",\"grant\",\"group\",\"grouping\",\"groups\",\"having\",\"hold\",\"hour\",\"identity\",\"in\",\"indicator\",\"initial\",\"inner\",\"inout\",\"insensitive\",\"insert\",\"int\",\"integer\",\"intersect\",\"intersection\",\"interval\",\"into\",\"is\",\"join\",\"json_array\",\"json_arrayagg\",\"json_exists\",\"json_object\",\"json_objectagg\",\"json_query\",\"json_table\",\"json_table_primitive\",\"json_value\",\"lag\",\"language\",\"large\",\"last_value\",\"lateral\",\"lead\",\"leading\",\"left\",\"like\",\"like_regex\",\"listagg\",\"ln\",\"local\",\"localtime\",\"localtimestamp\",\"log\",\"log10\",\"lower\",\"match\",\"match_number\",\"match_recognize\",\"matches\",\"max\",\"member\",\"merge\",\"method\",\"min\",\"minute\",\"mod\",\"modifies\",\"module\",\"month\",\"multiset\",\"national\",\"natural\",\"nchar\",\"nclob\",\"new\",\"no\",\"none\",\"normalize\",\"not\",\"nth_value\",\"ntile\",\"null\",\"nullif\",\"numeric\",\"octet_length\",\"occurrences_regex\",\"of\",\"offset\",\"old\",\"omit\",\"on\",\"one\",\"only\",\"open\",\"or\",\"order\",\"out\",\"outer\",\"over\",\"overlaps\",\"overlay\",\"parameter\",\"partition\",\"pattern\",\"per\",\"percent\",\"percent_rank\",\"percentile_cont\",\"percentile_disc\",\"period\",\"portion\",\"position\",\"position_regex\",\"power\",\"precedes\",\"precision\",\"prepare\",\"primary\",\"procedure\",\"ptf\",\"range\",\"rank\",\"reads\",\"real\",\"recursive\",\"ref\",\"references\",\"referencing\",\"regr_avgx\",\"regr_avgy\",\"regr_count\",\"regr_intercept\",\"regr_r2\",\"regr_slope\",\"regr_sxx\",\"regr_sxy\",\"regr_syy\",\"release\",\"result\",\"return\",\"returns\",\"revoke\",\"right\",\"rollback\",\"rollup\",\"row\",\"row_number\",\"rows\",\"running\",\"savepoint\",\"scope\",\"scroll\",\"search\",\"second\",\"seek\",\"select\",\"sensitive\",\"session_user\",\"set\",\"show\",\"similar\",\"sin\",\"sinh\",\"skip\",\"smallint\",\"some\",\"specific\",\"specifictype\",\"sql\",\"sqlexception\",\"sqlstate\",\"sqlwarning\",\"sqrt\",\"start\",\"static\",\"stddev_pop\",\"stddev_samp\",\"submultiset\",\"subset\",\"substring\",\"substring_regex\",\"succeeds\",\"sum\",\"symmetric\",\"system\",\"system_time\",\"system_user\",\"table\",\"tablesample\",\"tan\",\"tanh\",\"then\",\"time\",\"timestamp\",\"timezone_hour\",\"timezone_minute\",\"to\",\"trailing\",\"translate\",\"translate_regex\",\"translation\",\"treat\",\"trigger\",\"trim\",\"trim_array\",\"true\",\"truncate\",\"uescape\",\"union\",\"unique\",\"unknown\",\"unnest\",\"update \",\"upper\",\"user\",\"using\",\"value\",\"values\",\"value_of\",\"var_pop\",\"var_samp\",\"varbinary\",\"varchar\",\"varying\",\"versioning\",\"when\",\"whenever\",\"where\",\"width_bucket\",\"window\",\"with\",\"within\",\"without\",\"year\",\"add\",\"asc\",\"collation\",\"desc\",\"final\",\"first\",\"last\",\"view\"].filter((e=>!i.includes(e))),l={begin:xi(/\\b/,wi(...s),/\\s*\\(/),keywords:{built_in:s}};return{name:\"SQL\",case_insensitive:!0,illegal:/[{}]|<\\//,keywords:{$pattern:/\\b[\\w\\.]+/,keyword:function(e,{exceptions:t,when:a}={}){const n=a;return t=t||[],e.map((e=>e.match(/\\|\\d+$/)||t.includes(e)?e:n(e)?`${e}|0`:e))}(o,{when:e=>e.length<3}),literal:a,type:n,built_in:[\"current_catalog\",\"current_date\",\"current_default_transform_group\",\"current_path\",\"current_role\",\"current_schema\",\"current_transform_group_for_type\",\"current_user\",\"session_user\",\"system_time\",\"system_user\",\"current_time\",\"localtime\",\"current_timestamp\",\"localtimestamp\"]},contains:[{begin:wi(...r),keywords:{$pattern:/[\\w\\.]+/,keyword:o.concat(r),literal:a,type:n}},{className:\"type\",begin:wi(\"double precision\",\"large object\",\"with timezone\",\"without timezone\")},l,{className:\"variable\",begin:/@[a-z0-9]+/},{className:\"string\",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:\"operator\",begin:/[-+*/=%^~]|&&?|\\|\\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}};var ki=function(e){return{name:\"Stan\",aliases:[\"stanfuncs\"],keywords:{$pattern:e.IDENT_RE,title:[\"functions\",\"model\",\"data\",\"parameters\",\"quantities\",\"transformed\",\"generated\"],keyword:[\"for\",\"in\",\"if\",\"else\",\"while\",\"break\",\"continue\",\"return\"].concat([\"int\",\"real\",\"vector\",\"ordered\",\"positive_ordered\",\"simplex\",\"unit_vector\",\"row_vector\",\"matrix\",\"cholesky_factor_corr|10\",\"cholesky_factor_cov|10\",\"corr_matrix|10\",\"cov_matrix|10\",\"void\"]).concat([\"print\",\"reject\",\"increment_log_prob|10\",\"integrate_ode|10\",\"integrate_ode_rk45|10\",\"integrate_ode_bdf|10\",\"algebra_solver\"]),built_in:[\"Phi\",\"Phi_approx\",\"abs\",\"acos\",\"acosh\",\"algebra_solver\",\"append_array\",\"append_col\",\"append_row\",\"asin\",\"asinh\",\"atan\",\"atan2\",\"atanh\",\"bernoulli_cdf\",\"bernoulli_lccdf\",\"bernoulli_lcdf\",\"bernoulli_logit_lpmf\",\"bernoulli_logit_rng\",\"bernoulli_lpmf\",\"bernoulli_rng\",\"bessel_first_kind\",\"bessel_second_kind\",\"beta_binomial_cdf\",\"beta_binomial_lccdf\",\"beta_binomial_lcdf\",\"beta_binomial_lpmf\",\"beta_binomial_rng\",\"beta_cdf\",\"beta_lccdf\",\"beta_lcdf\",\"beta_lpdf\",\"beta_rng\",\"binary_log_loss\",\"binomial_cdf\",\"binomial_coefficient_log\",\"binomial_lccdf\",\"binomial_lcdf\",\"binomial_logit_lpmf\",\"binomial_lpmf\",\"binomial_rng\",\"block\",\"categorical_logit_lpmf\",\"categorical_logit_rng\",\"categorical_lpmf\",\"categorical_rng\",\"cauchy_cdf\",\"cauchy_lccdf\",\"cauchy_lcdf\",\"cauchy_lpdf\",\"cauchy_rng\",\"cbrt\",\"ceil\",\"chi_square_cdf\",\"chi_square_lccdf\",\"chi_square_lcdf\",\"chi_square_lpdf\",\"chi_square_rng\",\"cholesky_decompose\",\"choose\",\"col\",\"cols\",\"columns_dot_product\",\"columns_dot_self\",\"cos\",\"cosh\",\"cov_exp_quad\",\"crossprod\",\"csr_extract_u\",\"csr_extract_v\",\"csr_extract_w\",\"csr_matrix_times_vector\",\"csr_to_dense_matrix\",\"cumulative_sum\",\"determinant\",\"diag_matrix\",\"diag_post_multiply\",\"diag_pre_multiply\",\"diagonal\",\"digamma\",\"dims\",\"dirichlet_lpdf\",\"dirichlet_rng\",\"distance\",\"dot_product\",\"dot_self\",\"double_exponential_cdf\",\"double_exponential_lccdf\",\"double_exponential_lcdf\",\"double_exponential_lpdf\",\"double_exponential_rng\",\"e\",\"eigenvalues_sym\",\"eigenvectors_sym\",\"erf\",\"erfc\",\"exp\",\"exp2\",\"exp_mod_normal_cdf\",\"exp_mod_normal_lccdf\",\"exp_mod_normal_lcdf\",\"exp_mod_normal_lpdf\",\"exp_mod_normal_rng\",\"expm1\",\"exponential_cdf\",\"exponential_lccdf\",\"exponential_lcdf\",\"exponential_lpdf\",\"exponential_rng\",\"fabs\",\"falling_factorial\",\"fdim\",\"floor\",\"fma\",\"fmax\",\"fmin\",\"fmod\",\"frechet_cdf\",\"frechet_lccdf\",\"frechet_lcdf\",\"frechet_lpdf\",\"frechet_rng\",\"gamma_cdf\",\"gamma_lccdf\",\"gamma_lcdf\",\"gamma_lpdf\",\"gamma_p\",\"gamma_q\",\"gamma_rng\",\"gaussian_dlm_obs_lpdf\",\"get_lp\",\"gumbel_cdf\",\"gumbel_lccdf\",\"gumbel_lcdf\",\"gumbel_lpdf\",\"gumbel_rng\",\"head\",\"hypergeometric_lpmf\",\"hypergeometric_rng\",\"hypot\",\"inc_beta\",\"int_step\",\"integrate_ode\",\"integrate_ode_bdf\",\"integrate_ode_rk45\",\"inv\",\"inv_Phi\",\"inv_chi_square_cdf\",\"inv_chi_square_lccdf\",\"inv_chi_square_lcdf\",\"inv_chi_square_lpdf\",\"inv_chi_square_rng\",\"inv_cloglog\",\"inv_gamma_cdf\",\"inv_gamma_lccdf\",\"inv_gamma_lcdf\",\"inv_gamma_lpdf\",\"inv_gamma_rng\",\"inv_logit\",\"inv_sqrt\",\"inv_square\",\"inv_wishart_lpdf\",\"inv_wishart_rng\",\"inverse\",\"inverse_spd\",\"is_inf\",\"is_nan\",\"lbeta\",\"lchoose\",\"lgamma\",\"lkj_corr_cholesky_lpdf\",\"lkj_corr_cholesky_rng\",\"lkj_corr_lpdf\",\"lkj_corr_rng\",\"lmgamma\",\"lmultiply\",\"log\",\"log10\",\"log1m\",\"log1m_exp\",\"log1m_inv_logit\",\"log1p\",\"log1p_exp\",\"log2\",\"log_determinant\",\"log_diff_exp\",\"log_falling_factorial\",\"log_inv_logit\",\"log_mix\",\"log_rising_factorial\",\"log_softmax\",\"log_sum_exp\",\"logistic_cdf\",\"logistic_lccdf\",\"logistic_lcdf\",\"logistic_lpdf\",\"logistic_rng\",\"logit\",\"lognormal_cdf\",\"lognormal_lccdf\",\"lognormal_lcdf\",\"lognormal_lpdf\",\"lognormal_rng\",\"machine_precision\",\"matrix_exp\",\"max\",\"mdivide_left_spd\",\"mdivide_left_tri_low\",\"mdivide_right_spd\",\"mdivide_right_tri_low\",\"mean\",\"min\",\"modified_bessel_first_kind\",\"modified_bessel_second_kind\",\"multi_gp_cholesky_lpdf\",\"multi_gp_lpdf\",\"multi_normal_cholesky_lpdf\",\"multi_normal_cholesky_rng\",\"multi_normal_lpdf\",\"multi_normal_prec_lpdf\",\"multi_normal_rng\",\"multi_student_t_lpdf\",\"multi_student_t_rng\",\"multinomial_lpmf\",\"multinomial_rng\",\"multiply_log\",\"multiply_lower_tri_self_transpose\",\"neg_binomial_2_cdf\",\"neg_binomial_2_lccdf\",\"neg_binomial_2_lcdf\",\"neg_binomial_2_log_lpmf\",\"neg_binomial_2_log_rng\",\"neg_binomial_2_lpmf\",\"neg_binomial_2_rng\",\"neg_binomial_cdf\",\"neg_binomial_lccdf\",\"neg_binomial_lcdf\",\"neg_binomial_lpmf\",\"neg_binomial_rng\",\"negative_infinity\",\"normal_cdf\",\"normal_lccdf\",\"normal_lcdf\",\"normal_lpdf\",\"normal_rng\",\"not_a_number\",\"num_elements\",\"ordered_logistic_lpmf\",\"ordered_logistic_rng\",\"owens_t\",\"pareto_cdf\",\"pareto_lccdf\",\"pareto_lcdf\",\"pareto_lpdf\",\"pareto_rng\",\"pareto_type_2_cdf\",\"pareto_type_2_lccdf\",\"pareto_type_2_lcdf\",\"pareto_type_2_lpdf\",\"pareto_type_2_rng\",\"pi\",\"poisson_cdf\",\"poisson_lccdf\",\"poisson_lcdf\",\"poisson_log_lpmf\",\"poisson_log_rng\",\"poisson_lpmf\",\"poisson_rng\",\"positive_infinity\",\"pow\",\"print\",\"prod\",\"qr_Q\",\"qr_R\",\"quad_form\",\"quad_form_diag\",\"quad_form_sym\",\"rank\",\"rayleigh_cdf\",\"rayleigh_lccdf\",\"rayleigh_lcdf\",\"rayleigh_lpdf\",\"rayleigh_rng\",\"reject\",\"rep_array\",\"rep_matrix\",\"rep_row_vector\",\"rep_vector\",\"rising_factorial\",\"round\",\"row\",\"rows\",\"rows_dot_product\",\"rows_dot_self\",\"scaled_inv_chi_square_cdf\",\"scaled_inv_chi_square_lccdf\",\"scaled_inv_chi_square_lcdf\",\"scaled_inv_chi_square_lpdf\",\"scaled_inv_chi_square_rng\",\"sd\",\"segment\",\"sin\",\"singular_values\",\"sinh\",\"size\",\"skew_normal_cdf\",\"skew_normal_lccdf\",\"skew_normal_lcdf\",\"skew_normal_lpdf\",\"skew_normal_rng\",\"softmax\",\"sort_asc\",\"sort_desc\",\"sort_indices_asc\",\"sort_indices_desc\",\"sqrt\",\"sqrt2\",\"square\",\"squared_distance\",\"step\",\"student_t_cdf\",\"student_t_lccdf\",\"student_t_lcdf\",\"student_t_lpdf\",\"student_t_rng\",\"sub_col\",\"sub_row\",\"sum\",\"tail\",\"tan\",\"tanh\",\"target\",\"tcrossprod\",\"tgamma\",\"to_array_1d\",\"to_array_2d\",\"to_matrix\",\"to_row_vector\",\"to_vector\",\"trace\",\"trace_gen_quad_form\",\"trace_quad_form\",\"trigamma\",\"trunc\",\"uniform_cdf\",\"uniform_lccdf\",\"uniform_lcdf\",\"uniform_lpdf\",\"uniform_rng\",\"variance\",\"von_mises_lpdf\",\"von_mises_rng\",\"weibull_cdf\",\"weibull_lccdf\",\"weibull_lcdf\",\"weibull_lpdf\",\"weibull_rng\",\"wiener_lpdf\",\"wishart_lpdf\",\"wishart_rng\"]},contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/#/,/$/,{relevance:0,keywords:{\"meta-keyword\":\"include\"}}),e.COMMENT(/\\/\\*/,/\\*\\//,{relevance:0,contains:[{className:\"doctag\",begin:/@(return|param)/}]}),{begin:/<\\s*lower\\s*=/,keywords:\"lower\"},{begin:/[<,]\\s*upper\\s*=/,keywords:\"upper\"},{className:\"keyword\",begin:/\\btarget\\s*\\+=/,relevance:10},{begin:\"~\\\\s*(\"+e.IDENT_RE+\")\\\\s*\\\\(\",keywords:[\"bernoulli\",\"bernoulli_logit\",\"beta\",\"beta_binomial\",\"binomial\",\"binomial_logit\",\"categorical\",\"categorical_logit\",\"cauchy\",\"chi_square\",\"dirichlet\",\"double_exponential\",\"exp_mod_normal\",\"exponential\",\"frechet\",\"gamma\",\"gaussian_dlm_obs\",\"gumbel\",\"hypergeometric\",\"inv_chi_square\",\"inv_gamma\",\"inv_wishart\",\"lkj_corr\",\"lkj_corr_cholesky\",\"logistic\",\"lognormal\",\"multi_gp\",\"multi_gp_cholesky\",\"multi_normal\",\"multi_normal_cholesky\",\"multi_normal_prec\",\"multi_student_t\",\"multinomial\",\"neg_binomial\",\"neg_binomial_2\",\"neg_binomial_2_log\",\"normal\",\"ordered_logistic\",\"pareto\",\"pareto_type_2\",\"poisson\",\"poisson_log\",\"rayleigh\",\"scaled_inv_chi_square\",\"skew_normal\",\"student_t\",\"uniform\",\"von_mises\",\"weibull\",\"wiener\",\"wishart\"]},{className:\"number\",variants:[{begin:/\\b\\d+(?:\\.\\d*)?(?:[eE][+-]?\\d+)?/},{begin:/\\.\\d+(?:[eE][+-]?\\d+)?\\b/}],relevance:0},{className:\"string\",begin:'\"',end:'\"',relevance:0}]}};var Ui=function(e){return{name:\"Stata\",aliases:[\"do\",\"ado\"],case_insensitive:!0,keywords:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey bias binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 bubble bubbleplot ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error esize est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 forest forestplot form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate funnel funnelplot g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labbe labbeplot labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize menl meqparse mer merg merge meta mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trimfill trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",contains:[{className:\"symbol\",begin:/`[a-zA-Z0-9_]+'/},{className:\"variable\",begin:/\\$\\{?[a-zA-Z0-9_]+\\}?/},{className:\"string\",variants:[{begin:'`\"[^\\r\\n]*?\"\\''},{begin:'\"[^\\r\\n\"]*\"'}]},{className:\"built_in\",variants:[{begin:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\()\"}]},e.COMMENT(\"^[ \\t]*\\\\*.*$\",!1),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}};var Fi=function(e){return{name:\"STEP Part 21\",aliases:[\"p21\",\"step\",\"stp\"],case_insensitive:!0,keywords:{$pattern:\"[A-Z_][A-Z0-9_.]*\",keyword:\"HEADER ENDSEC DATA\"},contains:[{className:\"meta\",begin:\"ISO-10303-21;\",relevance:10},{className:\"meta\",begin:\"END-ISO-10303-21;\",relevance:10},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.C_NUMBER_MODE,e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"string\",begin:\"'\",end:\"'\"},{className:\"symbol\",variants:[{begin:\"#\",end:\"\\\\d+\",illegal:\"\\\\W\"}]}]}};const Bi=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],Gi=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],Yi=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],Hi=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],Vi=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();var qi=function(e){const t=(e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),a={className:\"variable\",begin:\"\\\\$\"+e.IDENT_RE},n=\"(?=[.\\\\s\\\\n[:,(])\";return{name:\"Stylus\",aliases:[\"styl\"],case_insensitive:!1,keywords:\"if else for in\",illegal:\"(\"+[\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\"(\\\\bdef\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"].join(\"|\")+\")\",contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.HEXCOLOR,{begin:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*(?=[.\\\\s\\\\n[:,(])\",className:\"selector-class\"},{begin:\"#[a-zA-Z][a-zA-Z0-9_-]*(?=[.\\\\s\\\\n[:,(])\",className:\"selector-id\"},{begin:\"\\\\b(\"+Bi.join(\"|\")+\")\"+n,className:\"selector-tag\"},{className:\"selector-pseudo\",begin:\"&?:(\"+Yi.join(\"|\")+\")\"+n},{className:\"selector-pseudo\",begin:\"&?::(\"+Hi.join(\"|\")+\")\"+n},t.ATTRIBUTE_SELECTOR_MODE,{className:\"keyword\",begin:/@media/,starts:{end:/[{;}]/,keywords:{$pattern:/[a-z-]+/,keyword:\"and or not only\",attribute:Gi.join(\" \")},contains:[e.CSS_NUMBER_MODE]}},{className:\"keyword\",begin:\"@((-(o|moz|ms|webkit)-)?(\"+[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"keyframes\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"].join(\"|\")+\"))\\\\b\"},a,e.CSS_NUMBER_MODE,{className:\"function\",begin:\"^[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",illegal:\"[\\\\n]\",returnBegin:!0,contains:[{className:\"title\",begin:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{className:\"params\",begin:/\\(/,end:/\\)/,contains:[t.HEXCOLOR,a,e.APOS_STRING_MODE,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE]}]},{className:\"attribute\",begin:\"\\\\b(\"+Vi.join(\"|\")+\")\\\\b\",starts:{end:/;|$/,contains:[t.HEXCOLOR,a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t.IMPORTANT],illegal:/\\./,relevance:0}}]}};var zi=function(e){return{name:\"SubUnit\",case_insensitive:!0,contains:[{className:\"string\",begin:\"\\\\[\\n(multipart)?\",end:\"\\\\]\\n\"},{className:\"string\",begin:\"\\\\d{4}-\\\\d{2}-\\\\d{2}(\\\\s+)\\\\d{2}:\\\\d{2}:\\\\d{2}.\\\\d+Z\"},{className:\"string\",begin:\"(\\\\+|-)\\\\d+\"},{className:\"keyword\",relevance:10,variants:[{begin:\"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\\\s+(test)?\"},{begin:\"^progress(:?)(\\\\s+)?(pop|push)?\"},{begin:\"^tags:\"},{begin:\"^time:\"}]}]}};function $i(e){return e?\"string\"==typeof e?e:e.source:null}function Wi(e){return Qi(\"(?=\",e,\")\")}function Qi(...e){return e.map((e=>$i(e))).join(\"\")}function Ki(...e){return\"(\"+e.map((e=>$i(e))).join(\"|\")+\")\"}const ji=e=>Qi(/\\b/,e,/\\w$/.test(e)?/\\b/:/\\B/),Xi=[\"Protocol\",\"Type\"].map(ji),Zi=[\"init\",\"self\"].map(ji),Ji=[\"Any\",\"Self\"],er=[\"associatedtype\",\"async\",\"await\",/as\\?/,/as!/,\"as\",\"break\",\"case\",\"catch\",\"class\",\"continue\",\"convenience\",\"default\",\"defer\",\"deinit\",\"didSet\",\"do\",\"dynamic\",\"else\",\"enum\",\"extension\",\"fallthrough\",/fileprivate\\(set\\)/,\"fileprivate\",\"final\",\"for\",\"func\",\"get\",\"guard\",\"if\",\"import\",\"indirect\",\"infix\",/init\\?/,/init!/,\"inout\",/internal\\(set\\)/,\"internal\",\"in\",\"is\",\"lazy\",\"let\",\"mutating\",\"nonmutating\",/open\\(set\\)/,\"open\",\"operator\",\"optional\",\"override\",\"postfix\",\"precedencegroup\",\"prefix\",/private\\(set\\)/,\"private\",\"protocol\",/public\\(set\\)/,\"public\",\"repeat\",\"required\",\"rethrows\",\"return\",\"set\",\"some\",\"static\",\"struct\",\"subscript\",\"super\",\"switch\",\"throws\",\"throw\",/try\\?/,/try!/,\"try\",\"typealias\",/unowned\\(safe\\)/,/unowned\\(unsafe\\)/,\"unowned\",\"var\",\"weak\",\"where\",\"while\",\"willSet\"],tr=[\"false\",\"nil\",\"true\"],ar=[\"assignment\",\"associativity\",\"higherThan\",\"left\",\"lowerThan\",\"none\",\"right\"],nr=[\"#colorLiteral\",\"#column\",\"#dsohandle\",\"#else\",\"#elseif\",\"#endif\",\"#error\",\"#file\",\"#fileID\",\"#fileLiteral\",\"#filePath\",\"#function\",\"#if\",\"#imageLiteral\",\"#keyPath\",\"#line\",\"#selector\",\"#sourceLocation\",\"#warn_unqualified_access\",\"#warning\"],ir=[\"abs\",\"all\",\"any\",\"assert\",\"assertionFailure\",\"debugPrint\",\"dump\",\"fatalError\",\"getVaList\",\"isKnownUniquelyReferenced\",\"max\",\"min\",\"numericCast\",\"pointwiseMax\",\"pointwiseMin\",\"precondition\",\"preconditionFailure\",\"print\",\"readLine\",\"repeatElement\",\"sequence\",\"stride\",\"swap\",\"swift_unboxFromSwiftValueWithType\",\"transcode\",\"type\",\"unsafeBitCast\",\"unsafeDowncast\",\"withExtendedLifetime\",\"withUnsafeMutablePointer\",\"withUnsafePointer\",\"withVaList\",\"withoutActuallyEscaping\",\"zip\"],rr=Ki(/[/=\\-+!*%<>&|^~?]/,/[\\u00A1-\\u00A7]/,/[\\u00A9\\u00AB]/,/[\\u00AC\\u00AE]/,/[\\u00B0\\u00B1]/,/[\\u00B6\\u00BB\\u00BF\\u00D7\\u00F7]/,/[\\u2016-\\u2017]/,/[\\u2020-\\u2027]/,/[\\u2030-\\u203E]/,/[\\u2041-\\u2053]/,/[\\u2055-\\u205E]/,/[\\u2190-\\u23FF]/,/[\\u2500-\\u2775]/,/[\\u2794-\\u2BFF]/,/[\\u2E00-\\u2E7F]/,/[\\u3001-\\u3003]/,/[\\u3008-\\u3020]/,/[\\u3030]/),sr=Ki(rr,/[\\u0300-\\u036F]/,/[\\u1DC0-\\u1DFF]/,/[\\u20D0-\\u20FF]/,/[\\uFE00-\\uFE0F]/,/[\\uFE20-\\uFE2F]/),or=Qi(rr,sr,\"*\"),lr=Ki(/[a-zA-Z_]/,/[\\u00A8\\u00AA\\u00AD\\u00AF\\u00B2-\\u00B5\\u00B7-\\u00BA]/,/[\\u00BC-\\u00BE\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u00FF]/,/[\\u0100-\\u02FF\\u0370-\\u167F\\u1681-\\u180D\\u180F-\\u1DBF]/,/[\\u1E00-\\u1FFF]/,/[\\u200B-\\u200D\\u202A-\\u202E\\u203F-\\u2040\\u2054\\u2060-\\u206F]/,/[\\u2070-\\u20CF\\u2100-\\u218F\\u2460-\\u24FF\\u2776-\\u2793]/,/[\\u2C00-\\u2DFF\\u2E80-\\u2FFF]/,/[\\u3004-\\u3007\\u3021-\\u302F\\u3031-\\u303F\\u3040-\\uD7FF]/,/[\\uF900-\\uFD3D\\uFD40-\\uFDCF\\uFDF0-\\uFE1F\\uFE30-\\uFE44]/,/[\\uFE47-\\uFEFE\\uFF00-\\uFFFD]/),cr=Ki(lr,/\\d/,/[\\u0300-\\u036F\\u1DC0-\\u1DFF\\u20D0-\\u20FF\\uFE20-\\uFE2F]/),_r=Qi(lr,cr,\"*\"),dr=Qi(/[A-Z]/,cr,\"*\"),mr=[\"autoclosure\",Qi(/convention\\(/,Ki(\"swift\",\"block\",\"c\"),/\\)/),\"discardableResult\",\"dynamicCallable\",\"dynamicMemberLookup\",\"escaping\",\"frozen\",\"GKInspectable\",\"IBAction\",\"IBDesignable\",\"IBInspectable\",\"IBOutlet\",\"IBSegueAction\",\"inlinable\",\"main\",\"nonobjc\",\"NSApplicationMain\",\"NSCopying\",\"NSManaged\",Qi(/objc\\(/,_r,/\\)/),\"objc\",\"objcMembers\",\"propertyWrapper\",\"requires_stored_property_inits\",\"testable\",\"UIApplicationMain\",\"unknown\",\"usableFromInline\"],ur=[\"iOS\",\"iOSApplicationExtension\",\"macOS\",\"macOSApplicationExtension\",\"macCatalyst\",\"macCatalystApplicationExtension\",\"watchOS\",\"watchOSApplicationExtension\",\"tvOS\",\"tvOSApplicationExtension\",\"swift\"];var pr=function(e){const t={match:/\\s+/,relevance:0},a=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),n=[e.C_LINE_COMMENT_MODE,a],i={className:\"keyword\",begin:Qi(/\\./,Wi(Ki(...Xi,...Zi))),end:Ki(...Xi,...Zi),excludeBegin:!0},r={match:Qi(/\\./,Ki(...er)),relevance:0},s=er.filter((e=>\"string\"==typeof e)).concat([\"_|0\"]),o={variants:[{className:\"keyword\",match:Ki(...er.filter((e=>\"string\"!=typeof e)).concat(Ji).map(ji),...Zi)}]},l={$pattern:Ki(/\\b\\w+/,/#\\w+/),keyword:s.concat(nr),literal:tr},c=[i,r,o],_=[{match:Qi(/\\./,Ki(...ir)),relevance:0},{className:\"built_in\",match:Qi(/\\b/,Ki(...ir),/(?=\\()/)}],d={match:/->/,relevance:0},m=[d,{className:\"operator\",relevance:0,variants:[{match:or},{match:`\\\\.(\\\\.|${sr})+`}]}],u=\"([0-9a-fA-F]_*)+\",p={className:\"number\",relevance:0,variants:[{match:\"\\\\b(([0-9]_*)+)(\\\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\\\b\"},{match:`\\\\b0x(${u})(\\\\.(${u}))?([pP][+-]?(([0-9]_*)+))?\\\\b`},{match:/\\b0o([0-7]_*)+\\b/},{match:/\\b0b([01]_*)+\\b/}]},g=(e=\"\")=>({className:\"subst\",variants:[{match:Qi(/\\\\/,e,/[0\\\\tnr\"']/)},{match:Qi(/\\\\/,e,/u\\{[0-9a-fA-F]{1,8}\\}/)}]}),E=(e=\"\")=>({className:\"subst\",match:Qi(/\\\\/,e,/[\\t ]*(?:[\\r\\n]|\\r\\n)/)}),S=(e=\"\")=>({className:\"subst\",label:\"interpol\",begin:Qi(/\\\\/,e,/\\(/),end:/\\)/}),b=(e=\"\")=>({begin:Qi(e,/\"\"\"/),end:Qi(/\"\"\"/,e),contains:[g(e),E(e),S(e)]}),T=(e=\"\")=>({begin:Qi(e,/\"/),end:Qi(/\"/,e),contains:[g(e),S(e)]}),f={className:\"string\",variants:[b(),b(\"#\"),b(\"##\"),b(\"###\"),T(),T(\"#\"),T(\"##\"),T(\"###\")]},C={match:Qi(/`/,_r,/`/)},N=[C,{className:\"variable\",match:/\\$\\d+/},{className:\"variable\",match:`\\\\$${cr}+`}],R=[{match:/(@|#)available/,className:\"keyword\",starts:{contains:[{begin:/\\(/,end:/\\)/,keywords:ur,contains:[...m,p,f]}]}},{className:\"keyword\",match:Qi(/@/,Ki(...mr))},{className:\"meta\",match:Qi(/@/,_r)}],O={match:Wi(/\\b[A-Z]/),relevance:0,contains:[{className:\"type\",match:Qi(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,cr,\"+\")},{className:\"type\",match:dr,relevance:0},{match:/[?!]+/,relevance:0},{match:/\\.\\.\\./,relevance:0},{match:Qi(/\\s+&\\s+/,Wi(dr)),relevance:0}]},h={begin://,keywords:l,contains:[...n,...c,...R,d,O]};O.contains.push(h);const v={begin:/\\(/,end:/\\)/,relevance:0,keywords:l,contains:[\"self\",{match:Qi(_r,/\\s*:/),keywords:\"_|0\",relevance:0},...n,...c,..._,...m,p,f,...N,...R,O]},I={beginKeywords:\"func\",contains:[{className:\"title\",match:Ki(C.match,_r,or),endsParent:!0,relevance:0},t]},A={begin://,contains:[...n,O]},y={begin:/\\(/,end:/\\)/,keywords:l,contains:[{begin:Ki(Wi(Qi(_r,/\\s*:/)),Wi(Qi(_r,/\\s+/,_r,/\\s*:/))),end:/:/,relevance:0,contains:[{className:\"keyword\",match:/\\b_\\b/},{className:\"params\",match:_r}]},...n,...c,...m,p,f,...R,O,v],endsParent:!0,illegal:/[\"']/},D={className:\"function\",match:Wi(/\\bfunc\\b/),contains:[I,A,y,t],illegal:[/\\[/,/%/]},M={className:\"function\",match:/\\b(subscript|init[?!]?)\\s*(?=[<(])/,keywords:{keyword:\"subscript init init? init!\",$pattern:/\\w+[?!]?/},contains:[A,y,t],illegal:/\\[|%/},L={beginKeywords:\"operator\",end:e.MATCH_NOTHING_RE,contains:[{className:\"title\",match:or,endsParent:!0,relevance:0}]},x={beginKeywords:\"precedencegroup\",end:e.MATCH_NOTHING_RE,contains:[{className:\"title\",match:dr,relevance:0},{begin:/{/,end:/}/,relevance:0,endsParent:!0,keywords:[...ar,...tr],contains:[O]}]};for(const e of f.variants){const t=e.contains.find((e=>\"interpol\"===e.label));t.keywords=l;const a=[...c,..._,...m,p,f,...N];t.contains=[...a,{begin:/\\(/,end:/\\)/,contains:[\"self\",...a]}]}return{name:\"Swift\",keywords:l,contains:[...n,D,M,{className:\"class\",beginKeywords:\"struct protocol class extension enum\",end:\"\\\\{\",excludeEnd:!0,keywords:l,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\\u00C0-\\u02B80-9A-Za-z$_]*/}),...c]},L,x,{beginKeywords:\"import\",end:/$/,contains:[...n],relevance:0},...c,..._,...m,p,f,...N,...R,O,v]}};var gr=function(e){return{name:\"Tagger Script\",contains:[{className:\"comment\",begin:/\\$noop\\(/,end:/\\)/,contains:[{begin:/\\(/,end:/\\)/,contains:[\"self\",{begin:/\\\\./}]}],relevance:10},{className:\"keyword\",begin:/\\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,end:/\\(/,excludeEnd:!0},{className:\"variable\",begin:/%[_a-zA-Z0-9:]*/,end:\"%\"},{className:\"symbol\",begin:/\\\\./}]}};var Er=function(e){var t=\"true false yes no null\",a=\"[\\\\w#;/?:@&=+$,.~*'()[\\\\]]+\",n={className:\"string\",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/\\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:\"template-variable\",variants:[{begin:/\\{\\{/,end:/\\}\\}/},{begin:/%\\{/,end:/\\}/}]}]},i=e.inherit(n,{variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/[^\\s,{}[\\]]+/}]}),r={className:\"number\",begin:\"\\\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\\\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\\\.[0-9]*)?([ \\\\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\\\b\"},s={end:\",\",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},o={begin:/\\{/,end:/\\}/,contains:[s],illegal:\"\\\\n\",relevance:0},l={begin:\"\\\\[\",end:\"\\\\]\",contains:[s],illegal:\"\\\\n\",relevance:0},c=[{className:\"attr\",variants:[{begin:\"\\\\w[\\\\w :\\\\/.-]*:(?=[ \\t]|$)\"},{begin:'\"\\\\w[\\\\w :\\\\/.-]*\":(?=[ \\t]|$)'},{begin:\"'\\\\w[\\\\w :\\\\/.-]*':(?=[ \\t]|$)\"}]},{className:\"meta\",begin:\"^---\\\\s*$\",relevance:10},{className:\"string\",begin:\"[\\\\|>]([1-9]?[+-])?[ ]*\\\\n( +)[^ ][^\\\\n]*\\\\n(\\\\2[^\\\\n]+\\\\n?)*\"},{begin:\"<%[%=-]?\",end:\"[%-]?%>\",subLanguage:\"ruby\",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:\"!\\\\w+!\"+a},{className:\"type\",begin:\"!<\"+a+\">\"},{className:\"type\",begin:\"!\"+a},{className:\"type\",begin:\"!!\"+a},{className:\"meta\",begin:\"&\"+e.UNDERSCORE_IDENT_RE+\"$\"},{className:\"meta\",begin:\"\\\\*\"+e.UNDERSCORE_IDENT_RE+\"$\"},{className:\"bullet\",begin:\"-(?=[ ]|$)\",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},r,{className:\"number\",begin:e.C_NUMBER_RE+\"\\\\b\",relevance:0},o,l,n],_=[...c];return _.pop(),_.push(i),s.contains=_,{name:\"YAML\",case_insensitive:!0,aliases:[\"yml\"],contains:c}};var Sr=function(e){return{name:\"Test Anything Protocol\",case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:\"meta\",variants:[{begin:\"^TAP version (\\\\d+)$\"},{begin:\"^1\\\\.\\\\.(\\\\d+)$\"}]},{begin:/---$/,end:\"\\\\.\\\\.\\\\.$\",subLanguage:\"yaml\",relevance:0},{className:\"number\",begin:\" (\\\\d+) \"},{className:\"symbol\",variants:[{begin:\"^ok\"},{begin:\"^not ok\"}]}]}};function br(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var Tr=function(e){const t=/[a-zA-Z_][a-zA-Z0-9_]*/,a={className:\"number\",variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]};return{name:\"Tcl\",aliases:[\"tk\"],keywords:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",contains:[e.COMMENT(\";[ \\\\t]*#\",\"$\"),e.COMMENT(\"^[ \\\\t]*#\",\"$\"),{beginKeywords:\"proc\",end:\"[\\\\{]\",excludeEnd:!0,contains:[{className:\"title\",begin:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",end:\"[ \\\\t\\\\n\\\\r]\",endsWithParent:!0,excludeEnd:!0}]},{className:\"variable\",variants:[{begin:br(/\\$/,(n=/::/,br(\"(\",n,\")?\")),t,\"(::\",t,\")*\")},{begin:\"\\\\$\\\\{(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",end:\"\\\\}\",contains:[a]}]},{className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a]};var n};var fr=function(e){const t=\"bool byte i16 i32 i64 double string binary\";return{name:\"Thrift\",keywords:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"struct enum service exception\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{begin:\"\\\\b(set|list|map)\\\\s*<\",end:\">\",keywords:t,contains:[\"self\"]}]}};var Cr=function(e){const t={className:\"number\",begin:\"[1-9][0-9]*\",relevance:0},a={className:\"symbol\",begin:\":[^\\\\]]+\"};return{name:\"TP\",keywords:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS\",literal:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},contains:[{className:\"built_in\",begin:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",end:\"\\\\]\",contains:[\"self\",t,a]},{className:\"built_in\",begin:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",end:\"\\\\]\",contains:[\"self\",t,e.QUOTE_STRING_MODE,a]},{className:\"keyword\",begin:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{className:\"keyword\",begin:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{className:\"keyword\",begin:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{className:\"number\",begin:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",relevance:0},e.COMMENT(\"//\",\"[;$]\"),e.COMMENT(\"!\",\"[;$]\"),e.COMMENT(\"--eg:\",\"$\"),e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"'\"},e.C_NUMBER_MODE,{className:\"variable\",begin:\"\\\\$[A-Za-z0-9_]+\"}]}};var Nr=function(e){var t=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",a={beginKeywords:t,keywords:{name:t},relevance:0,contains:[{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},n={begin:/\\|[A-Za-z_]+:?/,keywords:\"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode\",contains:[a]},i=\"apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with\";return i=i+\" \"+i.split(\" \").map((function(e){return\"end\"+e})).join(\" \"),{name:\"Twig\",aliases:[\"craftcms\"],case_insensitive:!0,subLanguage:\"xml\",contains:[e.COMMENT(/\\{#/,/#\\}/),{className:\"template-tag\",begin:/\\{%/,end:/%\\}/,contains:[{className:\"name\",begin:/\\w+/,keywords:i,starts:{endsWithParent:!0,contains:[n,a],relevance:0}}]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[\"self\",n,a]}]}};const Rr=\"[A-Za-z$_][0-9A-Za-z$_]*\",Or=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],hr=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],vr=[].concat([\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\",\"BigInt64Array\",\"BigUint64Array\",\"BigInt\"],[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"]);function Ir(e){return Ar(\"(?=\",e,\")\")}function Ar(...e){return e.map((e=>{return(t=e)?\"string\"==typeof t?t:t.source:null;var t})).join(\"\")}var yr=function(e){const t={$pattern:Rr,keyword:Or.concat([\"type\",\"namespace\",\"typedef\",\"interface\",\"public\",\"private\",\"protected\",\"implements\",\"declare\",\"abstract\",\"readonly\"]),literal:hr,built_in:vr.concat([\"any\",\"void\",\"number\",\"boolean\",\"string\",\"object\",\"never\",\"enum\"])},a={className:\"meta\",begin:\"@[A-Za-z$_][0-9A-Za-z$_]*\"},n=(e,t,a)=>{const n=e.contains.findIndex((e=>e.label===t));if(-1===n)throw new Error(\"can not find mode to replace\");e.contains.splice(n,1,a)},i=function(e){const t=Rr,a=\"<>\",n=\"\",i={begin:/<[A-Za-z0-9\\\\._:-]+/,end:/\\/[A-Za-z0-9\\\\._:-]+>|\\/>/,isTrulyOpeningTag:(e,t)=>{const a=e[0].length+e.index,n=e.input[a];\"<\"!==n?\">\"===n&&(((e,{after:t})=>{const a=\"\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:E}]}]},{begin:/,/,relevance:0},{className:\"\",begin:/\\s/,end:/\\s*/,skip:!0},{variants:[{begin:a,end:n},{begin:i.begin,\"on:begin\":i.isTrulyOpeningTag,end:i.end}],subLanguage:\"xml\",contains:[{begin:i.begin,end:i.end,skip:!0,contains:[\"self\"]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,keywords:r,contains:[\"self\",e.inherit(e.TITLE_MODE,{begin:t}),S],illegal:/%/},{beginKeywords:\"while if switch catch for\"},{className:\"function\",begin:e.UNDERSCORE_IDENT_RE+\"\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)\\\\s*\\\\{\",returnBegin:!0,contains:[S,e.inherit(e.TITLE_MODE,{begin:t})]},{variants:[{begin:\"\\\\.\"+t},{begin:\"\\\\$\"+t}],relevance:0},{className:\"class\",beginKeywords:\"class\",end:/[{;=]/,excludeEnd:!0,illegal:/[:\"[\\]]/,contains:[{beginKeywords:\"extends\"},e.UNDERSCORE_TITLE_MODE]},{begin:/\\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),\"self\",S]},{begin:\"(get|set)\\\\s+(?=\"+t+\"\\\\()\",end:/\\{/,keywords:\"get set\",contains:[e.inherit(e.TITLE_MODE,{begin:t}),{begin:/\\(\\)/},S]},{begin:/\\$[(.]/}]}}(e);return Object.assign(i.keywords,t),i.exports.PARAMS_CONTAINS.push(a),i.contains=i.contains.concat([a,{beginKeywords:\"namespace\",end:/\\{/,excludeEnd:!0},{beginKeywords:\"interface\",end:/\\{/,excludeEnd:!0,keywords:\"interface extends\"}]),n(i,\"shebang\",e.SHEBANG()),n(i,\"use_strict\",{className:\"meta\",relevance:10,begin:/^\\s*['\"]use strict['\"]/}),i.contains.find((e=>\"function\"===e.className)).relevance=0,Object.assign(i,{name:\"TypeScript\",aliases:[\"ts\",\"tsx\"]}),i};var Dr=function(e){return{name:\"Vala\",keywords:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object Gtk Posix\",literal:\"false true null\"},contains:[{className:\"class\",beginKeywords:\"class interface namespace\",end:/\\{/,excludeEnd:!0,illegal:\"[^,:\\\\n\\\\s\\\\.]\",contains:[e.UNDERSCORE_TITLE_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:5},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"^#\",end:\"$\",relevance:2}]}};function Mr(e){return e?\"string\"==typeof e?e:e.source:null}function Lr(...e){return e.map((e=>Mr(e))).join(\"\")}function xr(...e){return\"(\"+e.map((e=>Mr(e))).join(\"|\")+\")\"}var wr=function(e){const t=/\\d{1,2}\\/\\d{1,2}\\/\\d{4}/,a=/\\d{4}-\\d{1,2}-\\d{1,2}/,n=/(\\d|1[012])(:\\d+){0,2} *(AM|PM)/,i=/\\d{1,2}(:\\d{1,2}){1,2}/,r={className:\"literal\",variants:[{begin:Lr(/# */,xr(a,t),/ *#/)},{begin:Lr(/# */,i,/ *#/)},{begin:Lr(/# */,n,/ *#/)},{begin:Lr(/# */,xr(a,t),/ +/,xr(n,i),/ *#/)}]},s=e.COMMENT(/'''/,/$/,{contains:[{className:\"doctag\",begin:/<\\/?/,end:/>/}]}),o=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\\t ]|^)REM(?=\\s)/}]});return{name:\"Visual Basic .NET\",aliases:[\"vb\"],case_insensitive:!0,classNameAliases:{label:\"symbol\"},keywords:{keyword:\"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield\",built_in:\"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort\",type:\"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort\",literal:\"true false nothing\"},illegal:\"//|\\\\{|\\\\}|endif|gosub|variant|wend|^\\\\$ \",contains:[{className:\"string\",begin:/\"(\"\"|[^/n])\"C\\b/},{className:\"string\",begin:/\"/,end:/\"/,illegal:/\\n/,contains:[{begin:/\"\"/}]},r,{className:\"number\",relevance:0,variants:[{begin:/\\b\\d[\\d_]*((\\.[\\d_]+(E[+-]?[\\d_]+)?)|(E[+-]?[\\d_]+))[RFD@!#]?/},{begin:/\\b\\d[\\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{className:\"label\",begin:/^\\w+:/},s,o,{className:\"meta\",begin:/[\\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\\b/,end:/$/,keywords:{\"meta-keyword\":\"const disable else elseif enable end externalsource if region then\"},contains:[o]}]}};function Pr(e){return e?\"string\"==typeof e?e:e.source:null}function kr(...e){return e.map((e=>Pr(e))).join(\"\")}function Ur(...e){return\"(\"+e.map((e=>Pr(e))).join(\"|\")+\")\"}var Fr=function(e){const t=\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid split cint sin datepart ltrim sqr time derived eval date formatpercent exp inputbox left ascw chrw regexp cstr err\".split(\" \");return{name:\"VBScript\",aliases:[\"vbs\"],case_insensitive:!0,keywords:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:[\"server\",\"response\",\"request\",\"scriptengine\",\"scriptenginebuildversion\",\"scriptengineminorversion\",\"scriptenginemajorversion\"],literal:\"true false null nothing empty\"},illegal:\"//\",contains:[{begin:kr(Ur(...t),\"\\\\s*\\\\(\"),relevance:0,keywords:{built_in:t}},e.inherit(e.QUOTE_STRING_MODE,{contains:[{begin:'\"\"'}]}),e.COMMENT(/'/,/$/,{relevance:0}),e.C_NUMBER_MODE]}};var Br=function(e){return{name:\"VBScript in HTML\",subLanguage:\"xml\",contains:[{begin:\"<%\",end:\"%>\",subLanguage:\"vbscript\"}]}};var Gr=function(e){return{name:\"Verilog\",aliases:[\"v\",\"sv\",\"svh\"],case_insensitive:!1,keywords:{$pattern:/[\\w\\$]+/,keyword:\"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor\",literal:\"null\",built_in:\"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror\"},contains:[e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:\"number\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:\"\\\\b((\\\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)\"},{begin:\"\\\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)\"},{begin:\"\\\\b([0-9_])+\",relevance:0}]},{className:\"variable\",variants:[{begin:\"#\\\\((?!parameter).+\\\\)\"},{begin:\"\\\\.\\\\w+\",relevance:0}]},{className:\"meta\",begin:\"`\",end:\"$\",keywords:{\"meta-keyword\":\"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall\"},relevance:0}]}};var Yr=function(e){return{name:\"VHDL\",case_insensitive:!0,keywords:{keyword:\"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor\",built_in:\"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector\",literal:\"false true note warning error failure line text side width\"},illegal:/\\{/,contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"--\",\"$\"),e.QUOTE_STRING_MODE,{className:\"number\",begin:\"\\\\b(\\\\d(_|\\\\d)*#\\\\w+(\\\\.\\\\w+)?#([eE][-+]?\\\\d(_|\\\\d)*)?|\\\\d(_|\\\\d)*(\\\\.\\\\d(_|\\\\d)*)?([eE][-+]?\\\\d(_|\\\\d)*)?)\",relevance:0},{className:\"string\",begin:\"'(U|X|0|1|Z|W|L|H|-)'\",contains:[e.BACKSLASH_ESCAPE]},{className:\"symbol\",begin:\"'[A-Za-z](_?[A-Za-z0-9])*\",contains:[e.BACKSLASH_ESCAPE]}]}};var Hr=function(e){return{name:\"Vim Script\",keywords:{$pattern:/[!#@\\w]+/,keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp\"},illegal:/;/,contains:[e.NUMBER_MODE,{className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\"},{className:\"string\",begin:/\"(\\\\\"|\\n\\\\|[^\"\\n])*\"/},e.COMMENT('\"',\"$\"),{className:\"variable\",begin:/[bwtglsav]:[\\w\\d_]*/},{className:\"function\",beginKeywords:\"function function!\",end:\"$\",relevance:0,contains:[e.TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},{className:\"symbol\",begin:/<[\\w-]+>/}]}};var Vr=function(e){return{name:\"Intel x86 Assembly\",case_insensitive:!0,keywords:{$pattern:\"[.%]?\"+e.IDENT_RE,keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",built_in:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr\",meta:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"number\",variants:[{begin:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",relevance:0},{begin:\"\\\\$[0-9][0-9A-Fa-f]*\",relevance:0},{begin:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{begin:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},e.QUOTE_STRING_MODE,{className:\"string\",variants:[{begin:\"'\",end:\"[^\\\\\\\\]'\"},{begin:\"`\",end:\"[^\\\\\\\\]`\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{begin:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],relevance:0},{className:\"subst\",begin:\"%[0-9]+\",relevance:0},{className:\"subst\",begin:\"%!S+\",relevance:0},{className:\"meta\",begin:/^\\s*\\.[\\w_-]+/}]}};var qr=function(e){const t={$pattern:/[a-zA-Z][a-zA-Z0-9_?]*/,keyword:\"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree\",literal:\"true false nil\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\"},a={className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\"},n={beginKeywords:\"import\",end:\"$\",keywords:t,contains:[a]},i={className:\"function\",begin:/[a-z][^\\n]*->/,returnBegin:!0,end:/->/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,keywords:t}})]};return{name:\"XL\",aliases:[\"tao\"],keywords:t,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\"},{className:\"string\",begin:\"<<\",end:\">>\"},i,n,{className:\"number\",begin:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\"},e.NUMBER_MODE]}};var zr=function(e){return{name:\"XQuery\",aliases:[\"xpath\",\"xq\"],case_insensitive:!1,illegal:/(proc)|(abstract)|(extends)|(until)|(#)/,keywords:{$pattern:/[a-zA-Z$][a-zA-Z0-9_:-]*/,keyword:\"module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update\",type:\"item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration\",literal:\"eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN\"},contains:[{className:\"variable\",begin:/[$][\\w\\-:]+/},{className:\"built_in\",variants:[{begin:/\\barray:/,end:/(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\\b/},{begin:/\\bmap:/,end:/(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\\b/},{begin:/\\bmath:/,end:/(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\\b/},{begin:/\\bop:/,end:/\\(/,excludeEnd:!0},{begin:/\\bfn:/,end:/\\(/,excludeEnd:!0},{begin:/[^/,end:/(\\/[\\w._:-]+>)/,subLanguage:\"xml\",contains:[{begin:/\\{/,end:/\\}/,subLanguage:\"xquery\"},\"self\"]}]}};var $r=function(e){const t={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},a=e.UNDERSCORE_TITLE_MODE,n={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},i=\"namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined\";return{name:\"Zephir\",aliases:[\"zep\"],keywords:i,contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\/\\*/,/\\*\\//,{contains:[{className:\"doctag\",begin:/@[A-Za-z]+/}]}),{className:\"string\",begin:/<<<['\"]?\\w+['\"]?$/,end:/^\\w+;/,contains:[e.BACKSLASH_ESCAPE]},{begin:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{className:\"function\",beginKeywords:\"function fn\",end:/[;{]/,excludeEnd:!0,illegal:/\\$|\\[|%/,contains:[a,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:i,contains:[\"self\",e.C_BLOCK_COMMENT_MODE,t,n]}]},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,illegal:/[:($\"]/,contains:[{beginKeywords:\"extends implements\"},a]},{beginKeywords:\"namespace\",end:/;/,illegal:/[.']/,contains:[a]},{beginKeywords:\"use\",end:/;/,contains:[a]},{begin:/=>/},t,n]}},Wr=X;Wr.registerLanguage(\"1c\",Z),Wr.registerLanguage(\"abnf\",ee),Wr.registerLanguage(\"accesslog\",ie),Wr.registerLanguage(\"actionscript\",se),Wr.registerLanguage(\"ada\",oe),Wr.registerLanguage(\"angelscript\",le),Wr.registerLanguage(\"apache\",ce),Wr.registerLanguage(\"applescript\",ue),Wr.registerLanguage(\"arcade\",pe),Wr.registerLanguage(\"arduino\",Se),Wr.registerLanguage(\"armasm\",be),Wr.registerLanguage(\"xml\",Re),Wr.registerLanguage(\"asciidoc\",he),Wr.registerLanguage(\"aspectj\",Ie),Wr.registerLanguage(\"autohotkey\",Ae),Wr.registerLanguage(\"autoit\",ye),Wr.registerLanguage(\"avrasm\",De),Wr.registerLanguage(\"awk\",Me),Wr.registerLanguage(\"axapta\",Le),Wr.registerLanguage(\"bash\",we),Wr.registerLanguage(\"basic\",Pe),Wr.registerLanguage(\"bnf\",ke),Wr.registerLanguage(\"brainfuck\",Ue),Wr.registerLanguage(\"c-like\",Ge),Wr.registerLanguage(\"c\",He),Wr.registerLanguage(\"cal\",Ve),Wr.registerLanguage(\"capnproto\",qe),Wr.registerLanguage(\"ceylon\",ze),Wr.registerLanguage(\"clean\",$e),Wr.registerLanguage(\"clojure\",We),Wr.registerLanguage(\"clojure-repl\",Qe),Wr.registerLanguage(\"cmake\",Ke),Wr.registerLanguage(\"coffeescript\",Je),Wr.registerLanguage(\"coq\",et),Wr.registerLanguage(\"cos\",tt),Wr.registerLanguage(\"cpp\",it),Wr.registerLanguage(\"crmsh\",rt),Wr.registerLanguage(\"crystal\",st),Wr.registerLanguage(\"csharp\",ot),Wr.registerLanguage(\"csp\",lt),Wr.registerLanguage(\"css\",gt),Wr.registerLanguage(\"d\",Et),Wr.registerLanguage(\"markdown\",bt),Wr.registerLanguage(\"dart\",Tt),Wr.registerLanguage(\"delphi\",ft),Wr.registerLanguage(\"diff\",Ct),Wr.registerLanguage(\"django\",Nt),Wr.registerLanguage(\"dns\",Rt),Wr.registerLanguage(\"dockerfile\",Ot),Wr.registerLanguage(\"dos\",ht),Wr.registerLanguage(\"dsconfig\",vt),Wr.registerLanguage(\"dts\",It),Wr.registerLanguage(\"dust\",At),Wr.registerLanguage(\"ebnf\",yt),Wr.registerLanguage(\"elixir\",Dt),Wr.registerLanguage(\"elm\",Mt),Wr.registerLanguage(\"ruby\",xt),Wr.registerLanguage(\"erb\",wt),Wr.registerLanguage(\"erlang-repl\",kt),Wr.registerLanguage(\"erlang\",Ut),Wr.registerLanguage(\"excel\",Ft),Wr.registerLanguage(\"fix\",Bt),Wr.registerLanguage(\"flix\",Gt),Wr.registerLanguage(\"fortran\",Ht),Wr.registerLanguage(\"fsharp\",Vt),Wr.registerLanguage(\"gams\",zt),Wr.registerLanguage(\"gauss\",$t),Wr.registerLanguage(\"gcode\",Wt),Wr.registerLanguage(\"gherkin\",Qt),Wr.registerLanguage(\"glsl\",Kt),Wr.registerLanguage(\"gml\",jt),Wr.registerLanguage(\"go\",Xt),Wr.registerLanguage(\"golo\",Zt),Wr.registerLanguage(\"gradle\",Jt),Wr.registerLanguage(\"groovy\",aa),Wr.registerLanguage(\"haml\",na),Wr.registerLanguage(\"handlebars\",sa),Wr.registerLanguage(\"haskell\",oa),Wr.registerLanguage(\"haxe\",la),Wr.registerLanguage(\"hsp\",ca),Wr.registerLanguage(\"htmlbars\",ua),Wr.registerLanguage(\"http\",ga),Wr.registerLanguage(\"hy\",Ea),Wr.registerLanguage(\"inform7\",Sa),Wr.registerLanguage(\"ini\",fa),Wr.registerLanguage(\"irpf90\",Na),Wr.registerLanguage(\"isbl\",Ra),Wr.registerLanguage(\"java\",Ia),Wr.registerLanguage(\"javascript\",xa),Wr.registerLanguage(\"jboss-cli\",wa),Wr.registerLanguage(\"json\",Pa),Wr.registerLanguage(\"julia\",ka),Wr.registerLanguage(\"julia-repl\",Ua),Wr.registerLanguage(\"kotlin\",Ya),Wr.registerLanguage(\"lasso\",Ha),Wr.registerLanguage(\"latex\",Va),Wr.registerLanguage(\"ldif\",qa),Wr.registerLanguage(\"leaf\",za),Wr.registerLanguage(\"less\",Za),Wr.registerLanguage(\"lisp\",Ja),Wr.registerLanguage(\"livecodeserver\",en),Wr.registerLanguage(\"livescript\",rn),Wr.registerLanguage(\"llvm\",on),Wr.registerLanguage(\"lsl\",ln),Wr.registerLanguage(\"lua\",cn),Wr.registerLanguage(\"makefile\",_n),Wr.registerLanguage(\"mathematica\",En),Wr.registerLanguage(\"matlab\",Sn),Wr.registerLanguage(\"maxima\",bn),Wr.registerLanguage(\"mel\",Tn),Wr.registerLanguage(\"mercury\",fn),Wr.registerLanguage(\"mipsasm\",Cn),Wr.registerLanguage(\"mizar\",Nn),Wr.registerLanguage(\"perl\",vn),Wr.registerLanguage(\"mojolicious\",In),Wr.registerLanguage(\"monkey\",An),Wr.registerLanguage(\"moonscript\",yn),Wr.registerLanguage(\"n1ql\",Dn),Wr.registerLanguage(\"nginx\",Mn),Wr.registerLanguage(\"nim\",Ln),Wr.registerLanguage(\"nix\",xn),Wr.registerLanguage(\"node-repl\",wn),Wr.registerLanguage(\"nsis\",Pn),Wr.registerLanguage(\"objectivec\",kn),Wr.registerLanguage(\"ocaml\",Un),Wr.registerLanguage(\"openscad\",Fn),Wr.registerLanguage(\"oxygene\",Bn),Wr.registerLanguage(\"parser3\",Gn),Wr.registerLanguage(\"pf\",Yn),Wr.registerLanguage(\"pgsql\",Hn),Wr.registerLanguage(\"php\",Vn),Wr.registerLanguage(\"php-template\",qn),Wr.registerLanguage(\"plaintext\",zn),Wr.registerLanguage(\"pony\",$n),Wr.registerLanguage(\"powershell\",Wn),Wr.registerLanguage(\"processing\",Qn),Wr.registerLanguage(\"profile\",Kn),Wr.registerLanguage(\"prolog\",jn),Wr.registerLanguage(\"properties\",Xn),Wr.registerLanguage(\"protobuf\",Zn),Wr.registerLanguage(\"puppet\",Jn),Wr.registerLanguage(\"purebasic\",ei),Wr.registerLanguage(\"python\",ai),Wr.registerLanguage(\"python-repl\",ni),Wr.registerLanguage(\"q\",ii),Wr.registerLanguage(\"qml\",si),Wr.registerLanguage(\"r\",li),Wr.registerLanguage(\"reasonml\",ci),Wr.registerLanguage(\"rib\",_i),Wr.registerLanguage(\"roboconf\",di),Wr.registerLanguage(\"routeros\",mi),Wr.registerLanguage(\"rsl\",ui),Wr.registerLanguage(\"ruleslanguage\",pi),Wr.registerLanguage(\"rust\",gi),Wr.registerLanguage(\"sas\",Ei),Wr.registerLanguage(\"scala\",Si),Wr.registerLanguage(\"scheme\",bi),Wr.registerLanguage(\"scilab\",Ti),Wr.registerLanguage(\"scss\",hi),Wr.registerLanguage(\"shell\",vi),Wr.registerLanguage(\"smali\",Ii),Wr.registerLanguage(\"smalltalk\",Ai),Wr.registerLanguage(\"sml\",yi),Wr.registerLanguage(\"sqf\",Di),Wr.registerLanguage(\"sql_more\",Mi),Wr.registerLanguage(\"sql\",Pi),Wr.registerLanguage(\"stan\",ki),Wr.registerLanguage(\"stata\",Ui),Wr.registerLanguage(\"step21\",Fi),Wr.registerLanguage(\"stylus\",qi),Wr.registerLanguage(\"subunit\",zi),Wr.registerLanguage(\"swift\",pr),Wr.registerLanguage(\"taggerscript\",gr),Wr.registerLanguage(\"yaml\",Er),Wr.registerLanguage(\"tap\",Sr),Wr.registerLanguage(\"tcl\",Tr),Wr.registerLanguage(\"thrift\",fr),Wr.registerLanguage(\"tp\",Cr),Wr.registerLanguage(\"twig\",Nr),Wr.registerLanguage(\"typescript\",yr),Wr.registerLanguage(\"vala\",Dr),Wr.registerLanguage(\"vbnet\",wr),Wr.registerLanguage(\"vbscript\",Fr),Wr.registerLanguage(\"vbscript-html\",Br),Wr.registerLanguage(\"verilog\",Gr),Wr.registerLanguage(\"vhdl\",Yr),Wr.registerLanguage(\"vim\",Hr),Wr.registerLanguage(\"x86asm\",Vr),Wr.registerLanguage(\"xl\",qr),Wr.registerLanguage(\"xquery\",zr),Wr.registerLanguage(\"zephir\",$r);var Qr=Wr;!function(e,t){var a,n=\"hljs-ln\",i=\"hljs-ln-code\",r=\"hljs-ln-n\",s=\"data-line-number\",o=/\\r\\n|\\r|\\n/g;function l(a){try{var n=t.querySelectorAll(\"code.hljs,code.nohighlight\");for(var i in n)n.hasOwnProperty(i)&&(n[i].classList.contains(\"nohljsln\")||c(n[i],a))}catch(a){e.console.error(\"LineNumbers error: \",a)}}function c(e,t){\"object\"==typeof e&&(e.innerHTML=_(e,t))}function _(e,t){var a,l,c=(a=e,{singleLine:function(e){return!!e.singleLine&&e.singleLine}(l=(l=t)||{}),startFrom:function(e,t){var a=1;isFinite(t.startFrom)&&(a=t.startFrom);var n=function(e,t){return e.hasAttribute(t)?e.getAttribute(t):null}(e,\"data-ln-start-from\");return null!==n&&(a=function(e,t){if(!e)return 1;var a=Number(e);return isFinite(a)?a:1}(n)),a}(a,l)});return function e(t){var a=t.childNodes;for(var n in a){var i;a.hasOwnProperty(n)&&(0<((i=a[n]).textContent.trim().match(o)||[]).length&&(0
{6}',[\"hljs-ln-line\",\"hljs-ln-numbers\",r,s,i,l+t.startFrom,0{1}',[n,o])}return e}(e.innerHTML,c)}function d(e){var t=e.className;if(/hljs-/.test(t)){for(var a=m(e.innerHTML),n=0,i=\"\";n{1}
\\n',[t,0{e.parentNode.classList.add(\"code-wrapper\");let a=e.querySelector('script[type=\"text/template\"]');a&&(e.textContent=a.innerHTML),e.hasAttribute(\"data-trim\")&&\"function\"==typeof e.innerHTML.trim&&(e.innerHTML=function(e){function t(e){return e.replace(/^[\\s\\uFEFF\\xA0]+/g,\"\")}function a(e){for(var t=e.split(\"\\n\"),a=0;a=0&&\"\"===t[a].trim();a--)t.splice(a,1);return t.join(\"\\n\")}return function(e){var n=a(e.innerHTML).split(\"\\n\"),i=n.reduce((function(e,a){return a.length>0&&t(a).length>0&&e>a.length-t(a).length?a.length-t(a).length:e}),Number.POSITIVE_INFINITY);return n.map((function(e,t){return e.slice(i)})).join(\"\\n\")}(e)}(e)),t.escapeHTML&&!e.hasAttribute(\"data-noescape\")&&(e.innerHTML=e.innerHTML.replace(//g,\">\")),e.addEventListener(\"focusout\",(function(e){Qr.highlightElement(e.currentTarget)}),!1)})),\"function\"==typeof t.beforeHighlight&&t.beforeHighlight(Qr),t.highlightOnLoad&&Array.from(e.getRevealElement().querySelectorAll(\"pre code\")).forEach((e=>{Kr.highlightBlock(e)})),e.on(\"pdf-ready\",(function(){[].slice.call(e.getRevealElement().querySelectorAll(\"pre code[data-line-numbers].current-fragment\")).forEach((function(e){Kr.scrollHighlightedLineIntoView(e,{},!0)}))}))},highlightBlock:function(e){if(Qr.highlightElement(e),0!==e.innerHTML.trim().length&&e.hasAttribute(\"data-line-numbers\")){Qr.lineNumbersBlock(e,{singleLine:!0});var t={currentBlock:e},a=Kr.deserializeHighlightSteps(e.getAttribute(\"data-line-numbers\"));if(a.length>1){var n=parseInt(e.getAttribute(\"data-fragment-index\"),10);(\"number\"!=typeof n||isNaN(n))&&(n=null),a.slice(1).forEach((function(a){var i=e.cloneNode(!0);i.setAttribute(\"data-line-numbers\",Kr.serializeHighlightSteps([a])),i.classList.add(\"fragment\"),e.parentNode.appendChild(i),Kr.highlightLines(i),\"number\"==typeof n?(i.setAttribute(\"data-fragment-index\",n),n+=1):i.removeAttribute(\"data-fragment-index\"),i.addEventListener(\"visible\",Kr.scrollHighlightedLineIntoView.bind(Kr,i,t)),i.addEventListener(\"hidden\",Kr.scrollHighlightedLineIntoView.bind(Kr,i.previousSibling,t))})),e.removeAttribute(\"data-fragment-index\"),e.setAttribute(\"data-line-numbers\",Kr.serializeHighlightSteps([a[0]]))}var i=\"function\"==typeof e.closest?e.closest(\"section:not(.stack)\"):null;if(i){var r=function(){Kr.scrollHighlightedLineIntoView(e,t,!0),i.removeEventListener(\"visible\",r)};i.addEventListener(\"visible\",r)}Kr.highlightLines(e)}},scrollHighlightedLineIntoView:function(e,t,a){cancelAnimationFrame(t.animationFrameID),t.currentBlock&&(e.scrollTop=t.currentBlock.scrollTop),t.currentBlock=e;var n=this.getHighlightedLineBounds(e),i=e.offsetHeight,r=getComputedStyle(e);i-=parseInt(r.paddingTop)+parseInt(r.paddingBottom);var s=e.scrollTop,o=n.top+(Math.min(n.bottom-n.top,i)-i)/2,l=e.querySelector(\".hljs-ln\");if(l&&(o+=l.offsetTop-parseInt(r.paddingTop)),o=Math.max(Math.min(o,e.scrollHeight-i),0),!0===a||s===o)e.scrollTop=o;else{if(e.scrollHeight<=i)return;var c=0,_=function(){c=Math.min(c+.02,1),e.scrollTop=s+(o-s)*Kr.easeInOutQuart(c),c<1&&(t.animationFrameID=requestAnimationFrame(_))};_()}},easeInOutQuart:function(e){return e<.5?8*e*e*e*e:1-8*--e*e*e*e},getHighlightedLineBounds:function(e){var t=e.querySelectorAll(\".highlight-line\");if(0===t.length)return{top:0,bottom:0};var a=t[0],n=t[t.length-1];return{top:a.offsetTop,bottom:n.offsetTop+n.offsetHeight}},highlightLines:function(e,t){var a=Kr.deserializeHighlightSteps(t||e.getAttribute(\"data-line-numbers\"));a.length&&a[0].forEach((function(t){var a=[];\"number\"==typeof t.end?a=[].slice.call(e.querySelectorAll(\"table tr:nth-child(n+\"+t.start+\"):nth-child(-n+\"+t.end+\")\")):\"number\"==typeof t.start&&(a=[].slice.call(e.querySelectorAll(\"table tr:nth-child(\"+t.start+\")\"))),a.length&&(a.forEach((function(e){e.classList.add(\"highlight-line\")})),e.classList.add(\"has-highlights\"))}))},deserializeHighlightSteps:function(e){return(e=(e=e.replace(/\\s/g,\"\")).split(Kr.HIGHLIGHT_STEP_DELIMITER)).map((function(e){return e.split(Kr.HIGHLIGHT_LINE_DELIMITER).map((function(e){if(/^[\\d-]+$/.test(e)){e=e.split(Kr.HIGHLIGHT_LINE_RANGE_DELIMITER);var t=parseInt(e[0],10),a=parseInt(e[1],10);return isNaN(a)?{start:t}:{start:t,end:a}}return{}}))}))},serializeHighlightSteps:function(e){return e.map((function(e){return e.map((function(e){return\"number\"==typeof e.end?e.start+Kr.HIGHLIGHT_LINE_RANGE_DELIMITER+e.end:\"number\"==typeof e.start?e.start:\"\"})).join(Kr.HIGHLIGHT_LINE_DELIMITER)})).join(Kr.HIGHLIGHT_STEP_DELIMITER)}};/* harmony default export */ __webpack_exports__[\"default\"] = (()=>Kr);\n\n\n//# sourceURL=webpack:///./node_modules/reveal.js/plugin/highlight/highlight.esm.js?"); + +/***/ }), + +/***/ "./node_modules/reveal.js/plugin/markdown/markdown.esm.js": +/*!****************************************************************!*\ + !*** ./node_modules/reveal.js/plugin/markdown/markdown.esm.js ***! + \****************************************************************/ +/*! exports provided: default */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +eval("__webpack_require__.r(__webpack_exports__);\nfunction e(){return{baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:\"\",highlight:null,langPrefix:\"language-\",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}let t={baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:\"\",highlight:null,langPrefix:\"language-\",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1};const n=/[&<>\"']/,r=/[&<>\"']/g,s=/[<>\"']|&(?!#?\\w+;)/,i=/[<>\"']|&(?!#?\\w+;)/g,l={\"&\":\"&\",\"<\":\"<\",\">\":\">\",'\"':\""\",\"'\":\"'\"},a=e=>l[e];function o(e,t){if(t){if(n.test(e))return e.replace(r,a)}else if(s.test(e))return e.replace(i,a);return e}const c=/&(#(?:\\d+)|(?:#x[0-9A-Fa-f]+)|(?:\\w+));?/gi;function h(e){return e.replace(c,((e,t)=>\"colon\"===(t=t.toLowerCase())?\":\":\"#\"===t.charAt(0)?\"x\"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):\"\"))}const p=/(^|[^\\[])\\^/g;function u(e,t){e=e.source||e,t=t||\"\";const n={replace:(t,r)=>(r=(r=r.source||r).replace(p,\"$1\"),e=e.replace(t,r),n),getRegex:()=>new RegExp(e,t)};return n}const g=/[^\\w:]/g,d=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function f(e,t,n){if(e){let e;try{e=decodeURIComponent(h(n)).replace(g,\"\").toLowerCase()}catch(e){return null}if(0===e.indexOf(\"javascript:\")||0===e.indexOf(\"vbscript:\")||0===e.indexOf(\"data:\"))return null}t&&!d.test(n)&&(n=function(e,t){k[\" \"+e]||(x.test(e)?k[\" \"+e]=e+\"/\":k[\" \"+e]=z(e,\"/\",!0));const n=-1===(e=k[\" \"+e]).indexOf(\":\");return\"//\"===t.substring(0,2)?n?t:e.replace(m,\"$1\")+t:\"/\"===t.charAt(0)?n?t:e.replace(b,\"$1\")+t:e+t}(t,n));try{n=encodeURI(n).replace(/%25/g,\"%\")}catch(e){return null}return n}const k={},x=/^[^:]+:\\/*[^/]*$/,m=/^([^:]+:)[\\s\\S]*$/,b=/^([^:]+:\\/*[^/]*)[\\s\\S]*$/;const w={exec:function(){}};function _(e){let t,n,r=1;for(;r{let r=!1,s=t;for(;--s>=0&&\"\\\\\"===n[s];)r=!r;return r?\"|\":\" |\"})).split(/ \\|/);let r=0;if(n[0].trim()||n.shift(),n.length>0&&!n[n.length-1].trim()&&n.pop(),n.length>t)n.splice(t);else for(;n.length1;)1&t&&(n+=e),t>>=1,e+=e;return n+e}function T(e,t,n,r){const s=t.href,i=t.title?o(t.title):null,l=e[1].replace(/\\\\([\\[\\]])/g,\"$1\");if(\"!\"!==e[0].charAt(0)){r.state.inLink=!0;const e={type:\"link\",raw:n,href:s,title:i,text:l,tokens:r.inlineTokens(l,[])};return r.state.inLink=!1,e}return{type:\"image\",raw:n,href:s,title:i,text:o(l)}}class A{constructor(e){this.options=e||t}space(e){const t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:\"space\",raw:t[0]}}code(e){const t=this.rules.block.code.exec(e);if(t){const e=t[0].replace(/^ {1,4}/gm,\"\");return{type:\"code\",raw:t[0],codeBlockStyle:\"indented\",text:this.options.pedantic?e:z(e,\"\\n\")}}}fences(e){const t=this.rules.block.fences.exec(e);if(t){const e=t[0],n=function(e,t){const n=e.match(/^(\\s+)(?:```)/);if(null===n)return t;const r=n[1];return t.split(\"\\n\").map((e=>{const t=e.match(/^\\s+/);if(null===t)return e;const[n]=t;return n.length>=r.length?e.slice(r.length):e})).join(\"\\n\")}(e,t[3]||\"\");return{type:\"code\",raw:e,lang:t[2]?t[2].trim():t[2],text:n}}}heading(e){const t=this.rules.block.heading.exec(e);if(t){let e=t[2].trim();if(/#$/.test(e)){const t=z(e,\"#\");this.options.pedantic?e=t.trim():t&&!/ $/.test(t)||(e=t.trim())}const n={type:\"heading\",raw:t[0],depth:t[1].length,text:e,tokens:[]};return this.lexer.inline(n.text,n.tokens),n}}hr(e){const t=this.rules.block.hr.exec(e);if(t)return{type:\"hr\",raw:t[0]}}blockquote(e){const t=this.rules.block.blockquote.exec(e);if(t){const e=t[0].replace(/^ *> ?/gm,\"\");return{type:\"blockquote\",raw:t[0],tokens:this.lexer.blockTokens(e,[]),text:e}}}list(e){let t=this.rules.block.list.exec(e);if(t){let n,r,s,i,l,a,o,c,h,p,u,g,d=t[1].trim();const f=d.length>1,k={type:\"list\",raw:\"\",ordered:f,start:f?+d.slice(0,-1):\"\",loose:!1,items:[]};d=f?`\\\\d{1,9}\\\\${d.slice(-1)}`:`\\\\${d}`,this.options.pedantic&&(d=f?d:\"[*+-]\");const x=new RegExp(`^( {0,3}${d})((?: [^\\\\n]*)?(?:\\\\n|$))`);for(;e&&(g=!1,t=x.exec(e))&&!this.rules.block.hr.test(e);){if(n=t[0],e=e.substring(n.length),c=t[2].split(\"\\n\",1)[0],h=e.split(\"\\n\",1)[0],this.options.pedantic?(i=2,u=c.trimLeft()):(i=t[2].search(/[^ ]/),i=i>4?1:i,u=c.slice(i),i+=t[1].length),a=!1,!c&&/^ *$/.test(h)&&(n+=h+\"\\n\",e=e.substring(h.length+1),g=!0),!g){const t=new RegExp(`^ {0,${Math.min(3,i-1)}}(?:[*+-]|\\\\d{1,9}[.)])`);for(;e&&(p=e.split(\"\\n\",1)[0],c=p,this.options.pedantic&&(c=c.replace(/^ {1,4}(?=( {4})*[^ ])/g,\" \")),!t.test(c));){if(c.search(/[^ ]/)>=i||!c.trim())u+=\"\\n\"+c.slice(i);else{if(a)break;u+=\"\\n\"+c}a||c.trim()||(a=!0),n+=p+\"\\n\",e=e.substring(p.length+1)}}k.loose||(o?k.loose=!0:/\\n *\\n *$/.test(n)&&(o=!0)),this.options.gfm&&(r=/^\\[[ xX]\\] /.exec(u),r&&(s=\"[ ] \"!==r[0],u=u.replace(/^\\[[ xX]\\] +/,\"\"))),k.items.push({type:\"list_item\",raw:n,task:!!r,checked:s,loose:!1,text:u}),k.raw+=n}k.items[k.items.length-1].raw=n.trimRight(),k.items[k.items.length-1].text=u.trimRight(),k.raw=k.raw.trimRight();const m=k.items.length;for(l=0;l\"space\"===e.type)),t=e.every((e=>{const t=e.raw.split(\"\");let n=0;for(const e of t)if(\"\\n\"===e&&(n+=1),n>1)return!0;return!1}));!k.loose&&e.length&&t&&(k.loose=!0,k.items[l].loose=!0)}return k}}html(e){const t=this.rules.block.html.exec(e);if(t){const e={type:\"html\",raw:t[0],pre:!this.options.sanitizer&&(\"pre\"===t[1]||\"script\"===t[1]||\"style\"===t[1]),text:t[0]};return this.options.sanitize&&(e.type=\"paragraph\",e.text=this.options.sanitizer?this.options.sanitizer(t[0]):o(t[0]),e.tokens=[],this.lexer.inline(e.text,e.tokens)),e}}def(e){const t=this.rules.block.def.exec(e);if(t){t[3]&&(t[3]=t[3].substring(1,t[3].length-1));return{type:\"def\",tag:t[1].toLowerCase().replace(/\\s+/g,\" \"),raw:t[0],href:t[2],title:t[3]}}}table(e){const t=this.rules.block.table.exec(e);if(t){const e={type:\"table\",header:y(t[1]).map((e=>({text:e}))),align:t[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),rows:t[3]&&t[3].trim()?t[3].replace(/\\n[ \\t]*$/,\"\").split(\"\\n\"):[]};if(e.header.length===e.align.length){e.raw=t[0];let n,r,s,i,l=e.align.length;for(n=0;n({text:e})));for(l=e.header.length,r=0;r/i.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\\s|>)/i.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\\/(pre|code|kbd|script)(\\s|>)/i.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:this.options.sanitize?\"text\":\"html\",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(t[0]):o(t[0]):t[0]}}link(e){const t=this.rules.inline.link.exec(e);if(t){const e=t[2].trim();if(!this.options.pedantic&&/^$/.test(e))return;const t=z(e.slice(0,-1),\"\\\\\");if((e.length-t.length)%2==0)return}else{const e=function(e,t){if(-1===e.indexOf(t[1]))return-1;const n=e.length;let r=0,s=0;for(;s-1){const n=(0===t[0].indexOf(\"!\")?5:4)+t[1].length+e;t[2]=t[2].substring(0,e),t[0]=t[0].substring(0,n).trim(),t[3]=\"\"}}let n=t[2],r=\"\";if(this.options.pedantic){const e=/^([^'\"]*[^\\s])\\s+(['\"])(.*)\\2/.exec(n);e&&(n=e[1],r=e[3])}else r=t[3]?t[3].slice(1,-1):\"\";return n=n.trim(),/^$/.test(e)?n.slice(1):n.slice(1,-1)),T(t,{href:n?n.replace(this.rules.inline._escapes,\"$1\"):n,title:r?r.replace(this.rules.inline._escapes,\"$1\"):r},t[0],this.lexer)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let e=(n[2]||n[1]).replace(/\\s+/g,\" \");if(e=t[e.toLowerCase()],!e||!e.href){const e=n[0].charAt(0);return{type:\"text\",raw:e,text:e}}return T(n,e,n[0],this.lexer)}}emStrong(e,t,n=\"\"){let r=this.rules.inline.emStrong.lDelim.exec(e);if(!r)return;if(r[3]&&n.match(/[\\p{L}\\p{N}]/u))return;const s=r[1]||r[2]||\"\";if(!s||s&&(\"\"===n||this.rules.inline.punctuation.exec(n))){const n=r[0].length-1;let s,i,l=n,a=0;const o=\"*\"===r[0][0]?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(o.lastIndex=0,t=t.slice(-1*e.length+n);null!=(r=o.exec(t));){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s)continue;if(i=s.length,r[3]||r[4]){l+=i;continue}if((r[5]||r[6])&&n%3&&!((n+i)%3)){a+=i;continue}if(l-=i,l>0)continue;if(i=Math.min(i,i+l+a),Math.min(n,i)%2){const t=e.slice(1,n+r.index+i);return{type:\"em\",raw:e.slice(0,n+r.index+i+1),text:t,tokens:this.lexer.inlineTokens(t,[])}}const t=e.slice(2,n+r.index+i-1);return{type:\"strong\",raw:e.slice(0,n+r.index+i+1),text:t,tokens:this.lexer.inlineTokens(t,[])}}}}codespan(e){const t=this.rules.inline.code.exec(e);if(t){let e=t[2].replace(/\\n/g,\" \");const n=/[^ ]/.test(e),r=/^ /.test(e)&&/ $/.test(e);return n&&r&&(e=e.substring(1,e.length-1)),e=o(e,!0),{type:\"codespan\",raw:t[0],text:e}}}br(e){const t=this.rules.inline.br.exec(e);if(t)return{type:\"br\",raw:t[0]}}del(e){const t=this.rules.inline.del.exec(e);if(t)return{type:\"del\",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2],[])}}autolink(e,t){const n=this.rules.inline.autolink.exec(e);if(n){let e,r;return\"@\"===n[2]?(e=o(this.options.mangle?t(n[1]):n[1]),r=\"mailto:\"+e):(e=o(n[1]),r=e),{type:\"link\",raw:n[0],text:e,href:r,tokens:[{type:\"text\",raw:e,text:e}]}}}url(e,t){let n;if(n=this.rules.inline.url.exec(e)){let e,r;if(\"@\"===n[2])e=o(this.options.mangle?t(n[0]):n[0]),r=\"mailto:\"+e;else{let t;do{t=n[0],n[0]=this.rules.inline._backpedal.exec(n[0])[0]}while(t!==n[0]);e=o(n[0]),r=\"www.\"===n[1]?\"http://\"+e:e}return{type:\"link\",raw:n[0],text:e,href:r,tokens:[{type:\"text\",raw:e,text:e}]}}}inlineText(e,t){const n=this.rules.inline.text.exec(e);if(n){let e;return e=this.lexer.state.inRawBlock?this.options.sanitize?this.options.sanitizer?this.options.sanitizer(n[0]):o(n[0]):n[0]:o(this.options.smartypants?t(n[0]):n[0]),{type:\"text\",raw:n[0],text:e}}}}const R={newline:/^(?: *(?:\\n|$))+/,code:/^( {4}[^\\n]+(?:\\n(?: *(?:\\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\\n]*\\n)|~{3,})([^\\n]*)\\n(?:|([\\s\\S]*?)\\n)(?: {0,3}\\1[~`]* *(?=\\n|$)|$)/,hr:/^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\\s|$)(.*)(?:\\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\\n]*)(?:\\n|$))+/,list:/^( {0,3}bull)( [^\\n]+?)?(?:\\n|$)/,html:\"^ {0,3}(?:<(script|pre|style|textarea)[\\\\s>][\\\\s\\\\S]*?(?:[^\\\\n]*\\\\n+|$)|comment[^\\\\n]*(\\\\n+|$)|<\\\\?[\\\\s\\\\S]*?(?:\\\\?>\\\\n*|$)|\\\\n*|$)|\\\\n*|$)|)[\\\\s\\\\S]*?(?:(?:\\\\n *)+\\\\n|$)|<(?!script|pre|style|textarea)([a-z][\\\\w-]*)(?:attribute)*? */?>(?=[ \\\\t]*(?:\\\\n|$))[\\\\s\\\\S]*?(?:(?:\\\\n *)+\\\\n|$)|(?=[ \\\\t]*(?:\\\\n|$))[\\\\s\\\\S]*?(?:(?:\\\\n *)+\\\\n|$))\",def:/^ {0,3}\\[(label)\\]: *(?:\\n *)?]+)>?(?:(?: +(?:\\n *)?| *\\n *)(title))? *(?:\\n+|$)/,table:w,lheading:/^([^\\n]+)\\n {0,3}(=+|-+) *(?:\\n+|$)/,_paragraph:/^([^\\n]+(?:\\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\\n)[^\\n]+)*)/,text:/^[^\\n]+/,_label:/(?!\\s*\\])(?:\\\\.|[^\\[\\]\\\\])+/,_title:/(?:\"(?:\\\\\"?|[^\"\\\\])*\"|'[^'\\n]*(?:\\n[^'\\n]+)*\\n?'|\\([^()]*\\))/};R.def=u(R.def).replace(\"label\",R._label).replace(\"title\",R._title).getRegex(),R.bullet=/(?:[*+-]|\\d{1,9}[.)])/,R.listItemStart=u(/^( *)(bull) */).replace(\"bull\",R.bullet).getRegex(),R.list=u(R.list).replace(/bull/g,R.bullet).replace(\"hr\",\"\\\\n+(?=\\\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\\\* *){3,})(?:\\\\n+|$))\").replace(\"def\",\"\\\\n+(?=\"+R.def.source+\")\").getRegex(),R._tag=\"address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul\",R._comment=/|$)/,R.html=u(R.html,\"i\").replace(\"comment\",R._comment).replace(\"tag\",R._tag).replace(\"attribute\",/ +[a-zA-Z:_][\\w.:-]*(?: *= *\"[^\"\\n]*\"| *= *'[^'\\n]*'| *= *[^\\s\"'=<>`]+)?/).getRegex(),R.paragraph=u(R._paragraph).replace(\"hr\",R.hr).replace(\"heading\",\" {0,3}#{1,6} \").replace(\"|lheading\",\"\").replace(\"|table\",\"\").replace(\"blockquote\",\" {0,3}>\").replace(\"fences\",\" {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n\").replace(\"list\",\" {0,3}(?:[*+-]|1[.)]) \").replace(\"html\",\")|<(?:script|pre|style|textarea|!--)\").replace(\"tag\",R._tag).getRegex(),R.blockquote=u(R.blockquote).replace(\"paragraph\",R.paragraph).getRegex(),R.normal=_({},R),R.gfm=_({},R.normal,{table:\"^ *([^\\\\n ].*\\\\|.*)\\\\n {0,3}(?:\\\\| *)?(:?-+:? *(?:\\\\| *:?-+:? *)*)(?:\\\\| *)?(?:\\\\n((?:(?! *\\\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\\\n|$))*)\\\\n*|$)\"}),R.gfm.table=u(R.gfm.table).replace(\"hr\",R.hr).replace(\"heading\",\" {0,3}#{1,6} \").replace(\"blockquote\",\" {0,3}>\").replace(\"code\",\" {4}[^\\\\n]\").replace(\"fences\",\" {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n\").replace(\"list\",\" {0,3}(?:[*+-]|1[.)]) \").replace(\"html\",\")|<(?:script|pre|style|textarea|!--)\").replace(\"tag\",R._tag).getRegex(),R.gfm.paragraph=u(R._paragraph).replace(\"hr\",R.hr).replace(\"heading\",\" {0,3}#{1,6} \").replace(\"|lheading\",\"\").replace(\"table\",R.gfm.table).replace(\"blockquote\",\" {0,3}>\").replace(\"fences\",\" {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n\").replace(\"list\",\" {0,3}(?:[*+-]|1[.)]) \").replace(\"html\",\")|<(?:script|pre|style|textarea|!--)\").replace(\"tag\",R._tag).getRegex(),R.pedantic=_({},R.normal,{html:u(\"^ *(?:comment *(?:\\\\n|\\\\s*$)|<(tag)[\\\\s\\\\S]+? *(?:\\\\n{2,}|\\\\s*$)|\\\\s]*)*?/?> *(?:\\\\n{2,}|\\\\s*$))\").replace(\"comment\",R._comment).replace(/tag/g,\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:|[^\\\\w\\\\s@]*@)\\\\b\").getRegex(),def:/^ *\\[([^\\]]+)\\]: *]+)>?(?: +([\"(][^\\n]+[\")]))? *(?:\\n+|$)/,heading:/^(#{1,6})(.*)(?:\\n+|$)/,fences:w,paragraph:u(R.normal._paragraph).replace(\"hr\",R.hr).replace(\"heading\",\" *#{1,6} *[^\\n]\").replace(\"lheading\",R.lheading).replace(\"blockquote\",\" {0,3}>\").replace(\"|fences\",\"\").replace(\"|list\",\"\").replace(\"|html\",\"\").getRegex()});const v={escape:/^\\\\([!\"#$%&'()*+,\\-./:;<=>?@\\[\\]\\\\^_`{|}~])/,autolink:/^<(scheme:[^\\s\\x00-\\x1f<>]*|email)>/,url:w,tag:\"^comment|^|^<[a-zA-Z][\\\\w-]*(?:attribute)*?\\\\s*/?>|^<\\\\?[\\\\s\\\\S]*?\\\\?>|^|^\",link:/^!?\\[(label)\\]\\(\\s*(href)(?:\\s+(title))?\\s*\\)/,reflink:/^!?\\[(label)\\]\\[(ref)\\]/,nolink:/^!?\\[(ref)\\](?:\\[\\])?/,reflinkSearch:\"reflink|nolink(?!\\\\()\",emStrong:{lDelim:/^(?:\\*+(?:([punct_])|[^\\s*]))|^_+(?:([punct*])|([^\\s_]))/,rDelimAst:/^[^_*]*?\\_\\_[^_*]*?\\*[^_*]*?(?=\\_\\_)|[punct_](\\*+)(?=[\\s]|$)|[^punct*_\\s](\\*+)(?=[punct_\\s]|$)|[punct_\\s](\\*+)(?=[^punct*_\\s])|[\\s](\\*+)(?=[punct_])|[punct_](\\*+)(?=[punct_])|[^punct*_\\s](\\*+)(?=[^punct*_\\s])/,rDelimUnd:/^[^_*]*?\\*\\*[^_*]*?\\_[^_*]*?(?=\\*\\*)|[punct*](\\_+)(?=[\\s]|$)|[^punct*_\\s](\\_+)(?=[punct*\\s]|$)|[punct*\\s](\\_+)(?=[^punct*_\\s])|[\\s](\\_+)(?=[punct*])|[punct*](\\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\\s\\S]*?[^`])\\1(?!`)/,br:/^( {2,}|\\\\)\\n(?!\\s*$)/,del:w,text:/^(`+|[^`])(?:(?= {2,}\\n)|[\\s\\S]*?(?:(?=[\\\\.5&&(n=\"x\"+n.toString(16)),r+=\"&#\"+n+\";\";return r}v._punctuation=\"!\\\"#$%&'()+\\\\-.,/:;<=>?@\\\\[\\\\]`^{|}~\",v.punctuation=u(v.punctuation).replace(/punctuation/g,v._punctuation).getRegex(),v.blockSkip=/\\[[^\\]]*?\\]\\([^\\)]*?\\)|`[^`]*?`|<[^>]*?>/g,v.escapedEmSt=/\\\\\\*|\\\\_/g,v._comment=u(R._comment).replace(\"(?:--\\x3e|$)\",\"--\\x3e\").getRegex(),v.emStrong.lDelim=u(v.emStrong.lDelim).replace(/punct/g,v._punctuation).getRegex(),v.emStrong.rDelimAst=u(v.emStrong.rDelimAst,\"g\").replace(/punct/g,v._punctuation).getRegex(),v.emStrong.rDelimUnd=u(v.emStrong.rDelimUnd,\"g\").replace(/punct/g,v._punctuation).getRegex(),v._escapes=/\\\\([!\"#$%&'()*+,\\-./:;<=>?@\\[\\]\\\\^_`{|}~])/g,v._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,v._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,v.autolink=u(v.autolink).replace(\"scheme\",v._scheme).replace(\"email\",v._email).getRegex(),v._attribute=/\\s+[a-zA-Z:_][\\w.:-]*(?:\\s*=\\s*\"[^\"]*\"|\\s*=\\s*'[^']*'|\\s*=\\s*[^\\s\"'=<>`]+)?/,v.tag=u(v.tag).replace(\"comment\",v._comment).replace(\"attribute\",v._attribute).getRegex(),v._label=/(?:\\[(?:\\\\.|[^\\[\\]\\\\])*\\]|\\\\.|`[^`]*`|[^\\[\\]\\\\`])*?/,v._href=/<(?:\\\\.|[^\\n<>\\\\])+>|[^\\s\\x00-\\x1f]*/,v._title=/\"(?:\\\\\"?|[^\"\\\\])*\"|'(?:\\\\'?|[^'\\\\])*'|\\((?:\\\\\\)?|[^)\\\\])*\\)/,v.link=u(v.link).replace(\"label\",v._label).replace(\"href\",v._href).replace(\"title\",v._title).getRegex(),v.reflink=u(v.reflink).replace(\"label\",v._label).replace(\"ref\",R._label).getRegex(),v.nolink=u(v.nolink).replace(\"ref\",R._label).getRegex(),v.reflinkSearch=u(v.reflinkSearch,\"g\").replace(\"reflink\",v.reflink).replace(\"nolink\",v.nolink).getRegex(),v.normal=_({},v),v.pedantic=_({},v.normal,{strong:{start:/^__|\\*\\*/,middle:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,endAst:/\\*\\*(?!\\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\\*/,middle:/^()\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)|^_(?=\\S)([\\s\\S]*?\\S)_(?!_)/,endAst:/\\*(?!\\*)/g,endUnd:/_(?!_)/g},link:u(/^!?\\[(label)\\]\\((.*?)\\)/).replace(\"label\",v._label).getRegex(),reflink:u(/^!?\\[(label)\\]\\s*\\[([^\\]]*)\\]/).replace(\"label\",v._label).getRegex()}),v.gfm=_({},v.normal,{escape:u(v.escape).replace(\"])\",\"~|])\").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\\/\\/|www\\.)(?:[a-zA-Z0-9\\-]+\\.?)+[^\\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_~()&]+|\\([^)]*\\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^(~~?)(?=[^\\s~])([\\s\\S]*?[^\\s~])\\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\\n)|(?=[a-zA-Z0-9.!#$%&'*+\\/=?_`{\\|}~-]+@)|[\\s\\S]*?(?:(?=[\\\\!!(n=r.call({lexer:this},e,t))&&(e=e.substring(n.raw.length),t.push(n),!0)))))if(n=this.tokenizer.space(e))e=e.substring(n.raw.length),1===n.raw.length&&t.length>0?t[t.length-1].raw+=\"\\n\":t.push(n);else if(n=this.tokenizer.code(e))e=e.substring(n.raw.length),r=t[t.length-1],!r||\"paragraph\"!==r.type&&\"text\"!==r.type?t.push(n):(r.raw+=\"\\n\"+n.raw,r.text+=\"\\n\"+n.text,this.inlineQueue[this.inlineQueue.length-1].src=r.text);else if(n=this.tokenizer.fences(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.heading(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.hr(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.blockquote(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.list(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.html(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.def(e))e=e.substring(n.raw.length),r=t[t.length-1],!r||\"paragraph\"!==r.type&&\"text\"!==r.type?this.tokens.links[n.tag]||(this.tokens.links[n.tag]={href:n.href,title:n.title}):(r.raw+=\"\\n\"+n.raw,r.text+=\"\\n\"+n.raw,this.inlineQueue[this.inlineQueue.length-1].src=r.text);else if(n=this.tokenizer.table(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.lheading(e))e=e.substring(n.raw.length),t.push(n);else{if(s=e,this.options.extensions&&this.options.extensions.startBlock){let t=1/0;const n=e.slice(1);let r;this.options.extensions.startBlock.forEach((function(e){r=e.call({lexer:this},n),\"number\"==typeof r&&r>=0&&(t=Math.min(t,r))})),t<1/0&&t>=0&&(s=e.substring(0,t+1))}if(this.state.top&&(n=this.tokenizer.paragraph(s)))r=t[t.length-1],i&&\"paragraph\"===r.type?(r.raw+=\"\\n\"+n.raw,r.text+=\"\\n\"+n.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=r.text):t.push(n),i=s.length!==e.length,e=e.substring(n.raw.length);else if(n=this.tokenizer.text(e))e=e.substring(n.raw.length),r=t[t.length-1],r&&\"text\"===r.type?(r.raw+=\"\\n\"+n.raw,r.text+=\"\\n\"+n.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=r.text):t.push(n);else if(e){const t=\"Infinite loop on byte: \"+e.charCodeAt(0);if(this.options.silent){console.error(t);break}throw new Error(t)}}return this.state.top=!0,t}inline(e,t){this.inlineQueue.push({src:e,tokens:t})}inlineTokens(e,t=[]){let n,r,s,i,l,a,o=e;if(this.tokens.links){const e=Object.keys(this.tokens.links);if(e.length>0)for(;null!=(i=this.tokenizer.rules.inline.reflinkSearch.exec(o));)e.includes(i[0].slice(i[0].lastIndexOf(\"[\")+1,-1))&&(o=o.slice(0,i.index)+\"[\"+$(\"a\",i[0].length-2)+\"]\"+o.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(i=this.tokenizer.rules.inline.blockSkip.exec(o));)o=o.slice(0,i.index)+\"[\"+$(\"a\",i[0].length-2)+\"]\"+o.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;null!=(i=this.tokenizer.rules.inline.escapedEmSt.exec(o));)o=o.slice(0,i.index)+\"++\"+o.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex);for(;e;)if(l||(a=\"\"),l=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some((r=>!!(n=r.call({lexer:this},e,t))&&(e=e.substring(n.raw.length),t.push(n),!0)))))if(n=this.tokenizer.escape(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.tag(e))e=e.substring(n.raw.length),r=t[t.length-1],r&&\"text\"===n.type&&\"text\"===r.type?(r.raw+=n.raw,r.text+=n.text):t.push(n);else if(n=this.tokenizer.link(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(n.raw.length),r=t[t.length-1],r&&\"text\"===n.type&&\"text\"===r.type?(r.raw+=n.raw,r.text+=n.text):t.push(n);else if(n=this.tokenizer.emStrong(e,o,a))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.codespan(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.br(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.del(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.autolink(e,I))e=e.substring(n.raw.length),t.push(n);else if(this.state.inLink||!(n=this.tokenizer.url(e,I))){if(s=e,this.options.extensions&&this.options.extensions.startInline){let t=1/0;const n=e.slice(1);let r;this.options.extensions.startInline.forEach((function(e){r=e.call({lexer:this},n),\"number\"==typeof r&&r>=0&&(t=Math.min(t,r))})),t<1/0&&t>=0&&(s=e.substring(0,t+1))}if(n=this.tokenizer.inlineText(s,E))e=e.substring(n.raw.length),\"_\"!==n.raw.slice(-1)&&(a=n.raw.slice(-1)),l=!0,r=t[t.length-1],r&&\"text\"===r.type?(r.raw+=n.raw,r.text+=n.text):t.push(n);else if(e){const t=\"Infinite loop on byte: \"+e.charCodeAt(0);if(this.options.silent){console.error(t);break}throw new Error(t)}}else e=e.substring(n.raw.length),t.push(n);return t}}class L{constructor(e){this.options=e||t}code(e,t,n){const r=(t||\"\").match(/\\S*/)[0];if(this.options.highlight){const t=this.options.highlight(e,r);null!=t&&t!==e&&(n=!0,e=t)}return e=e.replace(/\\n$/,\"\")+\"\\n\",r?'
'+(n?e:o(e,!0))+\"
\\n\":\"
\"+(n?e:o(e,!0))+\"
\\n\"}blockquote(e){return\"
\\n\"+e+\"
\\n\"}html(e){return e}heading(e,t,n,r){return this.options.headerIds?\"'+e+\"\\n\":\"\"+e+\"\\n\"}hr(){return this.options.xhtml?\"
\\n\":\"
\\n\"}list(e,t,n){const r=t?\"ol\":\"ul\";return\"<\"+r+(t&&1!==n?' start=\"'+n+'\"':\"\")+\">\\n\"+e+\"\\n\"}listitem(e){return\"
  • \"+e+\"
  • \\n\"}checkbox(e){return\" \"}paragraph(e){return\"

    \"+e+\"

    \\n\"}table(e,t){return t&&(t=\"\"+t+\"\"),\"\\n\\n\"+e+\"\\n\"+t+\"
    \\n\"}tablerow(e){return\"\\n\"+e+\"\\n\"}tablecell(e,t){const n=t.header?\"th\":\"td\";return(t.align?\"<\"+n+' align=\"'+t.align+'\">':\"<\"+n+\">\")+e+\"\\n\"}strong(e){return\"\"+e+\"\"}em(e){return\"\"+e+\"\"}codespan(e){return\"\"+e+\"\"}br(){return this.options.xhtml?\"
    \":\"
    \"}del(e){return\"\"+e+\"\"}link(e,t,n){if(null===(e=f(this.options.sanitize,this.options.baseUrl,e)))return n;let r='\"+n+\"\",r}image(e,t,n){if(null===(e=f(this.options.sanitize,this.options.baseUrl,e)))return n;let r='\"'+n+'\"';return\":\">\",r}text(e){return e}}class C{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}html(e){return e}text(e){return e}link(e,t,n){return\"\"+n}image(e,t,n){return\"\"+n}br(){return\"\"}}class Z{constructor(){this.seen={}}serialize(e){return e.toLowerCase().trim().replace(/<[!\\/a-z].*?>/gi,\"\").replace(/[\\u2000-\\u206F\\u2E00-\\u2E7F\\\\'!\"#$%&()*+,./:;<=>?@[\\]^`{|}~]/g,\"\").replace(/\\s/g,\"-\")}getNextSafeSlug(e,t){let n=e,r=0;if(this.seen.hasOwnProperty(n)){r=this.seen[e];do{r++,n=e+\"-\"+r}while(this.seen.hasOwnProperty(n))}return t||(this.seen[e]=r,this.seen[n]=0),n}slug(e,t={}){const n=this.serialize(e);return this.getNextSafeSlug(n,t.dryrun)}}class O{constructor(e){this.options=e||t,this.options.renderer=this.options.renderer||new L,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new C,this.slugger=new Z}static parse(e,t){return new O(t).parse(e)}static parseInline(e,t){return new O(t).parseInline(e)}parse(e,t=!0){let n,r,s,i,l,a,o,c,p,u,g,d,f,k,x,m,b,w,_,y=\"\";const z=e.length;for(n=0;n0&&\"paragraph\"===x.tokens[0].type?(x.tokens[0].text=w+\" \"+x.tokens[0].text,x.tokens[0].tokens&&x.tokens[0].tokens.length>0&&\"text\"===x.tokens[0].tokens[0].type&&(x.tokens[0].tokens[0].text=w+\" \"+x.tokens[0].tokens[0].text)):x.tokens.unshift({type:\"text\",text:w}):k+=w),k+=this.parse(x.tokens,f),p+=this.renderer.listitem(k,b,m);y+=this.renderer.list(p,g,d);continue;case\"html\":y+=this.renderer.html(u.text);continue;case\"paragraph\":y+=this.renderer.paragraph(this.parseInline(u.tokens));continue;case\"text\":for(p=u.tokens?this.parseInline(u.tokens):u.text;n+1{r(e.text,e.lang,(function(t,n){if(t)return i(t);null!=n&&n!==e.text&&(e.text=n,e.escaped=!0),l--,0===l&&i()}))}),0))})),void(0===l&&i())}try{const n=q.lex(e,t);return t.walkTokens&&N.walkTokens(n,t.walkTokens),O.parse(n,t)}catch(e){if(e.message+=\"\\nPlease report this to https://github.com/markedjs/marked.\",t.silent)return\"

    An error occurred:

    \"+o(e.message+\"\",!0)+\"
    \";throw e}}N.options=N.setOptions=function(e){var n;return _(N.defaults,e),n=N.defaults,t=n,N},N.getDefaults=e,N.defaults=t,N.use=function(...e){const t=_({},...e),n=N.defaults.extensions||{renderers:{},childTokens:{}};let r;e.forEach((e=>{if(e.extensions&&(r=!0,e.extensions.forEach((e=>{if(!e.name)throw new Error(\"extension name required\");if(e.renderer){const t=n.renderers?n.renderers[e.name]:null;n.renderers[e.name]=t?function(...n){let r=e.renderer.apply(this,n);return!1===r&&(r=t.apply(this,n)),r}:e.renderer}if(e.tokenizer){if(!e.level||\"block\"!==e.level&&\"inline\"!==e.level)throw new Error(\"extension level must be 'block' or 'inline'\");n[e.level]?n[e.level].unshift(e.tokenizer):n[e.level]=[e.tokenizer],e.start&&(\"block\"===e.level?n.startBlock?n.startBlock.push(e.start):n.startBlock=[e.start]:\"inline\"===e.level&&(n.startInline?n.startInline.push(e.start):n.startInline=[e.start]))}e.childTokens&&(n.childTokens[e.name]=e.childTokens)}))),e.renderer){const n=N.defaults.renderer||new L;for(const t in e.renderer){const r=n[t];n[t]=(...s)=>{let i=e.renderer[t].apply(n,s);return!1===i&&(i=r.apply(n,s)),i}}t.renderer=n}if(e.tokenizer){const n=N.defaults.tokenizer||new A;for(const t in e.tokenizer){const r=n[t];n[t]=(...s)=>{let i=e.tokenizer[t].apply(n,s);return!1===i&&(i=r.apply(n,s)),i}}t.tokenizer=n}if(e.walkTokens){const n=N.defaults.walkTokens;t.walkTokens=function(t){e.walkTokens.call(this,t),n&&n.call(this,t)}}r&&(t.extensions=n),N.setOptions(t)}))},N.walkTokens=function(e,t){for(const n of e)switch(t.call(N,n),n.type){case\"table\":for(const e of n.header)N.walkTokens(e.tokens,t);for(const e of n.rows)for(const n of e)N.walkTokens(n.tokens,t);break;case\"list\":N.walkTokens(n.items,t);break;default:N.defaults.extensions&&N.defaults.extensions.childTokens&&N.defaults.extensions.childTokens[n.type]?N.defaults.extensions.childTokens[n.type].forEach((function(e){N.walkTokens(n[e],t)})):n.tokens&&N.walkTokens(n.tokens,t)}},N.parseInline=function(e,t){if(null==e)throw new Error(\"marked.parseInline(): input parameter is undefined or null\");if(\"string\"!=typeof e)throw new Error(\"marked.parseInline(): input parameter is of type \"+Object.prototype.toString.call(e)+\", string expected\");S(t=_({},N.defaults,t||{}));try{const n=q.lexInline(e,t);return t.walkTokens&&N.walkTokens(n,t.walkTokens),O.parseInline(n,t)}catch(e){if(e.message+=\"\\nPlease report this to https://github.com/markedjs/marked.\",t.silent)return\"

    An error occurred:

    \"+o(e.message+\"\",!0)+\"
    \";throw e}},N.Parser=O,N.parser=O.parse,N.Renderer=L,N.TextRenderer=C,N.Lexer=q,N.lexer=q.lex,N.Tokenizer=A,N.Slugger=Z,N.parse=N;\n/*!\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\nconst D=/\\[([\\s\\d,|-]*)\\]/,P={\"&\":\"&\",\"<\":\"<\",\">\":\">\",'\"':\""\",\"'\":\"'\"};/* harmony default export */ __webpack_exports__[\"default\"] = (()=>{let e;function t(e){var t=(e.querySelector(\"[data-template]\")||e.querySelector(\"script\")||e).textContent,n=(t=t.replace(new RegExp(\"__SCRIPT_END__\",\"g\"),\"<\\/script>\")).match(/^\\n?(\\s*)/)[1].length,r=t.match(/^\\n?(\\t*)/)[1].length;return r>0?t=t.replace(new RegExp(\"\\\\n?\\\\t{\"+r+\"}\",\"g\"),\"\\n\"):n>1&&(t=t.replace(new RegExp(\"\\\\n? {\"+n+\"}\",\"g\"),\"\\n\")),t}function n(e){for(var t=e.attributes,n=[],r=0,s=t.length;r'+N(n[1].trim())+\"\"),' + + +