diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8f00ef2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+node_modules
+.env
+dist
\ No newline at end of file
diff --git a/README.md b/README.md
index 94a19de..398bf5e 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,4 @@
-# hacktivoverflow
\ No newline at end of file
+# hacktivoverflow
+
+### Documentation:
+https://documenter.getpostman.com/view/9584701/SWTD6vrZ
\ No newline at end of file
diff --git a/client/.browserslistrc b/client/.browserslistrc
new file mode 100644
index 0000000..d6471a3
--- /dev/null
+++ b/client/.browserslistrc
@@ -0,0 +1,2 @@
+> 1%
+last 2 versions
diff --git a/client/.editorconfig b/client/.editorconfig
new file mode 100644
index 0000000..7053c49
--- /dev/null
+++ b/client/.editorconfig
@@ -0,0 +1,5 @@
+[*.{js,jsx,ts,tsx,vue}]
+indent_style = space
+indent_size = 2
+trim_trailing_whitespace = true
+insert_final_newline = true
diff --git a/client/.eslintrc.js b/client/.eslintrc.js
new file mode 100644
index 0000000..98d0431
--- /dev/null
+++ b/client/.eslintrc.js
@@ -0,0 +1,17 @@
+module.exports = {
+ root: true,
+ env: {
+ node: true
+ },
+ 'extends': [
+ 'plugin:vue/essential',
+ '@vue/standard'
+ ],
+ rules: {
+ 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
+ },
+ parserOptions: {
+ parser: 'babel-eslint'
+ }
+}
diff --git a/client/.gitignore b/client/.gitignore
new file mode 100644
index 0000000..a0dddc6
--- /dev/null
+++ b/client/.gitignore
@@ -0,0 +1,21 @@
+.DS_Store
+node_modules
+/dist
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/client/README.md b/client/README.md
new file mode 100644
index 0000000..f827518
--- /dev/null
+++ b/client/README.md
@@ -0,0 +1,24 @@
+# client
+
+## Project setup
+```
+npm install
+```
+
+### Compiles and hot-reloads for development
+```
+npm run serve
+```
+
+### Compiles and minifies for production
+```
+npm run build
+```
+
+### Lints and fixes files
+```
+npm run lint
+```
+
+### Customize configuration
+See [Configuration Reference](https://cli.vuejs.org/config/).
diff --git a/client/babel.config.js b/client/babel.config.js
new file mode 100644
index 0000000..e955840
--- /dev/null
+++ b/client/babel.config.js
@@ -0,0 +1,5 @@
+module.exports = {
+ presets: [
+ '@vue/cli-plugin-babel/preset'
+ ]
+}
diff --git a/client/config/server.js b/client/config/server.js
new file mode 100644
index 0000000..0bdc35e
--- /dev/null
+++ b/client/config/server.js
@@ -0,0 +1,7 @@
+import axios from 'axios'
+
+const ax = axios.create({
+ baseURL: 'http://localhost:3000'
+})
+
+export default ax
\ No newline at end of file
diff --git a/client/package-lock.json b/client/package-lock.json
new file mode 100644
index 0000000..0be819b
--- /dev/null
+++ b/client/package-lock.json
@@ -0,0 +1,12027 @@
+{
+ "name": "client",
+ "version": "0.1.0",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
+ "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.8.3"
+ }
+ },
+ "@babel/compat-data": {
+ "version": "7.8.1",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.8.1.tgz",
+ "integrity": "sha512-Z+6ZOXvyOWYxJ50BwxzdhRnRsGST8Y3jaZgxYig575lTjVSs3KtJnmESwZegg6e2Dn0td1eDhoWlp1wI4BTCPw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.8.2",
+ "invariant": "^2.2.4",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/core": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.8.3.tgz",
+ "integrity": "sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.8.3",
+ "@babel/helpers": "^7.8.3",
+ "@babel/parser": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.0",
+ "lodash": "^4.17.13",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/generator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz",
+ "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3",
+ "jsesc": "^2.5.1",
+ "lodash": "^4.17.13",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-annotate-as-pure": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
+ "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
+ "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-explode-assignable-expression": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-call-delegate": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz",
+ "integrity": "sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-hoist-variables": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.3.tgz",
+ "integrity": "sha512-JLylPCsFjhLN+6uBSSh3iYdxKdeO9MNmoY96PE/99d8kyBFaXLORtAVhqN6iHa+wtPeqxKLghDOZry0+Aiw9Tw==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.8.1",
+ "browserslist": "^4.8.2",
+ "invariant": "^2.2.4",
+ "levenary": "^1.1.0",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/helper-create-class-features-plugin": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.3.tgz",
+ "integrity": "sha512-qmp4pD7zeTxsv0JNecSBsEmG1ei2MqwJq4YQcK3ZWm/0t07QstWfvuV/vm3Qt5xNMFETn2SZqpMx2MQzbtq+KA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-member-expression-to-functions": "^7.8.3",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3"
+ }
+ },
+ "@babel/helper-create-regexp-features-plugin": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz",
+ "integrity": "sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-regex": "^7.8.3",
+ "regexpu-core": "^4.6.0"
+ }
+ },
+ "@babel/helper-define-map": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
+ "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/helper-explode-assignable-expression": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
+ "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
+ "dev": true,
+ "requires": {
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz",
+ "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-get-function-arity": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
+ "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-hoist-variables": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
+ "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
+ "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
+ "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz",
+ "integrity": "sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-simple-access": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/helper-optimise-call-expression": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
+ "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
+ "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
+ "dev": true
+ },
+ "@babel/helper-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
+ "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/helper-remap-async-to-generator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
+ "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-wrap-function": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz",
+ "integrity": "sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-member-expression-to-functions": "^7.8.3",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-simple-access": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
+ "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-split-export-declaration": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
+ "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-wrap-function": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
+ "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helpers": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.8.3.tgz",
+ "integrity": "sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/highlight": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz",
+ "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.0.0",
+ "esutils": "^2.0.2",
+ "js-tokens": "^4.0.0"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz",
+ "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==",
+ "dev": true
+ },
+ "@babel/plugin-proposal-async-generator-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
+ "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-remap-async-to-generator": "^7.8.3",
+ "@babel/plugin-syntax-async-generators": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-class-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz",
+ "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-decorators": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz",
+ "integrity": "sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-decorators": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz",
+ "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz",
+ "integrity": "sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-decorators": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz",
+ "integrity": "sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
+ "integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
+ "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-arrow-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
+ "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-async-to-generator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz",
+ "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-remap-async-to-generator": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz",
+ "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-block-scoping": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
+ "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/plugin-transform-classes": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz",
+ "integrity": "sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-define-map": "^7.8.3",
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "globals": "^11.1.0"
+ }
+ },
+ "@babel/plugin-transform-computed-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz",
+ "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-destructuring": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz",
+ "integrity": "sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-dotall-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
+ "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-duplicate-keys": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz",
+ "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz",
+ "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-for-of": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz",
+ "integrity": "sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-function-name": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz",
+ "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz",
+ "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-member-expression-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz",
+ "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-modules-amd": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz",
+ "integrity": "sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.0"
+ }
+ },
+ "@babel/plugin-transform-modules-commonjs": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz",
+ "integrity": "sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-simple-access": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.0"
+ }
+ },
+ "@babel/plugin-transform-modules-systemjs": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz",
+ "integrity": "sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-hoist-variables": "^7.8.3",
+ "@babel/helper-module-transforms": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.0"
+ }
+ },
+ "@babel/plugin-transform-modules-umd": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz",
+ "integrity": "sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
+ "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-new-target": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz",
+ "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-object-super": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz",
+ "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-parameters": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz",
+ "integrity": "sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-call-delegate": "^7.8.3",
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-property-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz",
+ "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-regenerator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz",
+ "integrity": "sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA==",
+ "dev": true,
+ "requires": {
+ "regenerator-transform": "^0.14.0"
+ }
+ },
+ "@babel/plugin-transform-reserved-words": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz",
+ "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-runtime": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz",
+ "integrity": "sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "resolve": "^1.8.1",
+ "semver": "^5.5.1"
+ }
+ },
+ "@babel/plugin-transform-shorthand-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
+ "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
+ "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-sticky-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz",
+ "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-regex": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-template-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz",
+ "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-typeof-symbol": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.3.tgz",
+ "integrity": "sha512-3TrkKd4LPqm4jHs6nPtSDI/SV9Cm5PRJkHLUgTcqRQQTMAZ44ZaAdDZJtvWFSaRcvT0a1rTmJ5ZA5tDKjleF3g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-unicode-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz",
+ "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/preset-env": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.8.3.tgz",
+ "integrity": "sha512-Rs4RPL2KjSLSE2mWAx5/iCH+GC1ikKdxPrhnRS6PfFVaiZeom22VFKN4X8ZthyN61kAaR05tfXTbCvatl9WIQg==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.8.0",
+ "@babel/helper-compilation-targets": "^7.8.3",
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-proposal-async-generator-functions": "^7.8.3",
+ "@babel/plugin-proposal-dynamic-import": "^7.8.3",
+ "@babel/plugin-proposal-json-strings": "^7.8.3",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-proposal-object-rest-spread": "^7.8.3",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-proposal-optional-chaining": "^7.8.3",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
+ "@babel/plugin-syntax-async-generators": "^7.8.0",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0",
+ "@babel/plugin-syntax-json-strings": "^7.8.0",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0",
+ "@babel/plugin-syntax-top-level-await": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.8.3",
+ "@babel/plugin-transform-async-to-generator": "^7.8.3",
+ "@babel/plugin-transform-block-scoped-functions": "^7.8.3",
+ "@babel/plugin-transform-block-scoping": "^7.8.3",
+ "@babel/plugin-transform-classes": "^7.8.3",
+ "@babel/plugin-transform-computed-properties": "^7.8.3",
+ "@babel/plugin-transform-destructuring": "^7.8.3",
+ "@babel/plugin-transform-dotall-regex": "^7.8.3",
+ "@babel/plugin-transform-duplicate-keys": "^7.8.3",
+ "@babel/plugin-transform-exponentiation-operator": "^7.8.3",
+ "@babel/plugin-transform-for-of": "^7.8.3",
+ "@babel/plugin-transform-function-name": "^7.8.3",
+ "@babel/plugin-transform-literals": "^7.8.3",
+ "@babel/plugin-transform-member-expression-literals": "^7.8.3",
+ "@babel/plugin-transform-modules-amd": "^7.8.3",
+ "@babel/plugin-transform-modules-commonjs": "^7.8.3",
+ "@babel/plugin-transform-modules-systemjs": "^7.8.3",
+ "@babel/plugin-transform-modules-umd": "^7.8.3",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
+ "@babel/plugin-transform-new-target": "^7.8.3",
+ "@babel/plugin-transform-object-super": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.8.3",
+ "@babel/plugin-transform-property-literals": "^7.8.3",
+ "@babel/plugin-transform-regenerator": "^7.8.3",
+ "@babel/plugin-transform-reserved-words": "^7.8.3",
+ "@babel/plugin-transform-shorthand-properties": "^7.8.3",
+ "@babel/plugin-transform-spread": "^7.8.3",
+ "@babel/plugin-transform-sticky-regex": "^7.8.3",
+ "@babel/plugin-transform-template-literals": "^7.8.3",
+ "@babel/plugin-transform-typeof-symbol": "^7.8.3",
+ "@babel/plugin-transform-unicode-regex": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "browserslist": "^4.8.2",
+ "core-js-compat": "^3.6.2",
+ "invariant": "^2.2.2",
+ "levenary": "^1.1.0",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/runtime": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.3.tgz",
+ "integrity": "sha512-fVHx1rzEmwB130VTkLnxR+HmxcTjGzH12LYQcFFoBwakMd3aOMD4OsRN7tGG/UOYE2ektgFrS8uACAoRk1CY0w==",
+ "dev": true,
+ "requires": {
+ "regenerator-runtime": "^0.13.2"
+ }
+ },
+ "@babel/template": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz",
+ "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/parser": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/traverse": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz",
+ "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.8.3",
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/parser": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/types": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz",
+ "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@fortawesome/fontawesome-common-types": {
+ "version": "0.2.26",
+ "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.26.tgz",
+ "integrity": "sha512-CcM/fIFwZlRdiWG/25xE/wHbtyUuCtqoCTrr6BsWw7hH072fR++n4L56KPydAr3ANgMJMjT8v83ZFIsDc7kE+A=="
+ },
+ "@fortawesome/fontawesome-svg-core": {
+ "version": "1.2.26",
+ "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.26.tgz",
+ "integrity": "sha512-3Dfd/v2IztP1TxKOxZiB5+4kaOZK9mNy0KU1vVK7nFlPWz3gzxrCWB+AloQhQUoJ8HhGqbzjliK89Vl7PExGbw==",
+ "requires": {
+ "@fortawesome/fontawesome-common-types": "^0.2.26"
+ }
+ },
+ "@fortawesome/free-solid-svg-icons": {
+ "version": "5.12.0",
+ "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.12.0.tgz",
+ "integrity": "sha512-CnpsWs6GhTs9ekNB3d8rcO5HYqRkXbYKf2YNiAlTWbj5eVlPqsd/XH1F9If8jkcR1aegryAbln/qYeKVZzpM0g==",
+ "requires": {
+ "@fortawesome/fontawesome-common-types": "^0.2.26"
+ }
+ },
+ "@fortawesome/vue-fontawesome": {
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-0.1.9.tgz",
+ "integrity": "sha512-h/emhmZz+DfB2zOGLWawNwXq82UYhn9waTfUjLLmeaIqtnIyNt6kYlpQT/vzJjLZRDRvY2IEJAh1di5qKpKVpA=="
+ },
+ "@hapi/address": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz",
+ "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==",
+ "dev": true
+ },
+ "@hapi/bourne": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz",
+ "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==",
+ "dev": true
+ },
+ "@hapi/hoek": {
+ "version": "8.5.0",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.0.tgz",
+ "integrity": "sha512-7XYT10CZfPsH7j9F1Jmg1+d0ezOux2oM2GfArAzLwWe4mE2Dr3hVjsAL6+TFY49RRJlCdJDMw3nJsLFroTc8Kw==",
+ "dev": true
+ },
+ "@hapi/joi": {
+ "version": "15.1.1",
+ "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz",
+ "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==",
+ "dev": true,
+ "requires": {
+ "@hapi/address": "2.x.x",
+ "@hapi/bourne": "1.x.x",
+ "@hapi/hoek": "8.x.x",
+ "@hapi/topo": "3.x.x"
+ }
+ },
+ "@hapi/topo": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz",
+ "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==",
+ "dev": true,
+ "requires": {
+ "@hapi/hoek": "^8.3.0"
+ }
+ },
+ "@intervolga/optimize-cssnano-plugin": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz",
+ "integrity": "sha512-zN69TnSr0viRSU6cEDIcuPcP67QcpQ6uHACg58FiN9PDrU6SLyGW3MR4tiISbYxy1kDWAVPwD+XwQTWE5cigAA==",
+ "dev": true,
+ "requires": {
+ "cssnano": "^4.0.0",
+ "cssnano-preset-default": "^4.0.0",
+ "postcss": "^7.0.0"
+ }
+ },
+ "@mrmlnc/readdir-enhanced": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
+ "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
+ "dev": true,
+ "requires": {
+ "call-me-maybe": "^1.0.1",
+ "glob-to-regexp": "^0.3.0"
+ }
+ },
+ "@nodelib/fs.stat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
+ "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==",
+ "dev": true
+ },
+ "@soda/friendly-errors-webpack-plugin": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.1.tgz",
+ "integrity": "sha512-cWKrGaFX+rfbMrAxVv56DzhPNqOJPZuNIS2HGMELtgGzb+vsMzyig9mml5gZ/hr2BGtSLV+dP2LUEuAL8aG2mQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.1.3",
+ "error-stack-parser": "^2.0.0",
+ "string-width": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^2.2.1",
+ "escape-string-regexp": "^1.0.2",
+ "has-ansi": "^2.0.0",
+ "strip-ansi": "^3.0.0",
+ "supports-color": "^2.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+ "dev": true
+ }
+ }
+ },
+ "@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
+ "dev": true
+ },
+ "@types/events": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
+ "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
+ "dev": true
+ },
+ "@types/glob": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
+ "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
+ "dev": true,
+ "requires": {
+ "@types/events": "*",
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "@types/minimatch": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
+ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "13.5.1",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.5.1.tgz",
+ "integrity": "sha512-Jj2W7VWQ2uM83f8Ls5ON9adxN98MvyJsMSASYFuSvrov8RMRY64Ayay7KV35ph1TSGIJ2gG9ZVDdEq3c3zaydA==",
+ "dev": true
+ },
+ "@types/normalize-package-data": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
+ "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==",
+ "dev": true
+ },
+ "@types/q": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz",
+ "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==",
+ "dev": true
+ },
+ "@vue/babel-helper-vue-jsx-merge-props": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz",
+ "integrity": "sha512-6tyf5Cqm4m6v7buITuwS+jHzPlIPxbFzEhXR5JGZpbrvOcp1hiQKckd305/3C7C36wFekNTQSxAtgeM0j0yoUw==",
+ "dev": true
+ },
+ "@vue/babel-plugin-transform-vue-jsx": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz",
+ "integrity": "sha512-YfdaoSMvD1nj7+DsrwfTvTnhDXI7bsuh+Y5qWwvQXlD24uLgnsoww3qbiZvWf/EoviZMrvqkqN4CBw0W3BWUTQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.0.0",
+ "@babel/plugin-syntax-jsx": "^7.2.0",
+ "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
+ "html-tags": "^2.0.0",
+ "lodash.kebabcase": "^4.1.1",
+ "svg-tags": "^1.0.0"
+ }
+ },
+ "@vue/babel-preset-app": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.1.2.tgz",
+ "integrity": "sha512-M2vodPy1Wh0ZIlBf2MA3mhHvxuFp6dwx5nHxBSd4VpBdrgq4Jb0ECbGnNcH9RI2yNPfkoyiHmqOGDQoFGt+FUg==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.7.4",
+ "@babel/helper-module-imports": "^7.7.4",
+ "@babel/plugin-proposal-class-properties": "^7.7.4",
+ "@babel/plugin-proposal-decorators": "^7.7.4",
+ "@babel/plugin-syntax-dynamic-import": "^7.7.4",
+ "@babel/plugin-syntax-jsx": "^7.7.4",
+ "@babel/plugin-transform-runtime": "^7.7.4",
+ "@babel/preset-env": "^7.7.4",
+ "@babel/runtime": "^7.7.4",
+ "@vue/babel-preset-jsx": "^1.1.2",
+ "babel-plugin-dynamic-import-node": "^2.2.0",
+ "core-js": "^3.4.4",
+ "core-js-compat": "^3.4.4"
+ }
+ },
+ "@vue/babel-preset-jsx": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.1.2.tgz",
+ "integrity": "sha512-zDpVnFpeC9YXmvGIDSsKNdL7qCG2rA3gjywLYHPCKDT10erjxF4U+6ay9X6TW5fl4GsDlJp9bVfAVQAAVzxxvQ==",
+ "dev": true,
+ "requires": {
+ "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
+ "@vue/babel-plugin-transform-vue-jsx": "^1.1.2",
+ "@vue/babel-sugar-functional-vue": "^1.1.2",
+ "@vue/babel-sugar-inject-h": "^1.1.2",
+ "@vue/babel-sugar-v-model": "^1.1.2",
+ "@vue/babel-sugar-v-on": "^1.1.2"
+ }
+ },
+ "@vue/babel-sugar-functional-vue": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz",
+ "integrity": "sha512-YhmdJQSVEFF5ETJXzrMpj0nkCXEa39TvVxJTuVjzvP2rgKhdMmQzlJuMv/HpadhZaRVMCCF3AEjjJcK5q/cYzQ==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-jsx": "^7.2.0"
+ }
+ },
+ "@vue/babel-sugar-inject-h": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz",
+ "integrity": "sha512-VRSENdTvD5htpnVp7i7DNuChR5rVMcORdXjvv5HVvpdKHzDZAYiLSD+GhnhxLm3/dMuk8pSzV+k28ECkiN5m8w==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-jsx": "^7.2.0"
+ }
+ },
+ "@vue/babel-sugar-v-model": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz",
+ "integrity": "sha512-vLXPvNq8vDtt0u9LqFdpGM9W9IWDmCmCyJXuozlq4F4UYVleXJ2Fa+3JsnTZNJcG+pLjjfnEGHci2339Kj5sGg==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-jsx": "^7.2.0",
+ "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
+ "@vue/babel-plugin-transform-vue-jsx": "^1.1.2",
+ "camelcase": "^5.0.0",
+ "html-tags": "^2.0.0",
+ "svg-tags": "^1.0.0"
+ }
+ },
+ "@vue/babel-sugar-v-on": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz",
+ "integrity": "sha512-T8ZCwC8Jp2uRtcZ88YwZtZXe7eQrJcfRq0uTFy6ShbwYJyz5qWskRFoVsdTi9o0WEhmQXxhQUewodOSCUPVmsQ==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-jsx": "^7.2.0",
+ "@vue/babel-plugin-transform-vue-jsx": "^1.1.2",
+ "camelcase": "^5.0.0"
+ }
+ },
+ "@vue/cli-overlay": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-4.1.2.tgz",
+ "integrity": "sha512-d+joLTtthj6l1JnCeFyJRKoISBQeqKZQY0EIYnJBcPPR3/dEKctMRkh5Sy1MR0H1JQQIko9CPrFjT/NHFW48Mg==",
+ "dev": true
+ },
+ "@vue/cli-plugin-babel": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.1.2.tgz",
+ "integrity": "sha512-/j998Q16h8gbYcYf2sE+CYobCpIzDYtOJ76JuhJZnCfy5H8gh4g+x5fepbLs0gOW/cZ2OQxJFx7Jd/yT2/G/qQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.7.4",
+ "@vue/babel-preset-app": "^4.1.2",
+ "@vue/cli-shared-utils": "^4.1.2",
+ "babel-loader": "^8.0.6",
+ "cache-loader": "^4.1.0",
+ "thread-loader": "^2.1.3",
+ "webpack": "^4.0.0"
+ }
+ },
+ "@vue/cli-plugin-eslint": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.1.2.tgz",
+ "integrity": "sha512-j6Z6tyhas7AFBwSvQ8JdKPLfaakZbwmK0+Xk8H6BK1/GrEpSCsb8pzBV8faStbKCPUO9vlKEuO319kHypUTJ1g==",
+ "dev": true,
+ "requires": {
+ "@vue/cli-shared-utils": "^4.1.2",
+ "eslint-loader": "^2.1.2",
+ "globby": "^9.2.0",
+ "webpack": "^4.0.0",
+ "yorkie": "^2.0.0"
+ }
+ },
+ "@vue/cli-plugin-router": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-4.1.2.tgz",
+ "integrity": "sha512-P1OwZfskUzs8KoQDozT+TfSKREMB8NpJ34raor8CiXtM80pdaNU+mO1HLOvl9ckaOWbAgNrxFmANiSBvHzSo+w==",
+ "dev": true,
+ "requires": {
+ "@vue/cli-shared-utils": "^4.1.2"
+ }
+ },
+ "@vue/cli-plugin-vuex": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.1.2.tgz",
+ "integrity": "sha512-qsf8sfUUtTuFf24iB6vbdapvCTCt4FqLj7r66POutGWmBCTlPHsMaAXMaD2ZD53/hqr8QHd/557IUensSwj5wA==",
+ "dev": true
+ },
+ "@vue/cli-service": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.1.2.tgz",
+ "integrity": "sha512-ljJ3qoR5NNHuG0HPqQyfO3xa4Ti5zCSmHp0tDYxgiVz1vMDvzPXBhGBGsc2Y1HH71BUyx3Ei+H7mWdML/+Bm9Q==",
+ "dev": true,
+ "requires": {
+ "@intervolga/optimize-cssnano-plugin": "^1.0.5",
+ "@soda/friendly-errors-webpack-plugin": "^1.7.1",
+ "@vue/cli-overlay": "^4.1.2",
+ "@vue/cli-plugin-router": "^4.1.2",
+ "@vue/cli-plugin-vuex": "^4.1.2",
+ "@vue/cli-shared-utils": "^4.1.2",
+ "@vue/component-compiler-utils": "^3.0.2",
+ "@vue/preload-webpack-plugin": "^1.1.0",
+ "@vue/web-component-wrapper": "^1.2.0",
+ "acorn": "^6.1.1",
+ "acorn-walk": "^6.1.1",
+ "address": "^1.1.2",
+ "autoprefixer": "^9.7.2",
+ "browserslist": "^4.7.3",
+ "cache-loader": "^4.1.0",
+ "case-sensitive-paths-webpack-plugin": "^2.2.0",
+ "cli-highlight": "^2.1.4",
+ "clipboardy": "^2.0.0",
+ "cliui": "^5.0.0",
+ "copy-webpack-plugin": "^5.0.5",
+ "css-loader": "^3.1.0",
+ "cssnano": "^4.1.10",
+ "current-script-polyfill": "^1.0.0",
+ "debug": "^4.1.1",
+ "default-gateway": "^5.0.5",
+ "dotenv": "^8.2.0",
+ "dotenv-expand": "^5.1.0",
+ "file-loader": "^4.2.0",
+ "fs-extra": "^7.0.1",
+ "globby": "^9.2.0",
+ "hash-sum": "^1.0.2",
+ "html-webpack-plugin": "^3.2.0",
+ "launch-editor-middleware": "^2.2.1",
+ "lodash.defaultsdeep": "^4.6.1",
+ "lodash.mapvalues": "^4.6.0",
+ "lodash.transform": "^4.6.0",
+ "mini-css-extract-plugin": "^0.8.0",
+ "minimist": "^1.2.0",
+ "portfinder": "^1.0.25",
+ "postcss-loader": "^3.0.0",
+ "read-pkg": "^5.1.1",
+ "ssri": "^7.1.0",
+ "terser-webpack-plugin": "^2.2.1",
+ "thread-loader": "^2.1.3",
+ "url-loader": "^2.2.0",
+ "vue-loader": "^15.7.2",
+ "vue-style-loader": "^4.1.0",
+ "webpack": "^4.0.0",
+ "webpack-bundle-analyzer": "^3.6.0",
+ "webpack-chain": "^6.0.0",
+ "webpack-dev-server": "^3.9.0",
+ "webpack-merge": "^4.2.2"
+ },
+ "dependencies": {
+ "cacache": {
+ "version": "13.0.1",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz",
+ "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==",
+ "dev": true,
+ "requires": {
+ "chownr": "^1.1.2",
+ "figgy-pudding": "^3.5.1",
+ "fs-minipass": "^2.0.0",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.2.2",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^5.1.1",
+ "minipass": "^3.0.0",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.2",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "p-map": "^3.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.7.1",
+ "ssri": "^7.0.0",
+ "unique-filename": "^1.1.1"
+ }
+ },
+ "find-cache-dir": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.2.0.tgz",
+ "integrity": "sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.0",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz",
+ "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "ssri": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz",
+ "integrity": "sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==",
+ "dev": true,
+ "requires": {
+ "figgy-pudding": "^3.5.1",
+ "minipass": "^3.1.1"
+ }
+ },
+ "terser-webpack-plugin": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.3.tgz",
+ "integrity": "sha512-gWHkaGzGYjmDoYxksFZynWTzvXOAjQ5dd7xuTMYlv4zpWlLSb6v0QLSZjELzP5dMs1ox30O1BIPs9dgqlMHuLQ==",
+ "dev": true,
+ "requires": {
+ "cacache": "^13.0.1",
+ "find-cache-dir": "^3.2.0",
+ "jest-worker": "^25.1.0",
+ "p-limit": "^2.2.2",
+ "schema-utils": "^2.6.4",
+ "serialize-javascript": "^2.1.2",
+ "source-map": "^0.6.1",
+ "terser": "^4.4.3",
+ "webpack-sources": "^1.4.3"
+ }
+ }
+ }
+ },
+ "@vue/cli-shared-utils": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.1.2.tgz",
+ "integrity": "sha512-uQAVqxCWdL5ipZ0TPu6SVsdokQp4yHt8SzzpUGhq8TkW4vwalGddJAAJrqZHMl91ZTIJ4p4ixofmCaaJo5rSRA==",
+ "dev": true,
+ "requires": {
+ "@hapi/joi": "^15.0.1",
+ "chalk": "^2.4.2",
+ "execa": "^1.0.0",
+ "launch-editor": "^2.2.1",
+ "lru-cache": "^5.1.1",
+ "node-ipc": "^9.1.1",
+ "open": "^6.3.0",
+ "ora": "^3.4.0",
+ "request": "^2.87.0",
+ "request-promise-native": "^1.0.8",
+ "semver": "^6.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "@vue/component-compiler-utils": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.1.1.tgz",
+ "integrity": "sha512-+lN3nsfJJDGMNz7fCpcoYIORrXo0K3OTsdr8jCM7FuqdI4+70TY6gxY6viJ2Xi1clqyPg7LpeOWwjF31vSMmUw==",
+ "dev": true,
+ "requires": {
+ "consolidate": "^0.15.1",
+ "hash-sum": "^1.0.2",
+ "lru-cache": "^4.1.2",
+ "merge-source-map": "^1.1.0",
+ "postcss": "^7.0.14",
+ "postcss-selector-parser": "^6.0.2",
+ "prettier": "^1.18.2",
+ "source-map": "~0.6.1",
+ "vue-template-es2015-compiler": "^1.9.0"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
+ "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
+ "dev": true,
+ "requires": {
+ "pseudomap": "^1.0.2",
+ "yallist": "^2.1.2"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+ "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
+ "dev": true
+ }
+ }
+ },
+ "@vue/eslint-config-standard": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@vue/eslint-config-standard/-/eslint-config-standard-4.0.0.tgz",
+ "integrity": "sha512-bQghq1cw1BuMRHNhr3tRpAJx1tpGy0QtajQX873kLtA9YVuOIoXR7nAWnTN09bBHnSUh2N288vMsqPi2fI4Hzg==",
+ "dev": true,
+ "requires": {
+ "eslint-config-standard": "^12.0.0",
+ "eslint-plugin-import": "^2.14.0",
+ "eslint-plugin-node": "^8.0.0",
+ "eslint-plugin-promise": "^4.0.1",
+ "eslint-plugin-standard": "^4.0.0"
+ }
+ },
+ "@vue/preload-webpack-plugin": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.1.tgz",
+ "integrity": "sha512-8VCoJeeH8tCkzhkpfOkt+abALQkS11OIHhte5MBzYaKMTqK0A3ZAKEUVAffsOklhEv7t0yrQt696Opnu9oAx+w==",
+ "dev": true
+ },
+ "@vue/web-component-wrapper": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.2.0.tgz",
+ "integrity": "sha512-Xn/+vdm9CjuC9p3Ae+lTClNutrVhsXpzxvoTXXtoys6kVRX9FkueSUAqSWAyZntmVLlR4DosBV4pH8y5Z/HbUw==",
+ "dev": true
+ },
+ "@webassemblyjs/ast": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz",
+ "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/helper-module-context": "1.8.5",
+ "@webassemblyjs/helper-wasm-bytecode": "1.8.5",
+ "@webassemblyjs/wast-parser": "1.8.5"
+ }
+ },
+ "@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz",
+ "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-api-error": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz",
+ "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-buffer": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz",
+ "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-code-frame": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz",
+ "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/wast-printer": "1.8.5"
+ }
+ },
+ "@webassemblyjs/helper-fsm": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz",
+ "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-module-context": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz",
+ "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "mamacro": "^0.0.3"
+ }
+ },
+ "@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz",
+ "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-wasm-section": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz",
+ "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-buffer": "1.8.5",
+ "@webassemblyjs/helper-wasm-bytecode": "1.8.5",
+ "@webassemblyjs/wasm-gen": "1.8.5"
+ }
+ },
+ "@webassemblyjs/ieee754": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz",
+ "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==",
+ "dev": true,
+ "requires": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "@webassemblyjs/leb128": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz",
+ "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==",
+ "dev": true,
+ "requires": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/utf8": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz",
+ "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==",
+ "dev": true
+ },
+ "@webassemblyjs/wasm-edit": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz",
+ "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-buffer": "1.8.5",
+ "@webassemblyjs/helper-wasm-bytecode": "1.8.5",
+ "@webassemblyjs/helper-wasm-section": "1.8.5",
+ "@webassemblyjs/wasm-gen": "1.8.5",
+ "@webassemblyjs/wasm-opt": "1.8.5",
+ "@webassemblyjs/wasm-parser": "1.8.5",
+ "@webassemblyjs/wast-printer": "1.8.5"
+ }
+ },
+ "@webassemblyjs/wasm-gen": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz",
+ "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-wasm-bytecode": "1.8.5",
+ "@webassemblyjs/ieee754": "1.8.5",
+ "@webassemblyjs/leb128": "1.8.5",
+ "@webassemblyjs/utf8": "1.8.5"
+ }
+ },
+ "@webassemblyjs/wasm-opt": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz",
+ "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-buffer": "1.8.5",
+ "@webassemblyjs/wasm-gen": "1.8.5",
+ "@webassemblyjs/wasm-parser": "1.8.5"
+ }
+ },
+ "@webassemblyjs/wasm-parser": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz",
+ "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-api-error": "1.8.5",
+ "@webassemblyjs/helper-wasm-bytecode": "1.8.5",
+ "@webassemblyjs/ieee754": "1.8.5",
+ "@webassemblyjs/leb128": "1.8.5",
+ "@webassemblyjs/utf8": "1.8.5"
+ }
+ },
+ "@webassemblyjs/wast-parser": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz",
+ "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/floating-point-hex-parser": "1.8.5",
+ "@webassemblyjs/helper-api-error": "1.8.5",
+ "@webassemblyjs/helper-code-frame": "1.8.5",
+ "@webassemblyjs/helper-fsm": "1.8.5",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/wast-printer": {
+ "version": "1.8.5",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz",
+ "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/wast-parser": "1.8.5",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "dev": true
+ },
+ "@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "dev": true
+ },
+ "accepts": {
+ "version": "1.3.7",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+ "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+ "dev": true,
+ "requires": {
+ "mime-types": "~2.1.24",
+ "negotiator": "0.6.2"
+ }
+ },
+ "acorn": {
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz",
+ "integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==",
+ "dev": true
+ },
+ "acorn-jsx": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.1.0.tgz",
+ "integrity": "sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==",
+ "dev": true
+ },
+ "acorn-walk": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz",
+ "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==",
+ "dev": true
+ },
+ "address": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
+ "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==",
+ "dev": true
+ },
+ "aggregate-error": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz",
+ "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==",
+ "dev": true,
+ "requires": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ }
+ },
+ "ajv": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz",
+ "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-errors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
+ "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
+ "dev": true
+ },
+ "ajv-keywords": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz",
+ "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==",
+ "dev": true
+ },
+ "alphanum-sort": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
+ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
+ "dev": true
+ },
+ "ansi-colors": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==",
+ "dev": true
+ },
+ "ansi-escapes": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
+ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
+ "dev": true
+ },
+ "ansi-html": {
+ "version": "0.0.7",
+ "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz",
+ "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "any-promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
+ "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=",
+ "dev": true
+ },
+ "anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "requires": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ },
+ "dependencies": {
+ "normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "requires": {
+ "remove-trailing-separator": "^1.0.1"
+ }
+ }
+ }
+ },
+ "aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "arch": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz",
+ "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==",
+ "dev": true
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "arr-diff": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+ "dev": true
+ },
+ "arr-flatten": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
+ "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
+ "dev": true
+ },
+ "arr-union": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+ "dev": true
+ },
+ "array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
+ "dev": true
+ },
+ "array-includes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz",
+ "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0",
+ "is-string": "^1.0.5"
+ }
+ },
+ "array-union": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+ "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+ "dev": true,
+ "requires": {
+ "array-uniq": "^1.0.1"
+ }
+ },
+ "array-uniq": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+ "dev": true
+ },
+ "array-unique": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+ "dev": true
+ },
+ "array.prototype.flat": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz",
+ "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "asn1": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
+ "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
+ "dev": true,
+ "requires": {
+ "safer-buffer": "~2.1.0"
+ }
+ },
+ "asn1.js": {
+ "version": "4.10.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
+ "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "assert": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
+ "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
+ "dev": true,
+ "requires": {
+ "object-assign": "^4.1.1",
+ "util": "0.10.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
+ "dev": true
+ },
+ "util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.1"
+ }
+ }
+ }
+ },
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ },
+ "assign-symbols": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+ "dev": true
+ },
+ "astral-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
+ "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
+ "dev": true
+ },
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
+ "async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true
+ },
+ "async-limiter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
+ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
+ "dev": true
+ },
+ "asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
+ "dev": true
+ },
+ "atob": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+ "dev": true
+ },
+ "autoprefixer": {
+ "version": "9.7.4",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.4.tgz",
+ "integrity": "sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==",
+ "requires": {
+ "browserslist": "^4.8.3",
+ "caniuse-lite": "^1.0.30001020",
+ "chalk": "^2.4.2",
+ "normalize-range": "^0.1.2",
+ "num2fraction": "^1.2.2",
+ "postcss": "^7.0.26",
+ "postcss-value-parser": "^4.0.2"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz",
+ "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ=="
+ }
+ }
+ },
+ "aws-sign2": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
+ "dev": true
+ },
+ "aws4": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz",
+ "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==",
+ "dev": true
+ },
+ "axios": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz",
+ "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==",
+ "requires": {
+ "follow-redirects": "1.5.10"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "follow-redirects": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
+ "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
+ "requires": {
+ "debug": "=3.1.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ }
+ }
+ },
+ "babel-eslint": {
+ "version": "10.0.3",
+ "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.0.3.tgz",
+ "integrity": "sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "@babel/parser": "^7.0.0",
+ "@babel/traverse": "^7.0.0",
+ "@babel/types": "^7.0.0",
+ "eslint-visitor-keys": "^1.0.0",
+ "resolve": "^1.12.0"
+ }
+ },
+ "babel-loader": {
+ "version": "8.0.6",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz",
+ "integrity": "sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==",
+ "dev": true,
+ "requires": {
+ "find-cache-dir": "^2.0.0",
+ "loader-utils": "^1.0.2",
+ "mkdirp": "^0.5.1",
+ "pify": "^4.0.1"
+ }
+ },
+ "babel-plugin-dynamic-import-node": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz",
+ "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==",
+ "dev": true,
+ "requires": {
+ "object.assign": "^4.1.0"
+ }
+ },
+ "balanced-match": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+ },
+ "base": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "dev": true,
+ "requires": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "base64-js": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
+ "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==",
+ "dev": true
+ },
+ "batch": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+ "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
+ "dev": true
+ },
+ "bcrypt-pbkdf": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+ "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
+ "dev": true,
+ "requires": {
+ "tweetnacl": "^0.14.3"
+ }
+ },
+ "bfj": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz",
+ "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.5.5",
+ "check-types": "^8.0.3",
+ "hoopy": "^0.1.4",
+ "tryer": "^1.0.1"
+ }
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
+ "dev": true
+ },
+ "binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true
+ },
+ "bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "dev": true
+ },
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ },
+ "body-parser": {
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
+ "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.0",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "http-errors": "1.7.2",
+ "iconv-lite": "0.4.24",
+ "on-finished": "~2.3.0",
+ "qs": "6.7.0",
+ "raw-body": "2.4.0",
+ "type-is": "~1.6.17"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.7.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
+ "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
+ "dev": true
+ }
+ }
+ },
+ "bonjour": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
+ "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
+ "dev": true,
+ "requires": {
+ "array-flatten": "^2.1.0",
+ "deep-equal": "^1.0.1",
+ "dns-equal": "^1.0.0",
+ "dns-txt": "^2.0.2",
+ "multicast-dns": "^6.0.1",
+ "multicast-dns-service-types": "^1.1.0"
+ },
+ "dependencies": {
+ "array-flatten": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
+ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==",
+ "dev": true
+ }
+ }
+ },
+ "boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+ "dev": true
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
+ "dev": true
+ },
+ "browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "dev": true,
+ "requires": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "dev": true,
+ "requires": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "browserify-rsa": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
+ "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "randombytes": "^2.0.1"
+ }
+ },
+ "browserify-sign": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz",
+ "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.1",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.2",
+ "elliptic": "^6.0.0",
+ "inherits": "^2.0.1",
+ "parse-asn1": "^5.0.0"
+ }
+ },
+ "browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "dev": true,
+ "requires": {
+ "pako": "~1.0.5"
+ }
+ },
+ "browserslist": {
+ "version": "4.8.5",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.8.5.tgz",
+ "integrity": "sha512-4LMHuicxkabIB+n9874jZX/az1IaZ5a+EUuvD7KFOu9x/Bd5YHyO0DIz2ls/Kl8g0ItS4X/ilEgf4T1Br0lgSg==",
+ "requires": {
+ "caniuse-lite": "^1.0.30001022",
+ "electron-to-chromium": "^1.3.338",
+ "node-releases": "^1.1.46"
+ }
+ },
+ "buffer": {
+ "version": "4.9.2",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
+ "dev": true,
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4",
+ "isarray": "^1.0.0"
+ }
+ },
+ "buffer-from": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
+ "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
+ "dev": true
+ },
+ "buffer-indexof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
+ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==",
+ "dev": true
+ },
+ "buffer-json": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz",
+ "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==",
+ "dev": true
+ },
+ "buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
+ "dev": true
+ },
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
+ "dev": true
+ },
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
+ },
+ "cacache": {
+ "version": "12.0.3",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz",
+ "integrity": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.5.5",
+ "chownr": "^1.1.1",
+ "figgy-pudding": "^3.5.1",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.1.15",
+ "infer-owner": "^1.0.3",
+ "lru-cache": "^5.1.1",
+ "mississippi": "^3.0.0",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.6.3",
+ "ssri": "^6.0.1",
+ "unique-filename": "^1.1.1",
+ "y18n": "^4.0.0"
+ }
+ },
+ "cache-base": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "dev": true,
+ "requires": {
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
+ }
+ },
+ "cache-loader": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz",
+ "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==",
+ "dev": true,
+ "requires": {
+ "buffer-json": "^2.0.0",
+ "find-cache-dir": "^3.0.0",
+ "loader-utils": "^1.2.3",
+ "mkdirp": "^0.5.1",
+ "neo-async": "^2.6.1",
+ "schema-utils": "^2.0.0"
+ },
+ "dependencies": {
+ "find-cache-dir": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.2.0.tgz",
+ "integrity": "sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.0",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz",
+ "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "call-me-maybe": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
+ "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
+ "dev": true
+ },
+ "caller-callsite": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
+ "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
+ "dev": true,
+ "requires": {
+ "callsites": "^2.0.0"
+ }
+ },
+ "caller-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
+ "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
+ "dev": true,
+ "requires": {
+ "caller-callsite": "^2.0.0"
+ }
+ },
+ "callsites": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
+ "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
+ "dev": true
+ },
+ "camel-case": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
+ "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
+ "dev": true,
+ "requires": {
+ "no-case": "^2.2.0",
+ "upper-case": "^1.1.1"
+ }
+ },
+ "camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "dev": true
+ },
+ "camelcase-css": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
+ },
+ "caniuse-api": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001023",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001023.tgz",
+ "integrity": "sha512-C5TDMiYG11EOhVOA62W1p3UsJ2z4DsHtMBQtjzp3ZsUglcQn62WOUgW0y795c7A5uZ+GCEIvzkMatLIlAsbNTA=="
+ },
+ "case-sensitive-paths-webpack-plugin": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz",
+ "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==",
+ "dev": true
+ },
+ "caseless": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "chardet": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+ "dev": true
+ },
+ "check-types": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
+ "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==",
+ "dev": true
+ },
+ "chokidar": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
+ "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
+ "dev": true,
+ "requires": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "fsevents": "^1.2.7",
+ "glob-parent": "^3.1.0",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ }
+ },
+ "chownr": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz",
+ "integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==",
+ "dev": true
+ },
+ "chrome-trace-event": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz",
+ "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.9.0"
+ }
+ },
+ "ci-info": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
+ "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==",
+ "dev": true
+ },
+ "cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "class-utils": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ }
+ }
+ },
+ "clean-css": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
+ "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",
+ "dev": true,
+ "requires": {
+ "source-map": "~0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "dev": true
+ },
+ "cli-cursor": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
+ "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
+ "dev": true,
+ "requires": {
+ "restore-cursor": "^2.0.0"
+ }
+ },
+ "cli-highlight": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.4.tgz",
+ "integrity": "sha512-s7Zofobm20qriqDoU9sXptQx0t2R9PEgac92mENNm7xaEe1hn71IIMsXMK+6encA6WRCWWxIGQbipr3q998tlQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^3.0.0",
+ "highlight.js": "^9.6.0",
+ "mz": "^2.4.0",
+ "parse5": "^5.1.1",
+ "parse5-htmlparser2-tree-adapter": "^5.1.1",
+ "yargs": "^15.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "cli-spinners": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.2.0.tgz",
+ "integrity": "sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==",
+ "dev": true
+ },
+ "cli-width": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
+ "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
+ "dev": true
+ },
+ "clipboardy": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.1.0.tgz",
+ "integrity": "sha512-2pzOUxWcLlXWtn+Jd6js3o12TysNOOVes/aQfg+MT/35vrxWzedHlLwyoJpXjsFKWm95BTNEcMGD9+a7mKzZkQ==",
+ "dev": true,
+ "requires": {
+ "arch": "^2.1.1",
+ "execa": "^1.0.0"
+ }
+ },
+ "cliui": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
+ "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
+ "dev": true,
+ "requires": {
+ "string-width": "^3.1.0",
+ "strip-ansi": "^5.2.0",
+ "wrap-ansi": "^5.1.0"
+ },
+ "dependencies": {
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ },
+ "wrap-ansi": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.0",
+ "string-width": "^3.0.0",
+ "strip-ansi": "^5.0.0"
+ }
+ }
+ }
+ },
+ "clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+ "dev": true
+ },
+ "coa": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
+ "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
+ "dev": true,
+ "requires": {
+ "@types/q": "^1.5.1",
+ "chalk": "^2.4.1",
+ "q": "^1.1.2"
+ }
+ },
+ "code-point-at": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
+ "dev": true
+ },
+ "collection-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+ "dev": true,
+ "requires": {
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
+ }
+ },
+ "color": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz",
+ "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.1",
+ "color-string": "^1.5.2"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ },
+ "color-string": {
+ "version": "1.5.3",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
+ "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
+ "dev": true,
+ "requires": {
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
+ }
+ },
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dev": true,
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
+ "dev": true
+ },
+ "component-emitter": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
+ "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
+ "dev": true
+ },
+ "compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "dev": true,
+ "requires": {
+ "mime-db": ">= 1.43.0 < 2"
+ }
+ },
+ "compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
+ "dev": true
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ },
+ "concat-stream": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
+ }
+ },
+ "connect-history-api-fallback": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
+ "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
+ "dev": true
+ },
+ "console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
+ "dev": true
+ },
+ "consolidate": {
+ "version": "0.15.1",
+ "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz",
+ "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.1.1"
+ }
+ },
+ "constants-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
+ "dev": true
+ },
+ "contains-path": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
+ "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
+ "dev": true
+ },
+ "content-disposition": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
+ "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "5.1.2"
+ }
+ },
+ "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
+ },
+ "convert-source-map": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
+ "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.1"
+ }
+ },
+ "cookie": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
+ "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
+ "dev": true
+ },
+ "cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
+ "dev": true
+ },
+ "copy-concurrently": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "fs-write-stream-atomic": "^1.0.8",
+ "iferr": "^0.1.5",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.0"
+ }
+ },
+ "copy-descriptor": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+ "dev": true
+ },
+ "copy-webpack-plugin": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz",
+ "integrity": "sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==",
+ "dev": true,
+ "requires": {
+ "cacache": "^12.0.3",
+ "find-cache-dir": "^2.1.0",
+ "glob-parent": "^3.1.0",
+ "globby": "^7.1.1",
+ "is-glob": "^4.0.1",
+ "loader-utils": "^1.2.3",
+ "minimatch": "^3.0.4",
+ "normalize-path": "^3.0.0",
+ "p-limit": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^2.1.2",
+ "webpack-log": "^2.0.0"
+ },
+ "dependencies": {
+ "globby": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz",
+ "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=",
+ "dev": true,
+ "requires": {
+ "array-union": "^1.0.1",
+ "dir-glob": "^2.0.0",
+ "glob": "^7.1.2",
+ "ignore": "^3.3.5",
+ "pify": "^3.0.0",
+ "slash": "^1.0.0"
+ }
+ },
+ "ignore": {
+ "version": "3.3.10",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz",
+ "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==",
+ "dev": true
+ },
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ },
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ },
+ "slash": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
+ "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
+ "dev": true
+ }
+ }
+ },
+ "core-js": {
+ "version": "3.6.4",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz",
+ "integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw=="
+ },
+ "core-js-compat": {
+ "version": "3.6.4",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.4.tgz",
+ "integrity": "sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.8.3",
+ "semver": "7.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "dev": true
+ }
+ }
+ },
+ "core-util-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
+ "dev": true
+ },
+ "cosmiconfig": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
+ "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
+ "dev": true,
+ "requires": {
+ "import-fresh": "^2.0.0",
+ "is-directory": "^0.3.1",
+ "js-yaml": "^3.13.1",
+ "parse-json": "^4.0.0"
+ }
+ },
+ "create-ecdh": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
+ "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.0.0"
+ }
+ },
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "dev": true,
+ "requires": {
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
+ }
+ },
+ "css-color-names": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
+ "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=",
+ "dev": true
+ },
+ "css-declaration-sorter": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
+ "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.1",
+ "timsort": "^0.3.0"
+ }
+ },
+ "css-loader": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz",
+ "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "cssesc": "^3.0.0",
+ "icss-utils": "^4.1.1",
+ "loader-utils": "^1.2.3",
+ "normalize-path": "^3.0.0",
+ "postcss": "^7.0.23",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.1.1",
+ "postcss-modules-values": "^3.0.0",
+ "postcss-value-parser": "^4.0.2",
+ "schema-utils": "^2.6.0"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "postcss-value-parser": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz",
+ "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==",
+ "dev": true
+ }
+ }
+ },
+ "css-select": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
+ "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
+ "dev": true,
+ "requires": {
+ "boolbase": "^1.0.0",
+ "css-what": "^3.2.1",
+ "domutils": "^1.7.0",
+ "nth-check": "^1.0.2"
+ }
+ },
+ "css-select-base-adapter": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
+ "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==",
+ "dev": true
+ },
+ "css-tree": {
+ "version": "1.0.0-alpha.37",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
+ "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
+ "dev": true,
+ "requires": {
+ "mdn-data": "2.0.4",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "css-unit-converter": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz",
+ "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY="
+ },
+ "css-what": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz",
+ "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==",
+ "dev": true
+ },
+ "cssesc": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
+ "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
+ "dev": true
+ },
+ "cssnano": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz",
+ "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==",
+ "dev": true,
+ "requires": {
+ "cosmiconfig": "^5.0.0",
+ "cssnano-preset-default": "^4.0.7",
+ "is-resolvable": "^1.0.0",
+ "postcss": "^7.0.0"
+ }
+ },
+ "cssnano-preset-default": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz",
+ "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==",
+ "dev": true,
+ "requires": {
+ "css-declaration-sorter": "^4.0.1",
+ "cssnano-util-raw-cache": "^4.0.1",
+ "postcss": "^7.0.0",
+ "postcss-calc": "^7.0.1",
+ "postcss-colormin": "^4.0.3",
+ "postcss-convert-values": "^4.0.1",
+ "postcss-discard-comments": "^4.0.2",
+ "postcss-discard-duplicates": "^4.0.2",
+ "postcss-discard-empty": "^4.0.1",
+ "postcss-discard-overridden": "^4.0.1",
+ "postcss-merge-longhand": "^4.0.11",
+ "postcss-merge-rules": "^4.0.3",
+ "postcss-minify-font-values": "^4.0.2",
+ "postcss-minify-gradients": "^4.0.2",
+ "postcss-minify-params": "^4.0.2",
+ "postcss-minify-selectors": "^4.0.2",
+ "postcss-normalize-charset": "^4.0.1",
+ "postcss-normalize-display-values": "^4.0.2",
+ "postcss-normalize-positions": "^4.0.2",
+ "postcss-normalize-repeat-style": "^4.0.2",
+ "postcss-normalize-string": "^4.0.2",
+ "postcss-normalize-timing-functions": "^4.0.2",
+ "postcss-normalize-unicode": "^4.0.1",
+ "postcss-normalize-url": "^4.0.1",
+ "postcss-normalize-whitespace": "^4.0.2",
+ "postcss-ordered-values": "^4.1.2",
+ "postcss-reduce-initial": "^4.0.3",
+ "postcss-reduce-transforms": "^4.0.2",
+ "postcss-svgo": "^4.0.2",
+ "postcss-unique-selectors": "^4.0.1"
+ }
+ },
+ "cssnano-util-get-arguments": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
+ "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=",
+ "dev": true
+ },
+ "cssnano-util-get-match": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
+ "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=",
+ "dev": true
+ },
+ "cssnano-util-raw-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
+ "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "cssnano-util-same-parent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
+ "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==",
+ "dev": true
+ },
+ "csso": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.2.tgz",
+ "integrity": "sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg==",
+ "dev": true,
+ "requires": {
+ "css-tree": "1.0.0-alpha.37"
+ }
+ },
+ "current-script-polyfill": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/current-script-polyfill/-/current-script-polyfill-1.0.0.tgz",
+ "integrity": "sha1-8xz35PPiGLBybnOMqSoC00iO9hU=",
+ "dev": true
+ },
+ "cyclist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=",
+ "dev": true
+ },
+ "dashdash": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0"
+ }
+ },
+ "de-indent": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
+ "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=",
+ "dev": true
+ },
+ "debounce": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz",
+ "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg=="
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "decamelize": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+ "dev": true
+ },
+ "decode-uri-component": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
+ "dev": true
+ },
+ "deep-equal": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
+ "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
+ "dev": true,
+ "requires": {
+ "is-arguments": "^1.0.4",
+ "is-date-object": "^1.0.1",
+ "is-regex": "^1.0.4",
+ "object-is": "^1.0.1",
+ "object-keys": "^1.1.1",
+ "regexp.prototype.flags": "^1.2.0"
+ }
+ },
+ "deep-is": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
+ "dev": true
+ },
+ "deepmerge": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz",
+ "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==",
+ "dev": true
+ },
+ "default-gateway": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-5.0.5.tgz",
+ "integrity": "sha512-z2RnruVmj8hVMmAnEJMTIJNijhKCDiGjbLP+BHJFOT7ld3Bo5qcIBpVYDniqhbMIIf+jZDlkP2MkPXiQy/DBLA==",
+ "dev": true,
+ "requires": {
+ "execa": "^3.3.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz",
+ "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "execa": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz",
+ "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "p-finally": "^2.0.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "get-stream": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
+ "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==",
+ "dev": true
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.0.0"
+ }
+ },
+ "onetime": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
+ "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "p-finally": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz",
+ "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==",
+ "dev": true
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "defaults": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+ "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+ "dev": true,
+ "requires": {
+ "clone": "^1.0.2"
+ }
+ },
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "dev": true,
+ "requires": {
+ "object-keys": "^1.0.12"
+ }
+ },
+ "define-property": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
+ },
+ "dependencies": {
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "del": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz",
+ "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "^7.1.1",
+ "globby": "^6.1.0",
+ "is-path-cwd": "^2.0.0",
+ "is-path-in-cwd": "^2.0.0",
+ "p-map": "^2.0.0",
+ "pify": "^4.0.1",
+ "rimraf": "^2.6.3"
+ },
+ "dependencies": {
+ "globby": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
+ "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=",
+ "dev": true,
+ "requires": {
+ "array-union": "^1.0.1",
+ "glob": "^7.0.3",
+ "object-assign": "^4.0.1",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true
+ }
+ }
+ },
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+ "dev": true
+ },
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+ "dev": true
+ },
+ "des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+ "dev": true
+ },
+ "detect-node": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz",
+ "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==",
+ "dev": true
+ },
+ "diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
+ }
+ },
+ "dir-glob": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz",
+ "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==",
+ "dev": true,
+ "requires": {
+ "path-type": "^3.0.0"
+ }
+ },
+ "dns-equal": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
+ "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=",
+ "dev": true
+ },
+ "dns-packet": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz",
+ "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==",
+ "dev": true,
+ "requires": {
+ "ip": "^1.1.0",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "dns-txt": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
+ "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
+ "dev": true,
+ "requires": {
+ "buffer-indexof": "^1.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
+ "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2",
+ "isarray": "^1.0.0"
+ }
+ },
+ "dom-converter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
+ "dev": true,
+ "requires": {
+ "utila": "~0.4"
+ }
+ },
+ "dom-serializer": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
+ "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "entities": "^2.0.0"
+ },
+ "dependencies": {
+ "domelementtype": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
+ "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==",
+ "dev": true
+ }
+ }
+ },
+ "domain-browser": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
+ "dev": true
+ },
+ "domelementtype": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
+ "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
+ "dev": true
+ },
+ "domhandler": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
+ "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "1"
+ }
+ },
+ "domutils": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
+ "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
+ "dev": true,
+ "requires": {
+ "dom-serializer": "0",
+ "domelementtype": "1"
+ }
+ },
+ "dot-prop": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
+ "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
+ "dev": true,
+ "requires": {
+ "is-obj": "^1.0.0"
+ }
+ },
+ "dotenv": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
+ "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
+ "dev": true
+ },
+ "dotenv-expand": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
+ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==",
+ "dev": true
+ },
+ "dropzone": {
+ "version": "5.5.1",
+ "resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.5.1.tgz",
+ "integrity": "sha512-3VduRWLxx9hbVr42QieQN25mx/I61/mRdUSuxAmDGdDqZIN8qtP7tcKMa3KfpJjuGjOJGYYUzzeq6eGDnkzesA=="
+ },
+ "duplexer": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
+ "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=",
+ "dev": true
+ },
+ "duplexify": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "easy-stack": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.0.tgz",
+ "integrity": "sha1-EskbMIWjfwuqM26UhurEv5Tj54g=",
+ "dev": true
+ },
+ "ecc-jsbn": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+ "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
+ "dev": true,
+ "requires": {
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.1.0"
+ }
+ },
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+ "dev": true
+ },
+ "ejs": {
+ "version": "2.7.4",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz",
+ "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==",
+ "dev": true
+ },
+ "electron-to-chromium": {
+ "version": "1.3.341",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.341.tgz",
+ "integrity": "sha512-iezlV55/tan1rvdvt7yg7VHRSkt+sKfzQ16wTDqTbQqtl4+pSUkKPXpQHDvEt0c7gKcUHHwUbffOgXz6bn096g=="
+ },
+ "elliptic": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz",
+ "integrity": "sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.4.0",
+ "brorand": "^1.0.1",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.0"
+ }
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
+ "dev": true
+ },
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+ "dev": true
+ },
+ "end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "dev": true,
+ "requires": {
+ "once": "^1.4.0"
+ }
+ },
+ "enhanced-resolve": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz",
+ "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.5.0",
+ "tapable": "^1.0.0"
+ },
+ "dependencies": {
+ "memory-fs": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
+ "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ }
+ }
+ },
+ "entities": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz",
+ "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==",
+ "dev": true
+ },
+ "errno": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
+ "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
+ "dev": true,
+ "requires": {
+ "prr": "~1.0.1"
+ }
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "error-stack-parser": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
+ "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==",
+ "dev": true,
+ "requires": {
+ "stackframe": "^1.1.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.17.4",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz",
+ "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==",
+ "dev": true,
+ "requires": {
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1",
+ "is-callable": "^1.1.5",
+ "is-regex": "^1.0.5",
+ "object-inspect": "^1.7.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.0",
+ "string.prototype.trimleft": "^2.1.1",
+ "string.prototype.trimright": "^2.1.1"
+ }
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ },
+ "eslint": {
+ "version": "5.16.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz",
+ "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "ajv": "^6.9.1",
+ "chalk": "^2.1.0",
+ "cross-spawn": "^6.0.5",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "eslint-scope": "^4.0.3",
+ "eslint-utils": "^1.3.1",
+ "eslint-visitor-keys": "^1.0.0",
+ "espree": "^5.0.1",
+ "esquery": "^1.0.1",
+ "esutils": "^2.0.2",
+ "file-entry-cache": "^5.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob": "^7.1.2",
+ "globals": "^11.7.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "inquirer": "^6.2.2",
+ "js-yaml": "^3.13.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.3.0",
+ "lodash": "^4.17.11",
+ "minimatch": "^3.0.4",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.8.2",
+ "path-is-inside": "^1.0.2",
+ "progress": "^2.0.0",
+ "regexpp": "^2.0.1",
+ "semver": "^5.5.1",
+ "strip-ansi": "^4.0.0",
+ "strip-json-comments": "^2.0.1",
+ "table": "^5.2.3",
+ "text-table": "^0.2.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
+ "dev": true
+ },
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "import-fresh": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
+ "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ }
+ },
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "eslint-config-standard": {
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz",
+ "integrity": "sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ==",
+ "dev": true
+ },
+ "eslint-import-resolver-node": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz",
+ "integrity": "sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==",
+ "dev": true,
+ "requires": {
+ "debug": "^2.6.9",
+ "resolve": "^1.13.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "eslint-loader": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.2.1.tgz",
+ "integrity": "sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==",
+ "dev": true,
+ "requires": {
+ "loader-fs-cache": "^1.0.0",
+ "loader-utils": "^1.0.2",
+ "object-assign": "^4.0.1",
+ "object-hash": "^1.1.4",
+ "rimraf": "^2.6.1"
+ }
+ },
+ "eslint-module-utils": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz",
+ "integrity": "sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q==",
+ "dev": true,
+ "requires": {
+ "debug": "^2.6.9",
+ "pkg-dir": "^2.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
+ "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ }
+ }
+ }
+ },
+ "eslint-plugin-es": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz",
+ "integrity": "sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==",
+ "dev": true,
+ "requires": {
+ "eslint-utils": "^1.4.2",
+ "regexpp": "^2.0.1"
+ }
+ },
+ "eslint-plugin-import": {
+ "version": "2.20.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.0.tgz",
+ "integrity": "sha512-NK42oA0mUc8Ngn4kONOPsPB1XhbUvNHqF+g307dPV28aknPoiNnKLFd9em4nkswwepdF5ouieqv5Th/63U7YJQ==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.0.3",
+ "array.prototype.flat": "^1.2.1",
+ "contains-path": "^0.1.0",
+ "debug": "^2.6.9",
+ "doctrine": "1.5.0",
+ "eslint-import-resolver-node": "^0.3.2",
+ "eslint-module-utils": "^2.4.1",
+ "has": "^1.0.3",
+ "minimatch": "^3.0.4",
+ "object.values": "^1.1.0",
+ "read-pkg-up": "^2.0.0",
+ "resolve": "^1.12.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "eslint-plugin-node": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz",
+ "integrity": "sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w==",
+ "dev": true,
+ "requires": {
+ "eslint-plugin-es": "^1.3.1",
+ "eslint-utils": "^1.3.1",
+ "ignore": "^5.0.2",
+ "minimatch": "^3.0.4",
+ "resolve": "^1.8.1",
+ "semver": "^5.5.0"
+ },
+ "dependencies": {
+ "ignore": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz",
+ "integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-plugin-promise": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz",
+ "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==",
+ "dev": true
+ },
+ "eslint-plugin-standard": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz",
+ "integrity": "sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ==",
+ "dev": true
+ },
+ "eslint-plugin-vue": {
+ "version": "5.2.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-5.2.3.tgz",
+ "integrity": "sha512-mGwMqbbJf0+VvpGR5Lllq0PMxvTdrZ/ZPjmhkacrCHbubJeJOt+T6E3HUzAifa2Mxi7RSdJfC9HFpOeSYVMMIw==",
+ "dev": true,
+ "requires": {
+ "vue-eslint-parser": "^5.0.0"
+ }
+ },
+ "eslint-scope": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
+ "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.1.0",
+ "estraverse": "^4.1.1"
+ }
+ },
+ "eslint-utils": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
+ "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
+ "dev": true,
+ "requires": {
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "eslint-visitor-keys": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz",
+ "integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==",
+ "dev": true
+ },
+ "espree": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz",
+ "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==",
+ "dev": true,
+ "requires": {
+ "acorn": "^6.0.7",
+ "acorn-jsx": "^5.0.0",
+ "eslint-visitor-keys": "^1.0.0"
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "esquery": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz",
+ "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^4.0.0"
+ }
+ },
+ "esrecurse": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
+ "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^4.1.0"
+ }
+ },
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
+ "dev": true
+ },
+ "event-pubsub": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/event-pubsub/-/event-pubsub-4.3.0.tgz",
+ "integrity": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==",
+ "dev": true
+ },
+ "eventemitter3": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz",
+ "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==",
+ "dev": true
+ },
+ "events": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz",
+ "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==",
+ "dev": true
+ },
+ "eventsource": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz",
+ "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==",
+ "dev": true,
+ "requires": {
+ "original": "^1.0.0"
+ }
+ },
+ "evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "dev": true,
+ "requires": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ },
+ "expand-brackets": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+ "dev": true,
+ "requires": {
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "express": {
+ "version": "4.17.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
+ "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.7",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.19.0",
+ "content-disposition": "0.5.3",
+ "content-type": "~1.0.4",
+ "cookie": "0.4.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.1.2",
+ "fresh": "0.5.2",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.5",
+ "qs": "6.7.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.1.2",
+ "send": "0.17.1",
+ "serve-static": "1.14.1",
+ "setprototypeof": "1.1.1",
+ "statuses": "~1.5.0",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.7.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
+ "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
+ "dev": true
+ }
+ }
+ },
+ "extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+ "dev": true
+ },
+ "extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+ "dev": true,
+ "requires": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4"
+ }
+ }
+ }
+ },
+ "external-editor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+ "dev": true,
+ "requires": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ }
+ },
+ "extglob": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "dev": true,
+ "requires": {
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "extsprintf": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+ "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
+ "dev": true
+ },
+ "fast-deep-equal": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
+ "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==",
+ "dev": true
+ },
+ "fast-glob": {
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz",
+ "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==",
+ "dev": true,
+ "requires": {
+ "@mrmlnc/readdir-enhanced": "^2.2.1",
+ "@nodelib/fs.stat": "^1.1.2",
+ "glob-parent": "^3.1.0",
+ "is-glob": "^4.0.0",
+ "merge2": "^1.2.3",
+ "micromatch": "^3.1.10"
+ }
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "faye-websocket": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
+ "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=",
+ "dev": true,
+ "requires": {
+ "websocket-driver": ">=0.5.1"
+ }
+ },
+ "figgy-pudding": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz",
+ "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==",
+ "dev": true
+ },
+ "figures": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
+ "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^1.0.5"
+ }
+ },
+ "file-entry-cache": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
+ "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
+ "dev": true,
+ "requires": {
+ "flat-cache": "^2.0.1"
+ }
+ },
+ "file-loader": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz",
+ "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.2.3",
+ "schema-utils": "^2.5.0"
+ }
+ },
+ "file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "dev": true,
+ "optional": true
+ },
+ "filesize": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
+ "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ }
+ },
+ "find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^3.0.0"
+ }
+ },
+ "flat-cache": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
+ "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
+ "dev": true,
+ "requires": {
+ "flatted": "^2.0.0",
+ "rimraf": "2.6.3",
+ "write": "1.0.3"
+ },
+ "dependencies": {
+ "rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "flatted": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz",
+ "integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==",
+ "dev": true
+ },
+ "flush-write-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.3.6"
+ }
+ },
+ "follow-redirects": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.10.0.tgz",
+ "integrity": "sha512-4eyLK6s6lH32nOvLLwlIOnr9zrL8Sm+OvW4pVTJNoXeGzYIkHVf+pADQi+OJ0E67hiuSLezPVPyBcIZO50TmmQ==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "for-in": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
+ "dev": true
+ },
+ "forever-agent": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
+ "dev": true
+ },
+ "form-data": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+ "dev": true,
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "forwarded": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
+ "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=",
+ "dev": true
+ },
+ "fragment-cache": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+ "dev": true,
+ "requires": {
+ "map-cache": "^0.2.2"
+ }
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true
+ },
+ "from2": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+ "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
+ }
+ },
+ "fs-extra": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+ "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "fs-write-stream-atomic": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+ "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "iferr": "^0.1.5",
+ "imurmurhash": "^0.1.4",
+ "readable-stream": "1 || 2"
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+ },
+ "fsevents": {
+ "version": "1.2.11",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz",
+ "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "bindings": "^1.5.0",
+ "nan": "^2.12.1",
+ "node-pre-gyp": "*"
+ },
+ "dependencies": {
+ "abbrev": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "ansi-regex": {
+ "version": "2.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "aproba": {
+ "version": "1.2.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "are-we-there-yet": {
+ "version": "1.1.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^2.0.6"
+ }
+ },
+ "balanced-match": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "chownr": {
+ "version": "1.1.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "code-point-at": {
+ "version": "1.1.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "console-control-strings": {
+ "version": "1.1.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "core-util-is": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "debug": {
+ "version": "3.2.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "deep-extend": {
+ "version": "0.6.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "delegates": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "detect-libc": {
+ "version": "1.0.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "fs-minipass": {
+ "version": "1.2.7",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minipass": "^2.6.0"
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "gauge": {
+ "version": "2.7.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "aproba": "^1.0.3",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.0",
+ "object-assign": "^4.1.0",
+ "signal-exit": "^3.0.0",
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wide-align": "^1.1.0"
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "has-unicode": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "ignore-walk": {
+ "version": "3.0.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minimatch": "^3.0.4"
+ }
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "ini": {
+ "version": "1.3.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "number-is-nan": "^1.0.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "0.0.8",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "minipass": {
+ "version": "2.9.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safe-buffer": "^5.1.2",
+ "yallist": "^3.0.0"
+ }
+ },
+ "minizlib": {
+ "version": "1.3.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minipass": "^2.9.0"
+ }
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "needle": {
+ "version": "2.4.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "debug": "^3.2.6",
+ "iconv-lite": "^0.4.4",
+ "sax": "^1.2.4"
+ }
+ },
+ "node-pre-gyp": {
+ "version": "0.14.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "detect-libc": "^1.0.2",
+ "mkdirp": "^0.5.1",
+ "needle": "^2.2.1",
+ "nopt": "^4.0.1",
+ "npm-packlist": "^1.1.6",
+ "npmlog": "^4.0.2",
+ "rc": "^1.2.7",
+ "rimraf": "^2.6.1",
+ "semver": "^5.3.0",
+ "tar": "^4.4.2"
+ }
+ },
+ "nopt": {
+ "version": "4.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "abbrev": "1",
+ "osenv": "^0.1.4"
+ }
+ },
+ "npm-bundled": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "npm-normalize-package-bin": "^1.0.1"
+ }
+ },
+ "npm-normalize-package-bin": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "npm-packlist": {
+ "version": "1.4.7",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ignore-walk": "^3.0.1",
+ "npm-bundled": "^1.0.1"
+ }
+ },
+ "npmlog": {
+ "version": "4.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "are-we-there-yet": "~1.1.2",
+ "console-control-strings": "~1.1.0",
+ "gauge": "~2.7.3",
+ "set-blocking": "~2.0.0"
+ }
+ },
+ "number-is-nan": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "once": {
+ "version": "1.4.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "os-homedir": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "os-tmpdir": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "osenv": {
+ "version": "0.1.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
+ }
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "rc": {
+ "version": "1.2.8",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "deep-extend": "^0.6.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "1.2.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "readable-stream": {
+ "version": "2.3.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "sax": {
+ "version": "1.2.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "semver": {
+ "version": "5.7.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "signal-exit": {
+ "version": "3.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "string-width": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "strip-json-comments": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "tar": {
+ "version": "4.4.13",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "chownr": "^1.1.1",
+ "fs-minipass": "^1.2.5",
+ "minipass": "^2.8.6",
+ "minizlib": "^1.2.1",
+ "mkdirp": "^0.5.0",
+ "safe-buffer": "^5.1.2",
+ "yallist": "^3.0.3"
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "wide-align": {
+ "version": "1.1.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "string-width": "^1.0.2 || 2"
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "functional-red-black-tree": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
+ "dev": true
+ },
+ "gensync": {
+ "version": "1.0.0-beta.1",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
+ "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==",
+ "dev": true
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "get-value": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+ "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+ "dev": true
+ },
+ "getpass": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+ "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0"
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "requires": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ },
+ "dependencies": {
+ "is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.0"
+ }
+ }
+ }
+ },
+ "glob-to-regexp": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
+ "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
+ "dev": true
+ },
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true
+ },
+ "globby": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz",
+ "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "^7.1.1",
+ "array-union": "^1.0.2",
+ "dir-glob": "^2.2.2",
+ "fast-glob": "^2.2.6",
+ "glob": "^7.1.3",
+ "ignore": "^4.0.3",
+ "pify": "^4.0.1",
+ "slash": "^2.0.0"
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz",
+ "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ=="
+ },
+ "gzip-size": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
+ "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
+ "dev": true,
+ "requires": {
+ "duplexer": "^0.1.1",
+ "pify": "^4.0.1"
+ }
+ },
+ "handle-thing": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.0.tgz",
+ "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==",
+ "dev": true
+ },
+ "har-schema": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+ "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
+ "dev": true
+ },
+ "har-validator": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
+ "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.5.5",
+ "har-schema": "^2.0.0"
+ }
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-ansi": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ }
+ }
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ },
+ "has-symbols": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
+ "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
+ "dev": true
+ },
+ "has-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+ "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.6",
+ "has-values": "^1.0.0",
+ "isobject": "^3.0.0"
+ }
+ },
+ "has-values": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
+ "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+ "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "hash-base": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz",
+ "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "hash-sum": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz",
+ "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=",
+ "dev": true
+ },
+ "hash.js": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
+ "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
+ }
+ },
+ "he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true
+ },
+ "hex-color-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
+ "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
+ "dev": true
+ },
+ "highlight.js": {
+ "version": "9.18.0",
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.0.tgz",
+ "integrity": "sha512-A97kI1KAUzKoAiEoaGcf2O9YPS8nbDTCRFokaaeBhnqjQTvbAuAJrQMm21zw8s8xzaMtCQBtgbyGXLGxdxQyqQ==",
+ "dev": true
+ },
+ "hmac-drbg": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+ "dev": true,
+ "requires": {
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "hoopy": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
+ "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
+ "dev": true
+ },
+ "hosted-git-info": {
+ "version": "2.8.5",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz",
+ "integrity": "sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==",
+ "dev": true
+ },
+ "hpack.js": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
+ "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "obuf": "^1.0.0",
+ "readable-stream": "^2.0.1",
+ "wbuf": "^1.1.0"
+ }
+ },
+ "hsl-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz",
+ "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=",
+ "dev": true
+ },
+ "hsla-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
+ "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=",
+ "dev": true
+ },
+ "html-comment-regex": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz",
+ "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==",
+ "dev": true
+ },
+ "html-entities": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz",
+ "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=",
+ "dev": true
+ },
+ "html-minifier": {
+ "version": "3.5.21",
+ "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz",
+ "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==",
+ "dev": true,
+ "requires": {
+ "camel-case": "3.0.x",
+ "clean-css": "4.2.x",
+ "commander": "2.17.x",
+ "he": "1.2.x",
+ "param-case": "2.1.x",
+ "relateurl": "0.2.x",
+ "uglify-js": "3.4.x"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.17.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
+ "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
+ "dev": true
+ }
+ }
+ },
+ "html-tags": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz",
+ "integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=",
+ "dev": true
+ },
+ "html-webpack-plugin": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz",
+ "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=",
+ "dev": true,
+ "requires": {
+ "html-minifier": "^3.2.3",
+ "loader-utils": "^0.2.16",
+ "lodash": "^4.17.3",
+ "pretty-error": "^2.0.2",
+ "tapable": "^1.0.0",
+ "toposort": "^1.0.0",
+ "util.promisify": "1.0.0"
+ },
+ "dependencies": {
+ "big.js": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
+ "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
+ "dev": true
+ },
+ "json5": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
+ "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
+ "dev": true,
+ "requires": {
+ "big.js": "^3.1.3",
+ "emojis-list": "^2.0.0",
+ "json5": "^0.5.0",
+ "object-assign": "^4.0.1"
+ }
+ },
+ "util.promisify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
+ "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "object.getownpropertydescriptors": "^2.0.3"
+ }
+ }
+ }
+ },
+ "htmlparser2": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
+ "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^1.3.1",
+ "domhandler": "^2.3.0",
+ "domutils": "^1.5.1",
+ "entities": "^1.1.1",
+ "inherits": "^2.0.1",
+ "readable-stream": "^3.1.1"
+ },
+ "dependencies": {
+ "entities": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
+ "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.5.0.tgz",
+ "integrity": "sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "http-deceiver": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
+ "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=",
+ "dev": true
+ },
+ "http-errors": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
+ "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ }
+ }
+ },
+ "http-parser-js": {
+ "version": "0.4.10",
+ "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz",
+ "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=",
+ "dev": true
+ },
+ "http-proxy": {
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz",
+ "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==",
+ "dev": true,
+ "requires": {
+ "eventemitter3": "^4.0.0",
+ "follow-redirects": "^1.0.0",
+ "requires-port": "^1.0.0"
+ }
+ },
+ "http-proxy-middleware": {
+ "version": "0.19.1",
+ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz",
+ "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==",
+ "dev": true,
+ "requires": {
+ "http-proxy": "^1.17.0",
+ "is-glob": "^4.0.0",
+ "lodash": "^4.17.11",
+ "micromatch": "^3.1.10"
+ }
+ },
+ "http-signature": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+ "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
+ }
+ },
+ "https-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
+ "dev": true
+ },
+ "human-signals": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+ "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+ "dev": true
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dev": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "icss-utils": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
+ "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.14"
+ }
+ },
+ "ieee754": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
+ "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==",
+ "dev": true
+ },
+ "iferr": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
+ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
+ "dev": true
+ },
+ "ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true
+ },
+ "import-cwd": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
+ "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=",
+ "dev": true,
+ "requires": {
+ "import-from": "^2.1.0"
+ }
+ },
+ "import-fresh": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
+ "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
+ "dev": true,
+ "requires": {
+ "caller-path": "^2.0.0",
+ "resolve-from": "^3.0.0"
+ }
+ },
+ "import-from": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
+ "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^3.0.0"
+ }
+ },
+ "import-local": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz",
+ "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==",
+ "dev": true,
+ "requires": {
+ "pkg-dir": "^3.0.0",
+ "resolve-cwd": "^2.0.0"
+ }
+ },
+ "imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true
+ },
+ "indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "dev": true
+ },
+ "indexes-of": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
+ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc="
+ },
+ "infer-owner": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+ "dev": true
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "inquirer": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz",
+ "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==",
+ "dev": true,
+ "requires": {
+ "ansi-escapes": "^3.2.0",
+ "chalk": "^2.4.2",
+ "cli-cursor": "^2.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^2.0.0",
+ "lodash": "^4.17.12",
+ "mute-stream": "0.0.7",
+ "run-async": "^2.2.0",
+ "rxjs": "^6.4.0",
+ "string-width": "^2.1.0",
+ "strip-ansi": "^5.1.0",
+ "through": "^2.3.6"
+ },
+ "dependencies": {
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ }
+ }
+ },
+ "internal-ip": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
+ "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==",
+ "dev": true,
+ "requires": {
+ "default-gateway": "^4.2.0",
+ "ipaddr.js": "^1.9.0"
+ },
+ "dependencies": {
+ "default-gateway": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
+ "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
+ "dev": true,
+ "requires": {
+ "execa": "^1.0.0",
+ "ip-regex": "^2.1.0"
+ }
+ }
+ }
+ },
+ "invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "invert-kv": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
+ "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==",
+ "dev": true
+ },
+ "ip": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
+ "dev": true
+ },
+ "ip-regex": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
+ "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=",
+ "dev": true
+ },
+ "ipaddr.js": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz",
+ "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==",
+ "dev": true
+ },
+ "is-absolute-url": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
+ "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=",
+ "dev": true
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-arguments": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz",
+ "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==",
+ "dev": true
+ },
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "requires": {
+ "binary-extensions": "^1.0.0"
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-callable": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
+ "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
+ "dev": true
+ },
+ "is-ci": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
+ "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
+ "dev": true,
+ "requires": {
+ "ci-info": "^1.5.0"
+ }
+ },
+ "is-color-stop": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz",
+ "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=",
+ "dev": true,
+ "requires": {
+ "css-color-names": "^0.0.4",
+ "hex-color-regex": "^1.1.0",
+ "hsl-regex": "^1.0.0",
+ "hsla-regex": "^1.0.0",
+ "rgb-regex": "^1.0.1",
+ "rgba-regex": "^1.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
+ "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
+ "dev": true
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ }
+ }
+ },
+ "is-directory": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
+ "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=",
+ "dev": true
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "is-glob": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
+ "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-obj": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
+ "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
+ "dev": true
+ },
+ "is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "dev": true
+ },
+ "is-path-in-cwd": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz",
+ "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==",
+ "dev": true,
+ "requires": {
+ "is-path-inside": "^2.1.0"
+ }
+ },
+ "is-path-inside": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz",
+ "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==",
+ "dev": true,
+ "requires": {
+ "path-is-inside": "^1.0.2"
+ }
+ },
+ "is-plain-obj": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+ "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
+ "dev": true
+ },
+ "is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "is-promise": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
+ "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
+ "dev": true
+ },
+ "is-regex": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
+ "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-resolvable": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
+ "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
+ "dev": true
+ },
+ "is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+ "dev": true
+ },
+ "is-string": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
+ "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
+ "dev": true
+ },
+ "is-svg": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
+ "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
+ "dev": true,
+ "requires": {
+ "html-comment-regex": "^1.1.0"
+ }
+ },
+ "is-symbol": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
+ "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.1"
+ }
+ },
+ "is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+ "dev": true
+ },
+ "is-windows": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "dev": true
+ },
+ "is-wsl": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
+ "dev": true
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+ "dev": true
+ },
+ "isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
+ "dev": true
+ },
+ "isstream": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
+ "dev": true
+ },
+ "javascript-stringify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz",
+ "integrity": "sha512-yV+gqbd5vaOYjqlbk16EG89xB5udgjqQF3C5FAORDg4f/IS1Yc5ERCv5e/57yBcfJYw05V5JyIXabhwb75Xxow==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.1.0.tgz",
+ "integrity": "sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==",
+ "dev": true,
+ "requires": {
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "js-message": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/js-message/-/js-message-1.0.5.tgz",
+ "integrity": "sha1-IwDSSxrwjondCVvBpMnJz8uJLRU=",
+ "dev": true
+ },
+ "js-queue": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/js-queue/-/js-queue-2.0.0.tgz",
+ "integrity": "sha1-NiITz4YPRo8BJfxslqvBdCUx+Ug=",
+ "dev": true,
+ "requires": {
+ "easy-stack": "^1.0.0"
+ }
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
+ "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "jsbn": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+ "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
+ "dev": true
+ },
+ "jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true
+ },
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
+ "json-schema": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
+ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
+ "dev": true
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
+ "dev": true
+ },
+ "json-stringify-safe": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
+ "dev": true
+ },
+ "json3": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz",
+ "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==",
+ "dev": true
+ },
+ "json5": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz",
+ "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "jsprim": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
+ "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "1.0.0",
+ "extsprintf": "1.3.0",
+ "json-schema": "0.2.3",
+ "verror": "1.10.0"
+ }
+ },
+ "killable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz",
+ "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==",
+ "dev": true
+ },
+ "kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "dev": true
+ },
+ "launch-editor": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.2.1.tgz",
+ "integrity": "sha512-On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.3.0",
+ "shell-quote": "^1.6.1"
+ }
+ },
+ "launch-editor-middleware": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.2.1.tgz",
+ "integrity": "sha512-s0UO2/gEGiCgei3/2UN3SMuUj1phjQN8lcpnvgLSz26fAzNWPQ6Nf/kF5IFClnfU2ehp6LrmKdMU/beveO+2jg==",
+ "dev": true,
+ "requires": {
+ "launch-editor": "^2.2.1"
+ }
+ },
+ "lcid": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz",
+ "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==",
+ "dev": true,
+ "requires": {
+ "invert-kv": "^2.0.0"
+ }
+ },
+ "leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true
+ },
+ "levenary": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz",
+ "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==",
+ "dev": true,
+ "requires": {
+ "leven": "^3.1.0"
+ }
+ },
+ "levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ }
+ },
+ "lines-and-columns": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
+ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=",
+ "dev": true
+ },
+ "load-json-file": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+ "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^2.2.0",
+ "pify": "^2.0.0",
+ "strip-bom": "^3.0.0"
+ },
+ "dependencies": {
+ "parse-json": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+ "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+ "dev": true,
+ "requires": {
+ "error-ex": "^1.2.0"
+ }
+ },
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "loader-fs-cache": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz",
+ "integrity": "sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw==",
+ "dev": true,
+ "requires": {
+ "find-cache-dir": "^0.1.1",
+ "mkdirp": "0.5.1"
+ },
+ "dependencies": {
+ "find-cache-dir": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz",
+ "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "mkdirp": "^0.5.1",
+ "pkg-dir": "^1.0.0"
+ }
+ },
+ "find-up": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
+ "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
+ "dev": true,
+ "requires": {
+ "path-exists": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
+ }
+ },
+ "path-exists": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
+ "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
+ "dev": true,
+ "requires": {
+ "pinkie-promise": "^2.0.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz",
+ "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=",
+ "dev": true,
+ "requires": {
+ "find-up": "^1.0.0"
+ }
+ }
+ }
+ },
+ "loader-runner": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
+ "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
+ "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^2.0.0",
+ "json5": "^1.0.1"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ }
+ }
+ },
+ "locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.15",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
+ "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="
+ },
+ "lodash.defaultsdeep": {
+ "version": "4.6.1",
+ "resolved": "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.1.tgz",
+ "integrity": "sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==",
+ "dev": true
+ },
+ "lodash.kebabcase": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz",
+ "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=",
+ "dev": true
+ },
+ "lodash.mapvalues": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz",
+ "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=",
+ "dev": true
+ },
+ "lodash.memoize": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+ "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
+ "dev": true
+ },
+ "lodash.toarray": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz",
+ "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE="
+ },
+ "lodash.transform": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz",
+ "integrity": "sha1-EjBkIvYzJK7YSD0/ODMrX2cFR6A=",
+ "dev": true
+ },
+ "lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
+ "dev": true
+ },
+ "log-symbols": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
+ "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.0.1"
+ }
+ },
+ "loglevel": {
+ "version": "1.6.6",
+ "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.6.tgz",
+ "integrity": "sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==",
+ "dev": true
+ },
+ "loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "requires": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "lower-case": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+ "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "requires": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ }
+ },
+ "mamacro": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz",
+ "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==",
+ "dev": true
+ },
+ "map-age-cleaner": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
+ "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
+ "dev": true,
+ "requires": {
+ "p-defer": "^1.0.0"
+ }
+ },
+ "map-cache": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+ "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+ "dev": true
+ },
+ "map-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+ "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+ "dev": true,
+ "requires": {
+ "object-visit": "^1.0.0"
+ }
+ },
+ "md5.js": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
+ "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "mdn-data": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
+ "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==",
+ "dev": true
+ },
+ "media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
+ "dev": true
+ },
+ "mem": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
+ "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
+ "dev": true,
+ "requires": {
+ "map-age-cleaner": "^0.1.1",
+ "mimic-fn": "^2.0.0",
+ "p-is-promise": "^2.0.0"
+ },
+ "dependencies": {
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true
+ }
+ }
+ },
+ "memory-fs": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
+ "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ },
+ "merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
+ "dev": true
+ },
+ "merge-source-map": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz",
+ "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==",
+ "dev": true,
+ "requires": {
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "dev": true
+ },
+ "merge2": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz",
+ "integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==",
+ "dev": true
+ },
+ "methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "miller-rabin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
+ }
+ },
+ "mime": {
+ "version": "2.4.4",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz",
+ "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==",
+ "dev": true
+ },
+ "mime-db": {
+ "version": "1.43.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz",
+ "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==",
+ "dev": true
+ },
+ "mime-types": {
+ "version": "2.1.26",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz",
+ "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==",
+ "dev": true,
+ "requires": {
+ "mime-db": "1.43.0"
+ }
+ },
+ "mimic-fn": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
+ "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
+ "dev": true
+ },
+ "mini-css-extract-plugin": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz",
+ "integrity": "sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.1.0",
+ "normalize-url": "1.9.1",
+ "schema-utils": "^1.0.0",
+ "webpack-sources": "^1.1.0"
+ },
+ "dependencies": {
+ "normalize-url": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
+ "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
+ "dev": true,
+ "requires": {
+ "object-assign": "^4.0.1",
+ "prepend-http": "^1.0.0",
+ "query-string": "^4.1.0",
+ "sort-keys": "^1.0.0"
+ }
+ },
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ }
+ }
+ },
+ "minimalistic-assert": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
+ "dev": true
+ },
+ "minimalistic-crypto-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
+ "dev": true
+ },
+ "minipass": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.1.tgz",
+ "integrity": "sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ },
+ "dependencies": {
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ }
+ }
+ },
+ "minipass-collect": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-flush": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-pipeline": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz",
+ "integrity": "sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "mississippi": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
+ "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
+ "dev": true,
+ "requires": {
+ "concat-stream": "^1.5.0",
+ "duplexify": "^3.4.2",
+ "end-of-stream": "^1.1.0",
+ "flush-write-stream": "^1.0.0",
+ "from2": "^2.1.0",
+ "parallel-transform": "^1.1.0",
+ "pump": "^3.0.0",
+ "pumpify": "^1.3.3",
+ "stream-each": "^1.1.0",
+ "through2": "^2.0.0"
+ }
+ },
+ "mixin-deep": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
+ "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
+ "dev": true,
+ "requires": {
+ "for-in": "^1.0.2",
+ "is-extendable": "^1.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4"
+ }
+ }
+ }
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
+ "dev": true
+ }
+ }
+ },
+ "move-concurrently": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
+ "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "copy-concurrently": "^1.0.0",
+ "fs-write-stream-atomic": "^1.0.8",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.3"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "multicast-dns": {
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz",
+ "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==",
+ "dev": true,
+ "requires": {
+ "dns-packet": "^1.3.1",
+ "thunky": "^1.0.2"
+ }
+ },
+ "multicast-dns-service-types": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz",
+ "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=",
+ "dev": true
+ },
+ "mute-stream": {
+ "version": "0.0.7",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz",
+ "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=",
+ "dev": true
+ },
+ "mz": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
+ "dev": true,
+ "requires": {
+ "any-promise": "^1.0.0",
+ "object-assign": "^4.0.1",
+ "thenify-all": "^1.0.0"
+ }
+ },
+ "nan": {
+ "version": "2.14.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz",
+ "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==",
+ "dev": true,
+ "optional": true
+ },
+ "nanomatch": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+ "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "fragment-cache": "^0.2.1",
+ "is-windows": "^1.0.2",
+ "kind-of": "^6.0.2",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ }
+ },
+ "natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
+ "dev": true
+ },
+ "negotiator": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+ "dev": true
+ },
+ "neo-async": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz",
+ "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==",
+ "dev": true
+ },
+ "nice-try": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+ "dev": true
+ },
+ "no-case": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
+ "dev": true,
+ "requires": {
+ "lower-case": "^1.1.1"
+ }
+ },
+ "node-emoji": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz",
+ "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==",
+ "requires": {
+ "lodash.toarray": "^4.4.0"
+ }
+ },
+ "node-forge": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz",
+ "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==",
+ "dev": true
+ },
+ "node-ipc": {
+ "version": "9.1.1",
+ "resolved": "https://registry.npmjs.org/node-ipc/-/node-ipc-9.1.1.tgz",
+ "integrity": "sha512-FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==",
+ "dev": true,
+ "requires": {
+ "event-pubsub": "4.3.0",
+ "js-message": "1.0.5",
+ "js-queue": "2.0.0"
+ }
+ },
+ "node-libs-browser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
+ "dev": true,
+ "requires": {
+ "assert": "^1.1.1",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^4.3.0",
+ "console-browserify": "^1.1.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.11.0",
+ "domain-browser": "^1.1.1",
+ "events": "^3.0.0",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "0.0.1",
+ "process": "^0.11.10",
+ "punycode": "^1.2.4",
+ "querystring-es3": "^0.2.0",
+ "readable-stream": "^2.3.3",
+ "stream-browserify": "^2.0.1",
+ "stream-http": "^2.7.2",
+ "string_decoder": "^1.0.0",
+ "timers-browserify": "^2.0.4",
+ "tty-browserify": "0.0.0",
+ "url": "^0.11.0",
+ "util": "^0.11.0",
+ "vm-browserify": "^1.0.1"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ }
+ }
+ },
+ "node-releases": {
+ "version": "1.1.47",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.47.tgz",
+ "integrity": "sha512-k4xjVPx5FpwBUj0Gw7uvFOTF4Ep8Hok1I6qjwL3pLfwe7Y0REQSAqOwwv9TWBCUtMHxcXfY4PgRLRozcChvTcA==",
+ "requires": {
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ }
+ }
+ },
+ "normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "requires": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true
+ },
+ "normalize-range": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+ "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI="
+ },
+ "normalize-url": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz",
+ "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==",
+ "dev": true
+ },
+ "normalize.css": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
+ "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "requires": {
+ "path-key": "^2.0.0"
+ }
+ },
+ "nth-check": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
+ "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
+ "dev": true,
+ "requires": {
+ "boolbase": "~1.0.0"
+ }
+ },
+ "num2fraction": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
+ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4="
+ },
+ "number-is-nan": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+ "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
+ "dev": true
+ },
+ "oauth-sign": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+ "dev": true
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+ },
+ "object-copy": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+ "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+ "dev": true,
+ "requires": {
+ "copy-descriptor": "^0.1.0",
+ "define-property": "^0.2.5",
+ "kind-of": "^3.0.3"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "object-hash": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz",
+ "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==",
+ "dev": true
+ },
+ "object-inspect": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
+ "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
+ "dev": true
+ },
+ "object-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.2.tgz",
+ "integrity": "sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==",
+ "dev": true
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true
+ },
+ "object-visit": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
+ "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.0"
+ }
+ },
+ "object.assign": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
+ "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "function-bind": "^1.1.1",
+ "has-symbols": "^1.0.0",
+ "object-keys": "^1.0.11"
+ }
+ },
+ "object.getownpropertydescriptors": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz",
+ "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "object.pick": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+ "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "object.values": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
+ "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3"
+ }
+ },
+ "obuf": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
+ "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
+ "dev": true
+ },
+ "on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+ "dev": true,
+ "requires": {
+ "ee-first": "1.1.1"
+ }
+ },
+ "on-headers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
+ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
+ "dev": true
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "onetime": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
+ "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^1.0.0"
+ }
+ },
+ "open": {
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz",
+ "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==",
+ "dev": true,
+ "requires": {
+ "is-wsl": "^1.1.0"
+ }
+ },
+ "opener": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.1.tgz",
+ "integrity": "sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==",
+ "dev": true
+ },
+ "opn": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz",
+ "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==",
+ "dev": true,
+ "requires": {
+ "is-wsl": "^1.1.0"
+ }
+ },
+ "optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "requires": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ }
+ },
+ "ora": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz",
+ "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2",
+ "cli-cursor": "^2.1.0",
+ "cli-spinners": "^2.0.0",
+ "log-symbols": "^2.2.0",
+ "strip-ansi": "^5.2.0",
+ "wcwidth": "^1.0.1"
+ },
+ "dependencies": {
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ }
+ }
+ },
+ "original": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz",
+ "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==",
+ "dev": true,
+ "requires": {
+ "url-parse": "^1.4.3"
+ }
+ },
+ "os-browserify": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
+ "dev": true
+ },
+ "os-locale": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz",
+ "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==",
+ "dev": true,
+ "requires": {
+ "execa": "^1.0.0",
+ "lcid": "^2.0.0",
+ "mem": "^4.0.0"
+ }
+ },
+ "os-tmpdir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+ "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
+ "dev": true
+ },
+ "p-defer": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
+ "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
+ "dev": true
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "p-is-promise": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
+ "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz",
+ "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.0.0"
+ }
+ },
+ "p-map": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
+ "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
+ "dev": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ },
+ "p-retry": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz",
+ "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==",
+ "dev": true,
+ "requires": {
+ "retry": "^0.12.0"
+ }
+ },
+ "p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "dev": true
+ },
+ "pako": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz",
+ "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==",
+ "dev": true
+ },
+ "parallel-transform": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
+ "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
+ "dev": true,
+ "requires": {
+ "cyclist": "^1.0.1",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.1.5"
+ }
+ },
+ "param-case": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz",
+ "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=",
+ "dev": true,
+ "requires": {
+ "no-case": "^2.2.0"
+ }
+ },
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0"
+ },
+ "dependencies": {
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true
+ }
+ }
+ },
+ "parse-asn1": {
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz",
+ "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==",
+ "dev": true,
+ "requires": {
+ "asn1.js": "^4.0.0",
+ "browserify-aes": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.0",
+ "pbkdf2": "^3.0.3",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
+ "dev": true,
+ "requires": {
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
+ }
+ },
+ "parse5": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
+ "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
+ "dev": true
+ },
+ "parse5-htmlparser2-tree-adapter": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-5.1.1.tgz",
+ "integrity": "sha512-CF+TKjXqoqyDwHqBhFQ+3l5t83xYi6fVT1tQNg+Ye0JRLnTxWvIroCjEp1A0k4lneHNBGnICUf0cfYVYGEazqw==",
+ "dev": true,
+ "requires": {
+ "parse5": "^5.1.1"
+ }
+ },
+ "parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "dev": true
+ },
+ "pascalcase": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+ "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+ "dev": true
+ },
+ "path-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
+ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
+ "dev": true
+ },
+ "path-dirname": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+ "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+ },
+ "path-is-inside": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
+ "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
+ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
+ "dev": true
+ },
+ "path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "requires": {
+ "pify": "^3.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ }
+ }
+ },
+ "pbkdf2": {
+ "version": "3.0.17",
+ "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz",
+ "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==",
+ "dev": true,
+ "requires": {
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "performance-now": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
+ "dev": true
+ },
+ "pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+ "dev": true
+ },
+ "pinkie": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+ "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
+ "dev": true
+ },
+ "pinkie-promise": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
+ "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
+ "dev": true,
+ "requires": {
+ "pinkie": "^2.0.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "dev": true,
+ "requires": {
+ "find-up": "^3.0.0"
+ }
+ },
+ "portfinder": {
+ "version": "1.0.25",
+ "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz",
+ "integrity": "sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==",
+ "dev": true,
+ "requires": {
+ "async": "^2.6.2",
+ "debug": "^3.1.1",
+ "mkdirp": "^0.5.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "posix-character-classes": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
+ "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
+ "dev": true
+ },
+ "postcss": {
+ "version": "7.0.26",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.26.tgz",
+ "integrity": "sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==",
+ "requires": {
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "postcss-calc": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz",
+ "integrity": "sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ==",
+ "dev": true,
+ "requires": {
+ "css-unit-converter": "^1.1.1",
+ "postcss": "^7.0.5",
+ "postcss-selector-parser": "^5.0.0-rc.4",
+ "postcss-value-parser": "^3.3.1"
+ }
+ },
+ "postcss-colormin": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz",
+ "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "color": "^3.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-convert-values": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz",
+ "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-discard-comments": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz",
+ "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-duplicates": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz",
+ "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-empty": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz",
+ "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-overridden": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz",
+ "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-functions": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz",
+ "integrity": "sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4=",
+ "requires": {
+ "glob": "^7.1.2",
+ "object-assign": "^4.1.1",
+ "postcss": "^6.0.9",
+ "postcss-value-parser": "^3.3.0"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "requires": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
+ }
+ },
+ "postcss-js": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.3.tgz",
+ "integrity": "sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==",
+ "requires": {
+ "camelcase-css": "^2.0.1",
+ "postcss": "^7.0.18"
+ }
+ },
+ "postcss-load-config": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz",
+ "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==",
+ "dev": true,
+ "requires": {
+ "cosmiconfig": "^5.0.0",
+ "import-cwd": "^2.0.0"
+ }
+ },
+ "postcss-loader": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz",
+ "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.1.0",
+ "postcss": "^7.0.0",
+ "postcss-load-config": "^2.0.0",
+ "schema-utils": "^1.0.0"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ }
+ }
+ },
+ "postcss-merge-longhand": {
+ "version": "4.0.11",
+ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz",
+ "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==",
+ "dev": true,
+ "requires": {
+ "css-color-names": "0.0.4",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "stylehacks": "^4.0.0"
+ }
+ },
+ "postcss-merge-rules": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz",
+ "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-api": "^3.0.0",
+ "cssnano-util-same-parent": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0",
+ "vendors": "^1.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
+ "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^4.1.1",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-minify-font-values": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz",
+ "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-minify-gradients": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz",
+ "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "is-color-stop": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-minify-params": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz",
+ "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "browserslist": "^4.0.0",
+ "cssnano-util-get-arguments": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "uniqs": "^2.0.0"
+ }
+ },
+ "postcss-minify-selectors": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz",
+ "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
+ "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^4.1.1",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-modules-extract-imports": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.5"
+ }
+ },
+ "postcss-modules-local-by-default": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz",
+ "integrity": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.1.1",
+ "postcss": "^7.0.16",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.0.0"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz",
+ "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-modules-scope": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz",
+ "integrity": "sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.6",
+ "postcss-selector-parser": "^6.0.0"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-modules-values": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.0.0",
+ "postcss": "^7.0.6"
+ }
+ },
+ "postcss-nested": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-4.2.1.tgz",
+ "integrity": "sha512-AMayXX8tS0HCp4O4lolp4ygj9wBn32DJWXvG6gCv+ZvJrEa00GUxJcJEEzMh87BIe6FrWdYkpR2cuyqHKrxmXw==",
+ "requires": {
+ "postcss": "^7.0.21",
+ "postcss-selector-parser": "^6.0.2"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-normalize-charset": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz",
+ "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-normalize-display-values": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz",
+ "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-positions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz",
+ "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-repeat-style": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz",
+ "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-string": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz",
+ "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-timing-functions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz",
+ "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-unicode": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz",
+ "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-url": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz",
+ "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==",
+ "dev": true,
+ "requires": {
+ "is-absolute-url": "^2.0.0",
+ "normalize-url": "^3.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-normalize-whitespace": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz",
+ "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-ordered-values": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz",
+ "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-reduce-initial": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz",
+ "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-api": "^3.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-reduce-transforms": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz",
+ "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
+ "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^2.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ },
+ "postcss-svgo": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz",
+ "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==",
+ "dev": true,
+ "requires": {
+ "is-svg": "^3.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "svgo": "^1.0.0"
+ }
+ },
+ "postcss-unique-selectors": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz",
+ "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "postcss": "^7.0.0",
+ "uniqs": "^2.0.0"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
+ },
+ "prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
+ "dev": true
+ },
+ "prepend-http": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
+ "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
+ "dev": true
+ },
+ "prettier": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
+ "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==",
+ "dev": true
+ },
+ "pretty-error": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz",
+ "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=",
+ "dev": true,
+ "requires": {
+ "renderkid": "^2.0.1",
+ "utila": "~0.4"
+ }
+ },
+ "pretty-hrtime": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE="
+ },
+ "private": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
+ "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
+ "dev": true
+ },
+ "process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "dev": true
+ },
+ "promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+ "dev": true
+ },
+ "proxy-addr": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz",
+ "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==",
+ "dev": true,
+ "requires": {
+ "forwarded": "~0.1.2",
+ "ipaddr.js": "1.9.0"
+ }
+ },
+ "prr": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
+ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
+ "dev": true
+ },
+ "pseudomap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+ "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
+ "dev": true
+ },
+ "psl": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz",
+ "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==",
+ "dev": true
+ },
+ "public-encrypt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "pump": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "pumpify": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
+ "dev": true,
+ "requires": {
+ "duplexify": "^3.6.0",
+ "inherits": "^2.0.3",
+ "pump": "^2.0.0"
+ },
+ "dependencies": {
+ "pump": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ }
+ }
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "dev": true
+ },
+ "q": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
+ "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
+ "dev": true
+ },
+ "query-string": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
+ "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
+ "dev": true,
+ "requires": {
+ "object-assign": "^4.1.0",
+ "strict-uri-encode": "^1.0.0"
+ }
+ },
+ "querystring": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
+ "dev": true
+ },
+ "querystring-es3": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
+ "dev": true
+ },
+ "querystringify": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz",
+ "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==",
+ "dev": true
+ },
+ "randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "randomfill": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+ "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "dev": true,
+ "requires": {
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "dev": true
+ },
+ "raw-body": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
+ "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.0",
+ "http-errors": "1.7.2",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ }
+ },
+ "read-pkg": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
+ "dev": true,
+ "requires": {
+ "@types/normalize-package-data": "^2.4.0",
+ "normalize-package-data": "^2.5.0",
+ "parse-json": "^5.0.0",
+ "type-fest": "^0.6.0"
+ },
+ "dependencies": {
+ "parse-json": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
+ "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1",
+ "lines-and-columns": "^1.1.6"
+ }
+ }
+ }
+ },
+ "read-pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+ "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.0.0",
+ "read-pkg": "^2.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+ "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+ "dev": true,
+ "requires": {
+ "pify": "^2.0.0"
+ }
+ },
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ },
+ "read-pkg": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+ "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+ "dev": true,
+ "requires": {
+ "load-json-file": "^2.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^2.0.0"
+ }
+ }
+ }
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "reduce-css-calc": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz",
+ "integrity": "sha512-fDnlZ+AybAS3C7Q9xDq5y8A2z+lT63zLbynew/lur/IR24OQF5x98tfNwf79mzEdfywZ0a2wpM860FhFfMxZlA==",
+ "requires": {
+ "css-unit-converter": "^1.1.1",
+ "postcss-value-parser": "^3.3.0"
+ }
+ },
+ "regenerate": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
+ "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
+ "dev": true
+ },
+ "regenerate-unicode-properties": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz",
+ "integrity": "sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.13.3",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz",
+ "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==",
+ "dev": true
+ },
+ "regenerator-transform": {
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.1.tgz",
+ "integrity": "sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==",
+ "dev": true,
+ "requires": {
+ "private": "^0.1.6"
+ }
+ },
+ "regex-not": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+ "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "regexp.prototype.flags": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz",
+ "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "regexpp": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
+ "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==",
+ "dev": true
+ },
+ "regexpu-core": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz",
+ "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0",
+ "regenerate-unicode-properties": "^8.1.0",
+ "regjsgen": "^0.5.0",
+ "regjsparser": "^0.6.0",
+ "unicode-match-property-ecmascript": "^1.0.4",
+ "unicode-match-property-value-ecmascript": "^1.1.0"
+ }
+ },
+ "regjsgen": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz",
+ "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==",
+ "dev": true
+ },
+ "regjsparser": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.2.tgz",
+ "integrity": "sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==",
+ "dev": true,
+ "requires": {
+ "jsesc": "~0.5.0"
+ },
+ "dependencies": {
+ "jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
+ "dev": true
+ }
+ }
+ },
+ "relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
+ "dev": true
+ },
+ "remove-trailing-separator": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
+ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
+ "dev": true
+ },
+ "renderkid": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz",
+ "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==",
+ "dev": true,
+ "requires": {
+ "css-select": "^1.1.0",
+ "dom-converter": "^0.2",
+ "htmlparser2": "^3.3.0",
+ "strip-ansi": "^3.0.0",
+ "utila": "^0.4.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "css-select": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
+ "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
+ "dev": true,
+ "requires": {
+ "boolbase": "~1.0.0",
+ "css-what": "2.1",
+ "domutils": "1.5.1",
+ "nth-check": "~1.0.1"
+ }
+ },
+ "css-what": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
+ "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==",
+ "dev": true
+ },
+ "domutils": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
+ "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
+ "dev": true,
+ "requires": {
+ "dom-serializer": "0",
+ "domelementtype": "1"
+ }
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ }
+ }
+ },
+ "repeat-element": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
+ "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
+ "dev": true
+ },
+ "repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+ "dev": true
+ },
+ "request": {
+ "version": "2.88.0",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
+ "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
+ "dev": true,
+ "requires": {
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.0",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.4.3",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
+ }
+ },
+ "request-promise-core": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz",
+ "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.15"
+ }
+ },
+ "request-promise-native": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz",
+ "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==",
+ "dev": true,
+ "requires": {
+ "request-promise-core": "1.1.3",
+ "stealthy-require": "^1.1.1",
+ "tough-cookie": "^2.3.3"
+ }
+ },
+ "require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+ "dev": true
+ },
+ "require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "dev": true
+ },
+ "requires-port": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
+ "dev": true
+ },
+ "resolve": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz",
+ "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==",
+ "dev": true,
+ "requires": {
+ "path-parse": "^1.0.6"
+ }
+ },
+ "resolve-cwd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
+ "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^3.0.0"
+ }
+ },
+ "resolve-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+ "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
+ "dev": true
+ },
+ "resolve-url": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+ "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+ "dev": true
+ },
+ "restore-cursor": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
+ "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
+ "dev": true,
+ "requires": {
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "ret": {
+ "version": "0.1.15",
+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+ "dev": true
+ },
+ "retry": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+ "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
+ "dev": true
+ },
+ "rgb-regex": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz",
+ "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=",
+ "dev": true
+ },
+ "rgba-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",
+ "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "ripemd160": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+ "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
+ }
+ },
+ "run-async": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
+ "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
+ "dev": true,
+ "requires": {
+ "is-promise": "^2.1.0"
+ }
+ },
+ "run-queue": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
+ "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1"
+ }
+ },
+ "rxjs": {
+ "version": "6.5.4",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.4.tgz",
+ "integrity": "sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.9.0"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "dev": true
+ },
+ "safe-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+ "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+ "dev": true,
+ "requires": {
+ "ret": "~0.1.10"
+ }
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "dev": true
+ },
+ "sax": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
+ "dev": true
+ },
+ "schema-utils": {
+ "version": "2.6.4",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz",
+ "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1"
+ }
+ },
+ "select-hose": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
+ "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=",
+ "dev": true
+ },
+ "selfsigned": {
+ "version": "1.10.7",
+ "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.7.tgz",
+ "integrity": "sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==",
+ "dev": true,
+ "requires": {
+ "node-forge": "0.9.0"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "send": {
+ "version": "0.17.1",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
+ "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "~1.7.2",
+ "mime": "1.6.0",
+ "ms": "2.1.1",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.1",
+ "statuses": "~1.5.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
+ "dev": true
+ }
+ }
+ },
+ "serialize-javascript": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz",
+ "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==",
+ "dev": true
+ },
+ "serve-index": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
+ "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.4",
+ "batch": "0.6.1",
+ "debug": "2.6.9",
+ "escape-html": "~1.0.3",
+ "http-errors": "~1.6.2",
+ "mime-types": "~2.1.17",
+ "parseurl": "~1.3.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "http-errors": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
+ "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
+ "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": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "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
+ }
+ }
+ },
+ "serve-static": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
+ "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
+ "dev": true,
+ "requires": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.17.1"
+ }
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+ "dev": true
+ },
+ "set-value": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
+ "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-extendable": "^0.1.1",
+ "is-plain-object": "^2.0.3",
+ "split-string": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "setimmediate": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
+ "dev": true
+ },
+ "setprototypeof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+ "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
+ "dev": true
+ },
+ "sha.js": {
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+ "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ },
+ "shell-quote": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
+ "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==",
+ "dev": true
+ },
+ "signal-exit": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
+ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
+ "dev": true
+ },
+ "simple-swizzle": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
+ "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.3.1"
+ },
+ "dependencies": {
+ "is-arrayish": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "dev": true
+ }
+ }
+ },
+ "slash": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
+ "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
+ "dev": true
+ },
+ "slice-ansi": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
+ "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.0",
+ "astral-regex": "^1.0.0",
+ "is-fullwidth-code-point": "^2.0.0"
+ }
+ },
+ "snapdragon": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
+ "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "dev": true,
+ "requires": {
+ "base": "^0.11.1",
+ "debug": "^2.2.0",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "map-cache": "^0.2.2",
+ "source-map": "^0.5.6",
+ "source-map-resolve": "^0.5.0",
+ "use": "^3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "snapdragon-node": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+ "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.0",
+ "snapdragon-util": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "snapdragon-util": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.2.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "sockjs": {
+ "version": "0.3.19",
+ "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz",
+ "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==",
+ "dev": true,
+ "requires": {
+ "faye-websocket": "^0.10.0",
+ "uuid": "^3.0.1"
+ }
+ },
+ "sockjs-client": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz",
+ "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.2.5",
+ "eventsource": "^1.0.7",
+ "faye-websocket": "~0.11.1",
+ "inherits": "^2.0.3",
+ "json3": "^3.3.2",
+ "url-parse": "^1.4.3"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "faye-websocket": {
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz",
+ "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==",
+ "dev": true,
+ "requires": {
+ "websocket-driver": ">=0.5.1"
+ }
+ }
+ }
+ },
+ "sort-keys": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
+ "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
+ "dev": true,
+ "requires": {
+ "is-plain-obj": "^1.0.0"
+ }
+ },
+ "source-list-map": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
+ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "dev": true
+ },
+ "source-map-resolve": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
+ "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
+ "dev": true,
+ "requires": {
+ "atob": "^2.1.2",
+ "decode-uri-component": "^0.2.0",
+ "resolve-url": "^0.2.1",
+ "source-map-url": "^0.4.0",
+ "urix": "^0.1.0"
+ }
+ },
+ "source-map-support": {
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz",
+ "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "source-map-url": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
+ "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=",
+ "dev": true
+ },
+ "spdx-correct": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
+ "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
+ "dev": true,
+ "requires": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-exceptions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz",
+ "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
+ "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
+ "dev": true,
+ "requires": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-license-ids": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
+ "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
+ "dev": true
+ },
+ "spdy": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.1.tgz",
+ "integrity": "sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.0",
+ "handle-thing": "^2.0.0",
+ "http-deceiver": "^1.2.7",
+ "select-hose": "^2.0.0",
+ "spdy-transport": "^3.0.0"
+ }
+ },
+ "spdy-transport": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
+ "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.0",
+ "detect-node": "^2.0.4",
+ "hpack.js": "^2.1.6",
+ "obuf": "^1.1.2",
+ "readable-stream": "^3.0.6",
+ "wbuf": "^1.7.3"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.5.0.tgz",
+ "integrity": "sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "split-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.0"
+ }
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "sshpk": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
+ "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
+ "dev": true,
+ "requires": {
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.0.2",
+ "tweetnacl": "~0.14.0"
+ }
+ },
+ "ssri": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz",
+ "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==",
+ "dev": true,
+ "requires": {
+ "figgy-pudding": "^3.5.1"
+ }
+ },
+ "stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "dev": true
+ },
+ "stackframe": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.1.1.tgz",
+ "integrity": "sha512-0PlYhdKh6AfFxRyK/v+6/k+/mMfyiEBbTM5L94D0ZytQnJ166wuwoTYLHFWGbs2dpA8Rgq763KGWmN1EQEYHRQ==",
+ "dev": true
+ },
+ "static-extend": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
+ "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
+ "dev": true,
+ "requires": {
+ "define-property": "^0.2.5",
+ "object-copy": "^0.1.0"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ }
+ }
+ },
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+ "dev": true
+ },
+ "stealthy-require": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
+ "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=",
+ "dev": true
+ },
+ "stream-browserify": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
+ "dev": true,
+ "requires": {
+ "inherits": "~2.0.1",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "stream-each": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
+ "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "stream-http": {
+ "version": "2.8.3",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
+ "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "dev": true,
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.3.6",
+ "to-arraybuffer": "^1.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "stream-shift": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+ "dev": true
+ },
+ "strict-uri-encode": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
+ "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "dev": true,
+ "requires": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "string.prototype.trimleft": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz",
+ "integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "function-bind": "^1.1.1"
+ }
+ },
+ "string.prototype.trimright": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz",
+ "integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "function-bind": "^1.1.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ }
+ }
+ },
+ "strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+ "dev": true
+ },
+ "strip-eof": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+ "dev": true
+ },
+ "strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "dev": true
+ },
+ "strip-indent": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz",
+ "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=",
+ "dev": true
+ },
+ "strip-json-comments": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+ "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
+ "dev": true
+ },
+ "stylehacks": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz",
+ "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz",
+ "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^4.1.1",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "svg-tags": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz",
+ "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=",
+ "dev": true
+ },
+ "svgo": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
+ "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "coa": "^2.0.2",
+ "css-select": "^2.0.0",
+ "css-select-base-adapter": "^0.1.1",
+ "css-tree": "1.0.0-alpha.37",
+ "csso": "^4.0.2",
+ "js-yaml": "^3.13.1",
+ "mkdirp": "~0.5.1",
+ "object.values": "^1.1.0",
+ "sax": "~1.2.4",
+ "stable": "^0.1.8",
+ "unquote": "~1.1.1",
+ "util.promisify": "~1.0.0"
+ }
+ },
+ "sweetalert2": {
+ "version": "9.7.1",
+ "resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-9.7.1.tgz",
+ "integrity": "sha512-ytBEyqRmZQsEFuPsYcuEXpruj9AgT32ELEBWGnioflsqbxHMMM8/Ghm1+hi4hsZ1PU7cp9TFFWe06WveGfwWKw=="
+ },
+ "table": {
+ "version": "5.4.6",
+ "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
+ "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.10.2",
+ "lodash": "^4.17.14",
+ "slice-ansi": "^2.1.0",
+ "string-width": "^3.0.0"
+ },
+ "dependencies": {
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ }
+ }
+ },
+ "tailwindcss": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.1.4.tgz",
+ "integrity": "sha512-p4AxVa4CKpX7IbNxImwNMGG9MHuLgratOaOE/iGriNd4AsRQRM2xMisoQ3KQHqShunrWuObga7rI7xbNsVoWGA==",
+ "requires": {
+ "autoprefixer": "^9.4.5",
+ "bytes": "^3.0.0",
+ "chalk": "^2.4.1",
+ "fs-extra": "^8.0.0",
+ "lodash": "^4.17.11",
+ "node-emoji": "^1.8.1",
+ "normalize.css": "^8.0.1",
+ "postcss": "^7.0.11",
+ "postcss-functions": "^3.0.0",
+ "postcss-js": "^2.0.0",
+ "postcss-nested": "^4.1.1",
+ "postcss-selector-parser": "^6.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "reduce-css-calc": "^2.1.6"
+ },
+ "dependencies": {
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
+ },
+ "fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "tapable": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
+ "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
+ "dev": true
+ },
+ "terser": {
+ "version": "4.6.3",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.3.tgz",
+ "integrity": "sha512-Lw+ieAXmY69d09IIc/yqeBqXpEQIpDGZqT34ui1QWXIUpR2RjbqEkT8X7Lgex19hslSqcWM5iMN2kM11eMsESQ==",
+ "dev": true,
+ "requires": {
+ "commander": "^2.20.0",
+ "source-map": "~0.6.1",
+ "source-map-support": "~0.5.12"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "terser-webpack-plugin": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz",
+ "integrity": "sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==",
+ "dev": true,
+ "requires": {
+ "cacache": "^12.0.2",
+ "find-cache-dir": "^2.1.0",
+ "is-wsl": "^1.1.0",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^2.1.2",
+ "source-map": "^0.6.1",
+ "terser": "^4.1.2",
+ "webpack-sources": "^1.4.0",
+ "worker-farm": "^1.7.0"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "thenify": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz",
+ "integrity": "sha1-5p44obq+lpsBCCB5eLn2K4hgSDk=",
+ "dev": true,
+ "requires": {
+ "any-promise": "^1.0.0"
+ }
+ },
+ "thenify-all": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
+ "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=",
+ "dev": true,
+ "requires": {
+ "thenify": ">= 3.1.0 < 4"
+ }
+ },
+ "thread-loader": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-2.1.3.tgz",
+ "integrity": "sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==",
+ "dev": true,
+ "requires": {
+ "loader-runner": "^2.3.1",
+ "loader-utils": "^1.1.0",
+ "neo-async": "^2.6.0"
+ }
+ },
+ "through": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+ "dev": true
+ },
+ "through2": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
+ "dev": true,
+ "requires": {
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
+ }
+ },
+ "thunky": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
+ "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
+ "dev": true
+ },
+ "timers-browserify": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz",
+ "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==",
+ "dev": true,
+ "requires": {
+ "setimmediate": "^1.0.4"
+ }
+ },
+ "timsort": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz",
+ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=",
+ "dev": true
+ },
+ "tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "dev": true,
+ "requires": {
+ "os-tmpdir": "~1.0.2"
+ }
+ },
+ "to-arraybuffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
+ "dev": true
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
+ "dev": true
+ },
+ "to-object-path": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
+ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "to-regex": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+ "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "regex-not": "^1.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ },
+ "toidentifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
+ "dev": true
+ },
+ "toposort": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz",
+ "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=",
+ "dev": true
+ },
+ "tough-cookie": {
+ "version": "2.4.3",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
+ "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
+ "dev": true,
+ "requires": {
+ "psl": "^1.1.24",
+ "punycode": "^1.4.1"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ }
+ }
+ },
+ "tryer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
+ "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==",
+ "dev": true
+ },
+ "tslib": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
+ "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==",
+ "dev": true
+ },
+ "tty-browserify": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
+ "dev": true
+ },
+ "tunnel-agent": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "tweetnacl": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+ "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
+ "dev": true
+ },
+ "type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2"
+ }
+ },
+ "type-fest": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
+ "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"
+ }
+ },
+ "typedarray": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+ "dev": true
+ },
+ "uglify-js": {
+ "version": "3.4.10",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz",
+ "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==",
+ "dev": true,
+ "requires": {
+ "commander": "~2.19.0",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
+ "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "unicode-canonical-property-names-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==",
+ "dev": true
+ },
+ "unicode-match-property-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==",
+ "dev": true,
+ "requires": {
+ "unicode-canonical-property-names-ecmascript": "^1.0.4",
+ "unicode-property-aliases-ecmascript": "^1.0.4"
+ }
+ },
+ "unicode-match-property-value-ecmascript": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz",
+ "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==",
+ "dev": true
+ },
+ "unicode-property-aliases-ecmascript": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz",
+ "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==",
+ "dev": true
+ },
+ "union-value": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
+ "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "get-value": "^2.0.6",
+ "is-extendable": "^0.1.1",
+ "set-value": "^2.0.1"
+ }
+ },
+ "uniq": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
+ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8="
+ },
+ "uniqs": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
+ "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=",
+ "dev": true
+ },
+ "unique-filename": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+ "dev": true,
+ "requires": {
+ "unique-slug": "^2.0.0"
+ }
+ },
+ "unique-slug": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4"
+ }
+ },
+ "universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+ "dev": true
+ },
+ "unquote": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
+ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=",
+ "dev": true
+ },
+ "unset-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+ "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+ "dev": true,
+ "requires": {
+ "has-value": "^0.3.1",
+ "isobject": "^3.0.0"
+ },
+ "dependencies": {
+ "has-value": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+ "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.3",
+ "has-values": "^0.1.4",
+ "isobject": "^2.0.0"
+ },
+ "dependencies": {
+ "isobject": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+ "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+ "dev": true,
+ "requires": {
+ "isarray": "1.0.0"
+ }
+ }
+ }
+ },
+ "has-values": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+ "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
+ "dev": true
+ }
+ }
+ },
+ "upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true
+ },
+ "upper-case": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz",
+ "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=",
+ "dev": true
+ },
+ "uri-js": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
+ "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "urix": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+ "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+ "dev": true
+ },
+ "url": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+ "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+ "dev": true,
+ "requires": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
+ "dev": true
+ }
+ }
+ },
+ "url-loader": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz",
+ "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.2.3",
+ "mime": "^2.4.4",
+ "schema-utils": "^2.5.0"
+ }
+ },
+ "url-parse": {
+ "version": "1.4.7",
+ "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz",
+ "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==",
+ "dev": true,
+ "requires": {
+ "querystringify": "^2.1.1",
+ "requires-port": "^1.0.0"
+ }
+ },
+ "use": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+ "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+ "dev": true
+ },
+ "util": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
+ "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ }
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+ "dev": true
+ },
+ "util.promisify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
+ "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.2",
+ "has-symbols": "^1.0.1",
+ "object.getownpropertydescriptors": "^2.1.0"
+ }
+ },
+ "utila": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
+ "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=",
+ "dev": true
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+ "dev": true
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
+ },
+ "validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "requires": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
+ "dev": true
+ },
+ "vendors": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
+ "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==",
+ "dev": true
+ },
+ "verror": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+ "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0",
+ "core-util-is": "1.0.2",
+ "extsprintf": "^1.2.0"
+ }
+ },
+ "vm-browserify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
+ "dev": true
+ },
+ "vue": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.11.tgz",
+ "integrity": "sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ=="
+ },
+ "vue-eslint-parser": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-5.0.0.tgz",
+ "integrity": "sha512-JlHVZwBBTNVvzmifwjpZYn0oPWH2SgWv5dojlZBsrhablDu95VFD+hriB1rQGwbD+bms6g+rAFhQHk6+NyiS6g==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.0",
+ "eslint-scope": "^4.0.0",
+ "eslint-visitor-keys": "^1.0.0",
+ "espree": "^4.1.0",
+ "esquery": "^1.0.1",
+ "lodash": "^4.17.11"
+ },
+ "dependencies": {
+ "espree": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-4.1.0.tgz",
+ "integrity": "sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==",
+ "dev": true,
+ "requires": {
+ "acorn": "^6.0.2",
+ "acorn-jsx": "^5.0.0",
+ "eslint-visitor-keys": "^1.0.0"
+ }
+ }
+ }
+ },
+ "vue-hot-reload-api": {
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz",
+ "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==",
+ "dev": true
+ },
+ "vue-loader": {
+ "version": "15.8.3",
+ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.8.3.tgz",
+ "integrity": "sha512-yFksTFbhp+lxlm92DrKdpVIWMpranXnTEuGSc0oW+Gk43M9LWaAmBTnfj5+FCdve715mTHvo78IdaXf5TbiTJg==",
+ "dev": true,
+ "requires": {
+ "@vue/component-compiler-utils": "^3.1.0",
+ "hash-sum": "^1.0.2",
+ "loader-utils": "^1.1.0",
+ "vue-hot-reload-api": "^2.3.0",
+ "vue-style-loader": "^4.1.0"
+ }
+ },
+ "vue-loading-overlay": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/vue-loading-overlay/-/vue-loading-overlay-3.2.0.tgz",
+ "integrity": "sha512-QBHa+vwcQ3k3oKp4pucP7RHWHSQvgVWFlDFqSaXLu+kCuEv1PZCoerAo1T04enF5y9yMFCqh7L9ChrWHy7HYvA=="
+ },
+ "vue-router": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.1.5.tgz",
+ "integrity": "sha512-BszkPvhl7I9h334GjckCh7sVFyjTPMMJFJ4Bsrem/Ik+B/9gt5tgrk8k4gGLO4ZpdvciVdg7O41gW4DisQWurg=="
+ },
+ "vue-style-loader": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz",
+ "integrity": "sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ==",
+ "dev": true,
+ "requires": {
+ "hash-sum": "^1.0.2",
+ "loader-utils": "^1.0.2"
+ }
+ },
+ "vue-template-compiler": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz",
+ "integrity": "sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA==",
+ "dev": true,
+ "requires": {
+ "de-indent": "^1.0.2",
+ "he": "^1.1.0"
+ }
+ },
+ "vue-template-es2015-compiler": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz",
+ "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
+ "dev": true
+ },
+ "vue-toasted": {
+ "version": "1.1.27",
+ "resolved": "https://registry.npmjs.org/vue-toasted/-/vue-toasted-1.1.27.tgz",
+ "integrity": "sha512-GVbwInwnqkVxQ4GU/XYeQt1e0dAXL8sF5Hr1H/coCBbYUan5xP0G2mEz/HRDf1lt73rFQAN/bJcLTOKkqiM6tg=="
+ },
+ "vue-wysiwyg": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/vue-wysiwyg/-/vue-wysiwyg-1.7.2.tgz",
+ "integrity": "sha512-ypj9vqmGJTuM/YYC30+vRPWm6+UizBqvNHnIJr1l6k92eHA33q5ubE+WPfij8Qr8mK+wbaCwaVBO7dQqvxzSTQ==",
+ "requires": {
+ "debounce": "^1.1.0",
+ "vue": "^2.5.13",
+ "vue2-dropzone": "^3.0.4"
+ }
+ },
+ "vue2-dropzone": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/vue2-dropzone/-/vue2-dropzone-3.6.0.tgz",
+ "integrity": "sha512-YXC1nCWIZvfa98e/i6h+EshZCkFSxFEh0Sxr9ODfThAPPDVhAzLLlz/4XIx0NGO1QeSy6htwSstte47R7vVhLQ==",
+ "requires": {
+ "dropzone": "^5.5.1"
+ }
+ },
+ "vuex": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.1.2.tgz",
+ "integrity": "sha512-ha3jNLJqNhhrAemDXcmMJMKf1Zu4sybMPr9KxJIuOpVcsDQlTBYLLladav2U+g1AvdYDG5Gs0xBTb0M5pXXYFQ=="
+ },
+ "watchpack": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz",
+ "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==",
+ "dev": true,
+ "requires": {
+ "chokidar": "^2.0.2",
+ "graceful-fs": "^4.1.2",
+ "neo-async": "^2.5.0"
+ }
+ },
+ "wbuf": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
+ "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
+ "dev": true,
+ "requires": {
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+ "dev": true,
+ "requires": {
+ "defaults": "^1.0.3"
+ }
+ },
+ "webpack": {
+ "version": "4.41.5",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.5.tgz",
+ "integrity": "sha512-wp0Co4vpyumnp3KlkmpM5LWuzvZYayDwM2n17EHFr4qxBBbRokC7DJawPJC7TfSFZ9HZ6GsdH40EBj4UV0nmpw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.8.5",
+ "@webassemblyjs/helper-module-context": "1.8.5",
+ "@webassemblyjs/wasm-edit": "1.8.5",
+ "@webassemblyjs/wasm-parser": "1.8.5",
+ "acorn": "^6.2.1",
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^4.1.0",
+ "eslint-scope": "^4.0.3",
+ "json-parse-better-errors": "^1.0.2",
+ "loader-runner": "^2.4.0",
+ "loader-utils": "^1.2.3",
+ "memory-fs": "^0.4.1",
+ "micromatch": "^3.1.10",
+ "mkdirp": "^0.5.1",
+ "neo-async": "^2.6.1",
+ "node-libs-browser": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "tapable": "^1.1.3",
+ "terser-webpack-plugin": "^1.4.3",
+ "watchpack": "^1.6.0",
+ "webpack-sources": "^1.4.1"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ }
+ }
+ },
+ "webpack-bundle-analyzer": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.0.tgz",
+ "integrity": "sha512-orUfvVYEfBMDXgEKAKVvab5iQ2wXneIEorGNsyuOyVYpjYrI7CUOhhXNDd3huMwQ3vNNWWlGP+hzflMFYNzi2g==",
+ "dev": true,
+ "requires": {
+ "acorn": "^6.0.7",
+ "acorn-walk": "^6.1.1",
+ "bfj": "^6.1.1",
+ "chalk": "^2.4.1",
+ "commander": "^2.18.0",
+ "ejs": "^2.6.1",
+ "express": "^4.16.3",
+ "filesize": "^3.6.1",
+ "gzip-size": "^5.0.0",
+ "lodash": "^4.17.15",
+ "mkdirp": "^0.5.1",
+ "opener": "^1.5.1",
+ "ws": "^6.0.0"
+ }
+ },
+ "webpack-chain": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.3.1.tgz",
+ "integrity": "sha512-PLWPY92p5Vj0hOylUGjRoRY7Kgrns5vmPFAQ9BpSHnBbVbh2akRQVUlbRb2mmGYRSY1FklTULtyVChNmcQjIVg==",
+ "dev": true,
+ "requires": {
+ "deepmerge": "^1.5.2",
+ "javascript-stringify": "^2.0.1"
+ }
+ },
+ "webpack-dev-middleware": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz",
+ "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==",
+ "dev": true,
+ "requires": {
+ "memory-fs": "^0.4.1",
+ "mime": "^2.4.4",
+ "mkdirp": "^0.5.1",
+ "range-parser": "^1.2.1",
+ "webpack-log": "^2.0.0"
+ }
+ },
+ "webpack-dev-server": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.10.1.tgz",
+ "integrity": "sha512-AGG4+XrrXn4rbZUueyNrQgO4KGnol+0wm3MPdqGLmmA+NofZl3blZQKxZ9BND6RDNuvAK9OMYClhjOSnxpWRoA==",
+ "dev": true,
+ "requires": {
+ "ansi-html": "0.0.7",
+ "bonjour": "^3.5.0",
+ "chokidar": "^2.1.8",
+ "compression": "^1.7.4",
+ "connect-history-api-fallback": "^1.6.0",
+ "debug": "^4.1.1",
+ "del": "^4.1.1",
+ "express": "^4.17.1",
+ "html-entities": "^1.2.1",
+ "http-proxy-middleware": "0.19.1",
+ "import-local": "^2.0.0",
+ "internal-ip": "^4.3.0",
+ "ip": "^1.1.5",
+ "is-absolute-url": "^3.0.3",
+ "killable": "^1.0.1",
+ "loglevel": "^1.6.6",
+ "opn": "^5.5.0",
+ "p-retry": "^3.0.1",
+ "portfinder": "^1.0.25",
+ "schema-utils": "^1.0.0",
+ "selfsigned": "^1.10.7",
+ "semver": "^6.3.0",
+ "serve-index": "^1.9.1",
+ "sockjs": "0.3.19",
+ "sockjs-client": "1.4.0",
+ "spdy": "^4.0.1",
+ "strip-ansi": "^3.0.1",
+ "supports-color": "^6.1.0",
+ "url": "^0.11.0",
+ "webpack-dev-middleware": "^3.7.2",
+ "webpack-log": "^2.0.0",
+ "ws": "^6.2.1",
+ "yargs": "12.0.5"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "cliui": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz",
+ "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^2.1.1",
+ "strip-ansi": "^4.0.0",
+ "wrap-ansi": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "get-caller-file": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
+ "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
+ "dev": true
+ },
+ "is-absolute-url": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
+ "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+ "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+ "dev": true,
+ "requires": {
+ "number-is-nan": "^1.0.0"
+ }
+ },
+ "require-main-filename": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
+ "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
+ "dev": true
+ },
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "wrap-ansi": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
+ "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
+ "dev": true,
+ "requires": {
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1"
+ },
+ "dependencies": {
+ "string-width": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+ "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+ "dev": true,
+ "requires": {
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
+ }
+ }
+ }
+ },
+ "yargs": {
+ "version": "12.0.5",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz",
+ "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==",
+ "dev": true,
+ "requires": {
+ "cliui": "^4.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^3.0.0",
+ "get-caller-file": "^1.0.1",
+ "os-locale": "^3.0.0",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^1.0.1",
+ "set-blocking": "^2.0.0",
+ "string-width": "^2.0.0",
+ "which-module": "^2.0.0",
+ "y18n": "^3.2.1 || ^4.0.0",
+ "yargs-parser": "^11.1.1"
+ }
+ },
+ "yargs-parser": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz",
+ "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ }
+ }
+ },
+ "webpack-log": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
+ "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
+ "dev": true,
+ "requires": {
+ "ansi-colors": "^3.0.0",
+ "uuid": "^3.3.2"
+ }
+ },
+ "webpack-merge": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz",
+ "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.15"
+ }
+ },
+ "webpack-sources": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
+ "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
+ "dev": true,
+ "requires": {
+ "source-list-map": "^2.0.0",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "websocket-driver": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz",
+ "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==",
+ "dev": true,
+ "requires": {
+ "http-parser-js": ">=0.4.0 <0.4.11",
+ "safe-buffer": ">=5.1.0",
+ "websocket-extensions": ">=0.1.1"
+ }
+ },
+ "websocket-extensions": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz",
+ "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==",
+ "dev": true
+ },
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "which-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+ "dev": true
+ },
+ "word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true
+ },
+ "worker-farm": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
+ "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
+ "dev": true,
+ "requires": {
+ "errno": "~0.1.7"
+ }
+ },
+ "wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ }
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+ },
+ "write": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
+ "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==",
+ "dev": true,
+ "requires": {
+ "mkdirp": "^0.5.1"
+ }
+ },
+ "ws": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz",
+ "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==",
+ "dev": true,
+ "requires": {
+ "async-limiter": "~1.0.0"
+ }
+ },
+ "xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "dev": true
+ },
+ "y18n": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+ "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "15.1.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.1.0.tgz",
+ "integrity": "sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg==",
+ "dev": true,
+ "requires": {
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^16.1.0"
+ },
+ "dependencies": {
+ "cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ }
+ }
+ },
+ "yargs-parser": {
+ "version": "16.1.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-16.1.0.tgz",
+ "integrity": "sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ },
+ "yorkie": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz",
+ "integrity": "sha512-jcKpkthap6x63MB4TxwCyuIGkV0oYP/YRyuQU5UO0Yz/E/ZAu+653/uov+phdmO54n6BcvFRyyt0RRrWdN2mpw==",
+ "dev": true,
+ "requires": {
+ "execa": "^0.8.0",
+ "is-ci": "^1.0.10",
+ "normalize-path": "^1.0.0",
+ "strip-indent": "^2.0.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+ "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^4.0.1",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "execa": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz",
+ "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^5.0.1",
+ "get-stream": "^3.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ },
+ "get-stream": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+ "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
+ "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
+ "dev": true,
+ "requires": {
+ "pseudomap": "^1.0.2",
+ "yallist": "^2.1.2"
+ }
+ },
+ "normalize-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz",
+ "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=",
+ "dev": true
+ },
+ "yallist": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+ "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
+ "dev": true
+ }
+ }
+ }
+ }
+}
diff --git a/client/package.json b/client/package.json
new file mode 100644
index 0000000..2af6684
--- /dev/null
+++ b/client/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "client",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "serve": "vue-cli-service serve",
+ "build": "vue-cli-service build",
+ "lint": "vue-cli-service lint"
+ },
+ "dependencies": {
+ "@fortawesome/fontawesome-svg-core": "^1.2.26",
+ "@fortawesome/free-solid-svg-icons": "^5.12.0",
+ "@fortawesome/vue-fontawesome": "^0.1.9",
+ "axios": "^0.19.2",
+ "core-js": "^3.4.4",
+ "sweetalert2": "^9.7.1",
+ "tailwindcss": "^1.1.4",
+ "vue": "^2.6.10",
+ "vue-loading-overlay": "^3.2.0",
+ "vue-router": "^3.1.3",
+ "vue-toasted": "^1.1.27",
+ "vue-wysiwyg": "^1.7.2",
+ "vuex": "^3.1.2"
+ },
+ "devDependencies": {
+ "@vue/cli-plugin-babel": "^4.1.0",
+ "@vue/cli-plugin-eslint": "^4.1.0",
+ "@vue/cli-plugin-router": "^4.1.0",
+ "@vue/cli-plugin-vuex": "^4.1.0",
+ "@vue/cli-service": "^4.1.0",
+ "@vue/eslint-config-standard": "^4.0.0",
+ "babel-eslint": "^10.0.3",
+ "eslint": "^5.16.0",
+ "eslint-plugin-vue": "^5.0.0",
+ "vue-template-compiler": "^2.6.10"
+ }
+}
diff --git a/client/public/favicon.ico b/client/public/favicon.ico
new file mode 100644
index 0000000..df36fcf
Binary files /dev/null and b/client/public/favicon.ico differ
diff --git a/client/public/index.html b/client/public/index.html
new file mode 100644
index 0000000..388e3bf
--- /dev/null
+++ b/client/public/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+ client
+
+
+
+
+
+
+
diff --git a/client/src/App.vue b/client/src/App.vue
new file mode 100644
index 0000000..6075dd3
--- /dev/null
+++ b/client/src/App.vue
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/client/src/assets/logo.png b/client/src/assets/logo.png
new file mode 100644
index 0000000..f3d2503
Binary files /dev/null and b/client/src/assets/logo.png differ
diff --git a/client/src/assets/styles.css b/client/src/assets/styles.css
new file mode 100644
index 0000000..1658fc5
--- /dev/null
+++ b/client/src/assets/styles.css
@@ -0,0 +1,54891 @@
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
+
+/* Document
+ ========================================================================== */
+
+/**
+ * 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;
+}
+
+/**
+ * Render the `main` element consistently in IE.
+ */
+
+main {
+ display: block;
+}
+
+/**
+ * Correct the font size and margin on `h1` elements within `section` and
+ * `article` contexts in Chrome, Firefox, and Safari.
+ */
+
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+
+/* Grouping content
+ ========================================================================== */
+
+/**
+ * 1. Add the correct box sizing in Firefox.
+ * 2. Show the overflow in Edge and IE.
+ */
+
+hr {
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box; /* 1 */
+ height: 0; /* 1 */
+ overflow: visible; /* 2 */
+}
+
+/**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+pre {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+}
+
+/* Text-level semantics
+ ========================================================================== */
+
+/**
+ * Remove the gray background on active links in IE 10.
+ */
+
+a {
+ background-color: transparent;
+}
+
+/**
+ * 1. Remove the bottom border in Chrome 57-
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
+ */
+
+abbr[title] {
+ border-bottom: none; /* 1 */
+ text-decoration: underline; /* 2 */
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted; /* 2 */
+}
+
+/**
+ * Add the correct font weight in Chrome, Edge, and Safari.
+ */
+
+b,
+strong {
+ font-weight: bolder;
+}
+
+/**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+code,
+kbd,
+samp {
+ font-family: monospace, 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;
+}
+
+/* Embedded content
+ ========================================================================== */
+
+/**
+ * Remove the border on images inside links in IE 10.
+ */
+
+img {
+ border-style: none;
+}
+
+/* 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 */
+}
+
+/**
+ * Show the overflow in IE.
+ * 1. Show the overflow in Edge.
+ */
+
+button,
+input { /* 1 */
+ overflow: visible;
+}
+
+/**
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
+ * 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.
+ */
+
+button::-moz-focus-inner,
+[type="button"]::-moz-focus-inner,
+[type="reset"]::-moz-focus-inner,
+[type="submit"]::-moz-focus-inner {
+ border-style: none;
+ padding: 0;
+}
+
+/**
+ * Restore the focus styles unset by the previous rule.
+ */
+
+button:-moz-focusring,
+[type="button"]:-moz-focusring,
+[type="reset"]:-moz-focusring,
+[type="submit"]:-moz-focusring {
+ outline: 1px dotted ButtonText;
+}
+
+/**
+ * Correct the padding in Firefox.
+ */
+
+fieldset {
+ padding: 0.35em 0.75em 0.625em;
+}
+
+/**
+ * 1. Correct the text wrapping in Edge and IE.
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
+ * 3. Remove the padding so developers are not caught out when they zero out
+ * `fieldset` elements in all browsers.
+ */
+
+legend {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; /* 1 */
+ color: inherit; /* 2 */
+ display: table; /* 1 */
+ max-width: 100%; /* 1 */
+ padding: 0; /* 3 */
+ white-space: normal; /* 1 */
+}
+
+/**
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
+ */
+
+progress {
+ vertical-align: baseline;
+}
+
+/**
+ * Remove the default vertical scrollbar in IE 10+.
+ */
+
+textarea {
+ overflow: auto;
+}
+
+/**
+ * 1. Add the correct box sizing in IE 10.
+ * 2. Remove the padding in IE 10.
+ */
+
+[type="checkbox"],
+[type="radio"] {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * Correct the cursor style of increment and decrement buttons in Chrome.
+ */
+
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-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.
+ */
+
+[type="search"]::-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 Edge, IE 10+, and Firefox.
+ */
+
+details {
+ display: block;
+}
+
+/*
+ * Add the correct display in all browsers.
+ */
+
+summary {
+ display: list-item;
+}
+
+/* Misc
+ ========================================================================== */
+
+/**
+ * Add the correct display in IE 10+.
+ */
+
+template {
+ display: none;
+}
+
+/**
+ * Add the correct display in IE 10.
+ */
+
+[hidden] {
+ display: none;
+}
+
+/**
+ * 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.
+ */
+
+/**
+ * 1. Prevent padding and border from affecting element width
+ * https://goo.gl/pYtbK7
+ * 2. Change the default font family in all browsers (opinionated)
+ */
+
+html {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; /* 1 */
+ font-family: sans-serif; /* 2 */
+}
+
+*,
+*::before,
+*::after {
+ -webkit-box-sizing: inherit;
+ box-sizing: inherit;
+}
+
+/**
+ * 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: transparent;
+ padding: 0;
+}
+
+/**
+ * Work around a Firefox/IE bug where the transparent `button` background
+ * results in a loss of the default `button` focus styles.
+ */
+
+button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+}
+
+fieldset {
+ margin: 0;
+ padding: 0;
+}
+
+ol,
+ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+/**
+ * Tailwind custom reset styles
+ */
+
+/**
+ * 1. Use the system font stack 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: -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 */
+}
+
+/**
+ * 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 {
+ border-width: 0;
+ border-style: solid;
+ border-color: #e2e8f0;
+}
+
+/*
+ * 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::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
+ color: #a0aec0;
+}
+
+input::-moz-placeholder, textarea::-moz-placeholder {
+ color: #a0aec0;
+}
+
+input:-ms-input-placeholder, textarea:-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+input::-ms-input-placeholder, textarea::-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+input::placeholder,
+textarea::placeholder {
+ color: #a0aec0;
+}
+
+button,
+[role="button"] {
+ cursor: pointer;
+}
+
+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: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+}
+
+/**
+ * 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
+ */
+
+img,
+svg,
+video,
+canvas,
+audio,
+iframe,
+embed,
+object {
+ display: block;
+ vertical-align: middle;
+}
+
+/**
+ * Constrain images and videos to the parent width and preserve
+ * their instrinsic aspect ratio.
+ *
+ * https://github.com/mozdevs/cssremedy/issues/14
+ */
+
+img,
+video {
+ max-width: 100%;
+ height: auto;
+}
+
+.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;
+ }
+}
+
+.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\: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;
+}
+
+.appearance-none {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+}
+
+.bg-fixed {
+ background-attachment: fixed;
+}
+
+.bg-local {
+ background-attachment: local;
+}
+
+.bg-scroll {
+ background-attachment: scroll;
+}
+
+.bg-transparent {
+ background-color: transparent;
+}
+
+.bg-black {
+ background-color: #000;
+}
+
+.bg-white {
+ background-color: #fff;
+}
+
+.bg-gray-100 {
+ background-color: #f7fafc;
+}
+
+.bg-gray-200 {
+ background-color: #edf2f7;
+}
+
+.bg-gray-300 {
+ background-color: #e2e8f0;
+}
+
+.bg-gray-400 {
+ background-color: #cbd5e0;
+}
+
+.bg-gray-500 {
+ background-color: #a0aec0;
+}
+
+.bg-gray-600 {
+ background-color: #718096;
+}
+
+.bg-gray-700 {
+ background-color: #4a5568;
+}
+
+.bg-gray-800 {
+ background-color: #2d3748;
+}
+
+.bg-gray-900 {
+ background-color: #1a202c;
+}
+
+.bg-red-100 {
+ background-color: #fff5f5;
+}
+
+.bg-red-200 {
+ background-color: #fed7d7;
+}
+
+.bg-red-300 {
+ background-color: #feb2b2;
+}
+
+.bg-red-400 {
+ background-color: #fc8181;
+}
+
+.bg-red-500 {
+ background-color: #f56565;
+}
+
+.bg-red-600 {
+ background-color: #e53e3e;
+}
+
+.bg-red-700 {
+ background-color: #c53030;
+}
+
+.bg-red-800 {
+ background-color: #9b2c2c;
+}
+
+.bg-red-900 {
+ background-color: #742a2a;
+}
+
+.bg-orange-100 {
+ background-color: #fffaf0;
+}
+
+.bg-orange-200 {
+ background-color: #feebc8;
+}
+
+.bg-orange-300 {
+ background-color: #fbd38d;
+}
+
+.bg-orange-400 {
+ background-color: #f6ad55;
+}
+
+.bg-orange-500 {
+ background-color: #ed8936;
+}
+
+.bg-orange-600 {
+ background-color: #dd6b20;
+}
+
+.bg-orange-700 {
+ background-color: #c05621;
+}
+
+.bg-orange-800 {
+ background-color: #9c4221;
+}
+
+.bg-orange-900 {
+ background-color: #7b341e;
+}
+
+.bg-yellow-100 {
+ background-color: #fffff0;
+}
+
+.bg-yellow-200 {
+ background-color: #fefcbf;
+}
+
+.bg-yellow-300 {
+ background-color: #faf089;
+}
+
+.bg-yellow-400 {
+ background-color: #f6e05e;
+}
+
+.bg-yellow-500 {
+ background-color: #ecc94b;
+}
+
+.bg-yellow-600 {
+ background-color: #d69e2e;
+}
+
+.bg-yellow-700 {
+ background-color: #b7791f;
+}
+
+.bg-yellow-800 {
+ background-color: #975a16;
+}
+
+.bg-yellow-900 {
+ background-color: #744210;
+}
+
+.bg-green-100 {
+ background-color: #f0fff4;
+}
+
+.bg-green-200 {
+ background-color: #c6f6d5;
+}
+
+.bg-green-300 {
+ background-color: #9ae6b4;
+}
+
+.bg-green-400 {
+ background-color: #68d391;
+}
+
+.bg-green-500 {
+ background-color: #48bb78;
+}
+
+.bg-green-600 {
+ background-color: #38a169;
+}
+
+.bg-green-700 {
+ background-color: #2f855a;
+}
+
+.bg-green-800 {
+ background-color: #276749;
+}
+
+.bg-green-900 {
+ background-color: #22543d;
+}
+
+.bg-teal-100 {
+ background-color: #e6fffa;
+}
+
+.bg-teal-200 {
+ background-color: #b2f5ea;
+}
+
+.bg-teal-300 {
+ background-color: #81e6d9;
+}
+
+.bg-teal-400 {
+ background-color: #4fd1c5;
+}
+
+.bg-teal-500 {
+ background-color: #38b2ac;
+}
+
+.bg-teal-600 {
+ background-color: #319795;
+}
+
+.bg-teal-700 {
+ background-color: #2c7a7b;
+}
+
+.bg-teal-800 {
+ background-color: #285e61;
+}
+
+.bg-teal-900 {
+ background-color: #234e52;
+}
+
+.bg-blue-100 {
+ background-color: #ebf8ff;
+}
+
+.bg-blue-200 {
+ background-color: #bee3f8;
+}
+
+.bg-blue-300 {
+ background-color: #90cdf4;
+}
+
+.bg-blue-400 {
+ background-color: #63b3ed;
+}
+
+.bg-blue-500 {
+ background-color: #4299e1;
+}
+
+.bg-blue-600 {
+ background-color: #3182ce;
+}
+
+.bg-blue-700 {
+ background-color: #2b6cb0;
+}
+
+.bg-blue-800 {
+ background-color: #2c5282;
+}
+
+.bg-blue-900 {
+ background-color: #2a4365;
+}
+
+.bg-indigo-100 {
+ background-color: #ebf4ff;
+}
+
+.bg-indigo-200 {
+ background-color: #c3dafe;
+}
+
+.bg-indigo-300 {
+ background-color: #a3bffa;
+}
+
+.bg-indigo-400 {
+ background-color: #7f9cf5;
+}
+
+.bg-indigo-500 {
+ background-color: #667eea;
+}
+
+.bg-indigo-600 {
+ background-color: #5a67d8;
+}
+
+.bg-indigo-700 {
+ background-color: #4c51bf;
+}
+
+.bg-indigo-800 {
+ background-color: #434190;
+}
+
+.bg-indigo-900 {
+ background-color: #3c366b;
+}
+
+.bg-purple-100 {
+ background-color: #faf5ff;
+}
+
+.bg-purple-200 {
+ background-color: #e9d8fd;
+}
+
+.bg-purple-300 {
+ background-color: #d6bcfa;
+}
+
+.bg-purple-400 {
+ background-color: #b794f4;
+}
+
+.bg-purple-500 {
+ background-color: #9f7aea;
+}
+
+.bg-purple-600 {
+ background-color: #805ad5;
+}
+
+.bg-purple-700 {
+ background-color: #6b46c1;
+}
+
+.bg-purple-800 {
+ background-color: #553c9a;
+}
+
+.bg-purple-900 {
+ background-color: #44337a;
+}
+
+.bg-pink-100 {
+ background-color: #fff5f7;
+}
+
+.bg-pink-200 {
+ background-color: #fed7e2;
+}
+
+.bg-pink-300 {
+ background-color: #fbb6ce;
+}
+
+.bg-pink-400 {
+ background-color: #f687b3;
+}
+
+.bg-pink-500 {
+ background-color: #ed64a6;
+}
+
+.bg-pink-600 {
+ background-color: #d53f8c;
+}
+
+.bg-pink-700 {
+ background-color: #b83280;
+}
+
+.bg-pink-800 {
+ background-color: #97266d;
+}
+
+.bg-pink-900 {
+ background-color: #702459;
+}
+
+.hover\:bg-transparent:hover {
+ background-color: transparent;
+}
+
+.hover\:bg-black:hover {
+ background-color: #000;
+}
+
+.hover\:bg-white:hover {
+ background-color: #fff;
+}
+
+.hover\:bg-gray-100:hover {
+ background-color: #f7fafc;
+}
+
+.hover\:bg-gray-200:hover {
+ background-color: #edf2f7;
+}
+
+.hover\:bg-gray-300:hover {
+ background-color: #e2e8f0;
+}
+
+.hover\:bg-gray-400:hover {
+ background-color: #cbd5e0;
+}
+
+.hover\:bg-gray-500:hover {
+ background-color: #a0aec0;
+}
+
+.hover\:bg-gray-600:hover {
+ background-color: #718096;
+}
+
+.hover\:bg-gray-700:hover {
+ background-color: #4a5568;
+}
+
+.hover\:bg-gray-800:hover {
+ background-color: #2d3748;
+}
+
+.hover\:bg-gray-900:hover {
+ background-color: #1a202c;
+}
+
+.hover\:bg-red-100:hover {
+ background-color: #fff5f5;
+}
+
+.hover\:bg-red-200:hover {
+ background-color: #fed7d7;
+}
+
+.hover\:bg-red-300:hover {
+ background-color: #feb2b2;
+}
+
+.hover\:bg-red-400:hover {
+ background-color: #fc8181;
+}
+
+.hover\:bg-red-500:hover {
+ background-color: #f56565;
+}
+
+.hover\:bg-red-600:hover {
+ background-color: #e53e3e;
+}
+
+.hover\:bg-red-700:hover {
+ background-color: #c53030;
+}
+
+.hover\:bg-red-800:hover {
+ background-color: #9b2c2c;
+}
+
+.hover\:bg-red-900:hover {
+ background-color: #742a2a;
+}
+
+.hover\:bg-orange-100:hover {
+ background-color: #fffaf0;
+}
+
+.hover\:bg-orange-200:hover {
+ background-color: #feebc8;
+}
+
+.hover\:bg-orange-300:hover {
+ background-color: #fbd38d;
+}
+
+.hover\:bg-orange-400:hover {
+ background-color: #f6ad55;
+}
+
+.hover\:bg-orange-500:hover {
+ background-color: #ed8936;
+}
+
+.hover\:bg-orange-600:hover {
+ background-color: #dd6b20;
+}
+
+.hover\:bg-orange-700:hover {
+ background-color: #c05621;
+}
+
+.hover\:bg-orange-800:hover {
+ background-color: #9c4221;
+}
+
+.hover\:bg-orange-900:hover {
+ background-color: #7b341e;
+}
+
+.hover\:bg-yellow-100:hover {
+ background-color: #fffff0;
+}
+
+.hover\:bg-yellow-200:hover {
+ background-color: #fefcbf;
+}
+
+.hover\:bg-yellow-300:hover {
+ background-color: #faf089;
+}
+
+.hover\:bg-yellow-400:hover {
+ background-color: #f6e05e;
+}
+
+.hover\:bg-yellow-500:hover {
+ background-color: #ecc94b;
+}
+
+.hover\:bg-yellow-600:hover {
+ background-color: #d69e2e;
+}
+
+.hover\:bg-yellow-700:hover {
+ background-color: #b7791f;
+}
+
+.hover\:bg-yellow-800:hover {
+ background-color: #975a16;
+}
+
+.hover\:bg-yellow-900:hover {
+ background-color: #744210;
+}
+
+.hover\:bg-green-100:hover {
+ background-color: #f0fff4;
+}
+
+.hover\:bg-green-200:hover {
+ background-color: #c6f6d5;
+}
+
+.hover\:bg-green-300:hover {
+ background-color: #9ae6b4;
+}
+
+.hover\:bg-green-400:hover {
+ background-color: #68d391;
+}
+
+.hover\:bg-green-500:hover {
+ background-color: #48bb78;
+}
+
+.hover\:bg-green-600:hover {
+ background-color: #38a169;
+}
+
+.hover\:bg-green-700:hover {
+ background-color: #2f855a;
+}
+
+.hover\:bg-green-800:hover {
+ background-color: #276749;
+}
+
+.hover\:bg-green-900:hover {
+ background-color: #22543d;
+}
+
+.hover\:bg-teal-100:hover {
+ background-color: #e6fffa;
+}
+
+.hover\:bg-teal-200:hover {
+ background-color: #b2f5ea;
+}
+
+.hover\:bg-teal-300:hover {
+ background-color: #81e6d9;
+}
+
+.hover\:bg-teal-400:hover {
+ background-color: #4fd1c5;
+}
+
+.hover\:bg-teal-500:hover {
+ background-color: #38b2ac;
+}
+
+.hover\:bg-teal-600:hover {
+ background-color: #319795;
+}
+
+.hover\:bg-teal-700:hover {
+ background-color: #2c7a7b;
+}
+
+.hover\:bg-teal-800:hover {
+ background-color: #285e61;
+}
+
+.hover\:bg-teal-900:hover {
+ background-color: #234e52;
+}
+
+.hover\:bg-blue-100:hover {
+ background-color: #ebf8ff;
+}
+
+.hover\:bg-blue-200:hover {
+ background-color: #bee3f8;
+}
+
+.hover\:bg-blue-300:hover {
+ background-color: #90cdf4;
+}
+
+.hover\:bg-blue-400:hover {
+ background-color: #63b3ed;
+}
+
+.hover\:bg-blue-500:hover {
+ background-color: #4299e1;
+}
+
+.hover\:bg-blue-600:hover {
+ background-color: #3182ce;
+}
+
+.hover\:bg-blue-700:hover {
+ background-color: #2b6cb0;
+}
+
+.hover\:bg-blue-800:hover {
+ background-color: #2c5282;
+}
+
+.hover\:bg-blue-900:hover {
+ background-color: #2a4365;
+}
+
+.hover\:bg-indigo-100:hover {
+ background-color: #ebf4ff;
+}
+
+.hover\:bg-indigo-200:hover {
+ background-color: #c3dafe;
+}
+
+.hover\:bg-indigo-300:hover {
+ background-color: #a3bffa;
+}
+
+.hover\:bg-indigo-400:hover {
+ background-color: #7f9cf5;
+}
+
+.hover\:bg-indigo-500:hover {
+ background-color: #667eea;
+}
+
+.hover\:bg-indigo-600:hover {
+ background-color: #5a67d8;
+}
+
+.hover\:bg-indigo-700:hover {
+ background-color: #4c51bf;
+}
+
+.hover\:bg-indigo-800:hover {
+ background-color: #434190;
+}
+
+.hover\:bg-indigo-900:hover {
+ background-color: #3c366b;
+}
+
+.hover\:bg-purple-100:hover {
+ background-color: #faf5ff;
+}
+
+.hover\:bg-purple-200:hover {
+ background-color: #e9d8fd;
+}
+
+.hover\:bg-purple-300:hover {
+ background-color: #d6bcfa;
+}
+
+.hover\:bg-purple-400:hover {
+ background-color: #b794f4;
+}
+
+.hover\:bg-purple-500:hover {
+ background-color: #9f7aea;
+}
+
+.hover\:bg-purple-600:hover {
+ background-color: #805ad5;
+}
+
+.hover\:bg-purple-700:hover {
+ background-color: #6b46c1;
+}
+
+.hover\:bg-purple-800:hover {
+ background-color: #553c9a;
+}
+
+.hover\:bg-purple-900:hover {
+ background-color: #44337a;
+}
+
+.hover\:bg-pink-100:hover {
+ background-color: #fff5f7;
+}
+
+.hover\:bg-pink-200:hover {
+ background-color: #fed7e2;
+}
+
+.hover\:bg-pink-300:hover {
+ background-color: #fbb6ce;
+}
+
+.hover\:bg-pink-400:hover {
+ background-color: #f687b3;
+}
+
+.hover\:bg-pink-500:hover {
+ background-color: #ed64a6;
+}
+
+.hover\:bg-pink-600:hover {
+ background-color: #d53f8c;
+}
+
+.hover\:bg-pink-700:hover {
+ background-color: #b83280;
+}
+
+.hover\:bg-pink-800:hover {
+ background-color: #97266d;
+}
+
+.hover\:bg-pink-900:hover {
+ background-color: #702459;
+}
+
+.focus\:bg-transparent:focus {
+ background-color: transparent;
+}
+
+.focus\:bg-black:focus {
+ background-color: #000;
+}
+
+.focus\:bg-white:focus {
+ background-color: #fff;
+}
+
+.focus\:bg-gray-100:focus {
+ background-color: #f7fafc;
+}
+
+.focus\:bg-gray-200:focus {
+ background-color: #edf2f7;
+}
+
+.focus\:bg-gray-300:focus {
+ background-color: #e2e8f0;
+}
+
+.focus\:bg-gray-400:focus {
+ background-color: #cbd5e0;
+}
+
+.focus\:bg-gray-500:focus {
+ background-color: #a0aec0;
+}
+
+.focus\:bg-gray-600:focus {
+ background-color: #718096;
+}
+
+.focus\:bg-gray-700:focus {
+ background-color: #4a5568;
+}
+
+.focus\:bg-gray-800:focus {
+ background-color: #2d3748;
+}
+
+.focus\:bg-gray-900:focus {
+ background-color: #1a202c;
+}
+
+.focus\:bg-red-100:focus {
+ background-color: #fff5f5;
+}
+
+.focus\:bg-red-200:focus {
+ background-color: #fed7d7;
+}
+
+.focus\:bg-red-300:focus {
+ background-color: #feb2b2;
+}
+
+.focus\:bg-red-400:focus {
+ background-color: #fc8181;
+}
+
+.focus\:bg-red-500:focus {
+ background-color: #f56565;
+}
+
+.focus\:bg-red-600:focus {
+ background-color: #e53e3e;
+}
+
+.focus\:bg-red-700:focus {
+ background-color: #c53030;
+}
+
+.focus\:bg-red-800:focus {
+ background-color: #9b2c2c;
+}
+
+.focus\:bg-red-900:focus {
+ background-color: #742a2a;
+}
+
+.focus\:bg-orange-100:focus {
+ background-color: #fffaf0;
+}
+
+.focus\:bg-orange-200:focus {
+ background-color: #feebc8;
+}
+
+.focus\:bg-orange-300:focus {
+ background-color: #fbd38d;
+}
+
+.focus\:bg-orange-400:focus {
+ background-color: #f6ad55;
+}
+
+.focus\:bg-orange-500:focus {
+ background-color: #ed8936;
+}
+
+.focus\:bg-orange-600:focus {
+ background-color: #dd6b20;
+}
+
+.focus\:bg-orange-700:focus {
+ background-color: #c05621;
+}
+
+.focus\:bg-orange-800:focus {
+ background-color: #9c4221;
+}
+
+.focus\:bg-orange-900:focus {
+ background-color: #7b341e;
+}
+
+.focus\:bg-yellow-100:focus {
+ background-color: #fffff0;
+}
+
+.focus\:bg-yellow-200:focus {
+ background-color: #fefcbf;
+}
+
+.focus\:bg-yellow-300:focus {
+ background-color: #faf089;
+}
+
+.focus\:bg-yellow-400:focus {
+ background-color: #f6e05e;
+}
+
+.focus\:bg-yellow-500:focus {
+ background-color: #ecc94b;
+}
+
+.focus\:bg-yellow-600:focus {
+ background-color: #d69e2e;
+}
+
+.focus\:bg-yellow-700:focus {
+ background-color: #b7791f;
+}
+
+.focus\:bg-yellow-800:focus {
+ background-color: #975a16;
+}
+
+.focus\:bg-yellow-900:focus {
+ background-color: #744210;
+}
+
+.focus\:bg-green-100:focus {
+ background-color: #f0fff4;
+}
+
+.focus\:bg-green-200:focus {
+ background-color: #c6f6d5;
+}
+
+.focus\:bg-green-300:focus {
+ background-color: #9ae6b4;
+}
+
+.focus\:bg-green-400:focus {
+ background-color: #68d391;
+}
+
+.focus\:bg-green-500:focus {
+ background-color: #48bb78;
+}
+
+.focus\:bg-green-600:focus {
+ background-color: #38a169;
+}
+
+.focus\:bg-green-700:focus {
+ background-color: #2f855a;
+}
+
+.focus\:bg-green-800:focus {
+ background-color: #276749;
+}
+
+.focus\:bg-green-900:focus {
+ background-color: #22543d;
+}
+
+.focus\:bg-teal-100:focus {
+ background-color: #e6fffa;
+}
+
+.focus\:bg-teal-200:focus {
+ background-color: #b2f5ea;
+}
+
+.focus\:bg-teal-300:focus {
+ background-color: #81e6d9;
+}
+
+.focus\:bg-teal-400:focus {
+ background-color: #4fd1c5;
+}
+
+.focus\:bg-teal-500:focus {
+ background-color: #38b2ac;
+}
+
+.focus\:bg-teal-600:focus {
+ background-color: #319795;
+}
+
+.focus\:bg-teal-700:focus {
+ background-color: #2c7a7b;
+}
+
+.focus\:bg-teal-800:focus {
+ background-color: #285e61;
+}
+
+.focus\:bg-teal-900:focus {
+ background-color: #234e52;
+}
+
+.focus\:bg-blue-100:focus {
+ background-color: #ebf8ff;
+}
+
+.focus\:bg-blue-200:focus {
+ background-color: #bee3f8;
+}
+
+.focus\:bg-blue-300:focus {
+ background-color: #90cdf4;
+}
+
+.focus\:bg-blue-400:focus {
+ background-color: #63b3ed;
+}
+
+.focus\:bg-blue-500:focus {
+ background-color: #4299e1;
+}
+
+.focus\:bg-blue-600:focus {
+ background-color: #3182ce;
+}
+
+.focus\:bg-blue-700:focus {
+ background-color: #2b6cb0;
+}
+
+.focus\:bg-blue-800:focus {
+ background-color: #2c5282;
+}
+
+.focus\:bg-blue-900:focus {
+ background-color: #2a4365;
+}
+
+.focus\:bg-indigo-100:focus {
+ background-color: #ebf4ff;
+}
+
+.focus\:bg-indigo-200:focus {
+ background-color: #c3dafe;
+}
+
+.focus\:bg-indigo-300:focus {
+ background-color: #a3bffa;
+}
+
+.focus\:bg-indigo-400:focus {
+ background-color: #7f9cf5;
+}
+
+.focus\:bg-indigo-500:focus {
+ background-color: #667eea;
+}
+
+.focus\:bg-indigo-600:focus {
+ background-color: #5a67d8;
+}
+
+.focus\:bg-indigo-700:focus {
+ background-color: #4c51bf;
+}
+
+.focus\:bg-indigo-800:focus {
+ background-color: #434190;
+}
+
+.focus\:bg-indigo-900:focus {
+ background-color: #3c366b;
+}
+
+.focus\:bg-purple-100:focus {
+ background-color: #faf5ff;
+}
+
+.focus\:bg-purple-200:focus {
+ background-color: #e9d8fd;
+}
+
+.focus\:bg-purple-300:focus {
+ background-color: #d6bcfa;
+}
+
+.focus\:bg-purple-400:focus {
+ background-color: #b794f4;
+}
+
+.focus\:bg-purple-500:focus {
+ background-color: #9f7aea;
+}
+
+.focus\:bg-purple-600:focus {
+ background-color: #805ad5;
+}
+
+.focus\:bg-purple-700:focus {
+ background-color: #6b46c1;
+}
+
+.focus\:bg-purple-800:focus {
+ background-color: #553c9a;
+}
+
+.focus\:bg-purple-900:focus {
+ background-color: #44337a;
+}
+
+.focus\:bg-pink-100:focus {
+ background-color: #fff5f7;
+}
+
+.focus\:bg-pink-200:focus {
+ background-color: #fed7e2;
+}
+
+.focus\:bg-pink-300:focus {
+ background-color: #fbb6ce;
+}
+
+.focus\:bg-pink-400:focus {
+ background-color: #f687b3;
+}
+
+.focus\:bg-pink-500:focus {
+ background-color: #ed64a6;
+}
+
+.focus\:bg-pink-600:focus {
+ background-color: #d53f8c;
+}
+
+.focus\:bg-pink-700:focus {
+ background-color: #b83280;
+}
+
+.focus\:bg-pink-800:focus {
+ background-color: #97266d;
+}
+
+.focus\:bg-pink-900:focus {
+ background-color: #702459;
+}
+
+.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-auto {
+ background-size: auto;
+}
+
+.bg-cover {
+ background-size: cover;
+}
+
+.bg-contain {
+ background-size: contain;
+}
+
+.border-collapse {
+ border-collapse: collapse;
+}
+
+.border-separate {
+ border-collapse: separate;
+}
+
+.border-transparent {
+ border-color: transparent;
+}
+
+.border-black {
+ border-color: #000;
+}
+
+.border-white {
+ border-color: #fff;
+}
+
+.border-gray-100 {
+ border-color: #f7fafc;
+}
+
+.border-gray-200 {
+ border-color: #edf2f7;
+}
+
+.border-gray-300 {
+ border-color: #e2e8f0;
+}
+
+.border-gray-400 {
+ border-color: #cbd5e0;
+}
+
+.border-gray-500 {
+ border-color: #a0aec0;
+}
+
+.border-gray-600 {
+ border-color: #718096;
+}
+
+.border-gray-700 {
+ border-color: #4a5568;
+}
+
+.border-gray-800 {
+ border-color: #2d3748;
+}
+
+.border-gray-900 {
+ border-color: #1a202c;
+}
+
+.border-red-100 {
+ border-color: #fff5f5;
+}
+
+.border-red-200 {
+ border-color: #fed7d7;
+}
+
+.border-red-300 {
+ border-color: #feb2b2;
+}
+
+.border-red-400 {
+ border-color: #fc8181;
+}
+
+.border-red-500 {
+ border-color: #f56565;
+}
+
+.border-red-600 {
+ border-color: #e53e3e;
+}
+
+.border-red-700 {
+ border-color: #c53030;
+}
+
+.border-red-800 {
+ border-color: #9b2c2c;
+}
+
+.border-red-900 {
+ border-color: #742a2a;
+}
+
+.border-orange-100 {
+ border-color: #fffaf0;
+}
+
+.border-orange-200 {
+ border-color: #feebc8;
+}
+
+.border-orange-300 {
+ border-color: #fbd38d;
+}
+
+.border-orange-400 {
+ border-color: #f6ad55;
+}
+
+.border-orange-500 {
+ border-color: #ed8936;
+}
+
+.border-orange-600 {
+ border-color: #dd6b20;
+}
+
+.border-orange-700 {
+ border-color: #c05621;
+}
+
+.border-orange-800 {
+ border-color: #9c4221;
+}
+
+.border-orange-900 {
+ border-color: #7b341e;
+}
+
+.border-yellow-100 {
+ border-color: #fffff0;
+}
+
+.border-yellow-200 {
+ border-color: #fefcbf;
+}
+
+.border-yellow-300 {
+ border-color: #faf089;
+}
+
+.border-yellow-400 {
+ border-color: #f6e05e;
+}
+
+.border-yellow-500 {
+ border-color: #ecc94b;
+}
+
+.border-yellow-600 {
+ border-color: #d69e2e;
+}
+
+.border-yellow-700 {
+ border-color: #b7791f;
+}
+
+.border-yellow-800 {
+ border-color: #975a16;
+}
+
+.border-yellow-900 {
+ border-color: #744210;
+}
+
+.border-green-100 {
+ border-color: #f0fff4;
+}
+
+.border-green-200 {
+ border-color: #c6f6d5;
+}
+
+.border-green-300 {
+ border-color: #9ae6b4;
+}
+
+.border-green-400 {
+ border-color: #68d391;
+}
+
+.border-green-500 {
+ border-color: #48bb78;
+}
+
+.border-green-600 {
+ border-color: #38a169;
+}
+
+.border-green-700 {
+ border-color: #2f855a;
+}
+
+.border-green-800 {
+ border-color: #276749;
+}
+
+.border-green-900 {
+ border-color: #22543d;
+}
+
+.border-teal-100 {
+ border-color: #e6fffa;
+}
+
+.border-teal-200 {
+ border-color: #b2f5ea;
+}
+
+.border-teal-300 {
+ border-color: #81e6d9;
+}
+
+.border-teal-400 {
+ border-color: #4fd1c5;
+}
+
+.border-teal-500 {
+ border-color: #38b2ac;
+}
+
+.border-teal-600 {
+ border-color: #319795;
+}
+
+.border-teal-700 {
+ border-color: #2c7a7b;
+}
+
+.border-teal-800 {
+ border-color: #285e61;
+}
+
+.border-teal-900 {
+ border-color: #234e52;
+}
+
+.border-blue-100 {
+ border-color: #ebf8ff;
+}
+
+.border-blue-200 {
+ border-color: #bee3f8;
+}
+
+.border-blue-300 {
+ border-color: #90cdf4;
+}
+
+.border-blue-400 {
+ border-color: #63b3ed;
+}
+
+.border-blue-500 {
+ border-color: #4299e1;
+}
+
+.border-blue-600 {
+ border-color: #3182ce;
+}
+
+.border-blue-700 {
+ border-color: #2b6cb0;
+}
+
+.border-blue-800 {
+ border-color: #2c5282;
+}
+
+.border-blue-900 {
+ border-color: #2a4365;
+}
+
+.border-indigo-100 {
+ border-color: #ebf4ff;
+}
+
+.border-indigo-200 {
+ border-color: #c3dafe;
+}
+
+.border-indigo-300 {
+ border-color: #a3bffa;
+}
+
+.border-indigo-400 {
+ border-color: #7f9cf5;
+}
+
+.border-indigo-500 {
+ border-color: #667eea;
+}
+
+.border-indigo-600 {
+ border-color: #5a67d8;
+}
+
+.border-indigo-700 {
+ border-color: #4c51bf;
+}
+
+.border-indigo-800 {
+ border-color: #434190;
+}
+
+.border-indigo-900 {
+ border-color: #3c366b;
+}
+
+.border-purple-100 {
+ border-color: #faf5ff;
+}
+
+.border-purple-200 {
+ border-color: #e9d8fd;
+}
+
+.border-purple-300 {
+ border-color: #d6bcfa;
+}
+
+.border-purple-400 {
+ border-color: #b794f4;
+}
+
+.border-purple-500 {
+ border-color: #9f7aea;
+}
+
+.border-purple-600 {
+ border-color: #805ad5;
+}
+
+.border-purple-700 {
+ border-color: #6b46c1;
+}
+
+.border-purple-800 {
+ border-color: #553c9a;
+}
+
+.border-purple-900 {
+ border-color: #44337a;
+}
+
+.border-pink-100 {
+ border-color: #fff5f7;
+}
+
+.border-pink-200 {
+ border-color: #fed7e2;
+}
+
+.border-pink-300 {
+ border-color: #fbb6ce;
+}
+
+.border-pink-400 {
+ border-color: #f687b3;
+}
+
+.border-pink-500 {
+ border-color: #ed64a6;
+}
+
+.border-pink-600 {
+ border-color: #d53f8c;
+}
+
+.border-pink-700 {
+ border-color: #b83280;
+}
+
+.border-pink-800 {
+ border-color: #97266d;
+}
+
+.border-pink-900 {
+ border-color: #702459;
+}
+
+.hover\:border-transparent:hover {
+ border-color: transparent;
+}
+
+.hover\:border-black:hover {
+ border-color: #000;
+}
+
+.hover\:border-white:hover {
+ border-color: #fff;
+}
+
+.hover\:border-gray-100:hover {
+ border-color: #f7fafc;
+}
+
+.hover\:border-gray-200:hover {
+ border-color: #edf2f7;
+}
+
+.hover\:border-gray-300:hover {
+ border-color: #e2e8f0;
+}
+
+.hover\:border-gray-400:hover {
+ border-color: #cbd5e0;
+}
+
+.hover\:border-gray-500:hover {
+ border-color: #a0aec0;
+}
+
+.hover\:border-gray-600:hover {
+ border-color: #718096;
+}
+
+.hover\:border-gray-700:hover {
+ border-color: #4a5568;
+}
+
+.hover\:border-gray-800:hover {
+ border-color: #2d3748;
+}
+
+.hover\:border-gray-900:hover {
+ border-color: #1a202c;
+}
+
+.hover\:border-red-100:hover {
+ border-color: #fff5f5;
+}
+
+.hover\:border-red-200:hover {
+ border-color: #fed7d7;
+}
+
+.hover\:border-red-300:hover {
+ border-color: #feb2b2;
+}
+
+.hover\:border-red-400:hover {
+ border-color: #fc8181;
+}
+
+.hover\:border-red-500:hover {
+ border-color: #f56565;
+}
+
+.hover\:border-red-600:hover {
+ border-color: #e53e3e;
+}
+
+.hover\:border-red-700:hover {
+ border-color: #c53030;
+}
+
+.hover\:border-red-800:hover {
+ border-color: #9b2c2c;
+}
+
+.hover\:border-red-900:hover {
+ border-color: #742a2a;
+}
+
+.hover\:border-orange-100:hover {
+ border-color: #fffaf0;
+}
+
+.hover\:border-orange-200:hover {
+ border-color: #feebc8;
+}
+
+.hover\:border-orange-300:hover {
+ border-color: #fbd38d;
+}
+
+.hover\:border-orange-400:hover {
+ border-color: #f6ad55;
+}
+
+.hover\:border-orange-500:hover {
+ border-color: #ed8936;
+}
+
+.hover\:border-orange-600:hover {
+ border-color: #dd6b20;
+}
+
+.hover\:border-orange-700:hover {
+ border-color: #c05621;
+}
+
+.hover\:border-orange-800:hover {
+ border-color: #9c4221;
+}
+
+.hover\:border-orange-900:hover {
+ border-color: #7b341e;
+}
+
+.hover\:border-yellow-100:hover {
+ border-color: #fffff0;
+}
+
+.hover\:border-yellow-200:hover {
+ border-color: #fefcbf;
+}
+
+.hover\:border-yellow-300:hover {
+ border-color: #faf089;
+}
+
+.hover\:border-yellow-400:hover {
+ border-color: #f6e05e;
+}
+
+.hover\:border-yellow-500:hover {
+ border-color: #ecc94b;
+}
+
+.hover\:border-yellow-600:hover {
+ border-color: #d69e2e;
+}
+
+.hover\:border-yellow-700:hover {
+ border-color: #b7791f;
+}
+
+.hover\:border-yellow-800:hover {
+ border-color: #975a16;
+}
+
+.hover\:border-yellow-900:hover {
+ border-color: #744210;
+}
+
+.hover\:border-green-100:hover {
+ border-color: #f0fff4;
+}
+
+.hover\:border-green-200:hover {
+ border-color: #c6f6d5;
+}
+
+.hover\:border-green-300:hover {
+ border-color: #9ae6b4;
+}
+
+.hover\:border-green-400:hover {
+ border-color: #68d391;
+}
+
+.hover\:border-green-500:hover {
+ border-color: #48bb78;
+}
+
+.hover\:border-green-600:hover {
+ border-color: #38a169;
+}
+
+.hover\:border-green-700:hover {
+ border-color: #2f855a;
+}
+
+.hover\:border-green-800:hover {
+ border-color: #276749;
+}
+
+.hover\:border-green-900:hover {
+ border-color: #22543d;
+}
+
+.hover\:border-teal-100:hover {
+ border-color: #e6fffa;
+}
+
+.hover\:border-teal-200:hover {
+ border-color: #b2f5ea;
+}
+
+.hover\:border-teal-300:hover {
+ border-color: #81e6d9;
+}
+
+.hover\:border-teal-400:hover {
+ border-color: #4fd1c5;
+}
+
+.hover\:border-teal-500:hover {
+ border-color: #38b2ac;
+}
+
+.hover\:border-teal-600:hover {
+ border-color: #319795;
+}
+
+.hover\:border-teal-700:hover {
+ border-color: #2c7a7b;
+}
+
+.hover\:border-teal-800:hover {
+ border-color: #285e61;
+}
+
+.hover\:border-teal-900:hover {
+ border-color: #234e52;
+}
+
+.hover\:border-blue-100:hover {
+ border-color: #ebf8ff;
+}
+
+.hover\:border-blue-200:hover {
+ border-color: #bee3f8;
+}
+
+.hover\:border-blue-300:hover {
+ border-color: #90cdf4;
+}
+
+.hover\:border-blue-400:hover {
+ border-color: #63b3ed;
+}
+
+.hover\:border-blue-500:hover {
+ border-color: #4299e1;
+}
+
+.hover\:border-blue-600:hover {
+ border-color: #3182ce;
+}
+
+.hover\:border-blue-700:hover {
+ border-color: #2b6cb0;
+}
+
+.hover\:border-blue-800:hover {
+ border-color: #2c5282;
+}
+
+.hover\:border-blue-900:hover {
+ border-color: #2a4365;
+}
+
+.hover\:border-indigo-100:hover {
+ border-color: #ebf4ff;
+}
+
+.hover\:border-indigo-200:hover {
+ border-color: #c3dafe;
+}
+
+.hover\:border-indigo-300:hover {
+ border-color: #a3bffa;
+}
+
+.hover\:border-indigo-400:hover {
+ border-color: #7f9cf5;
+}
+
+.hover\:border-indigo-500:hover {
+ border-color: #667eea;
+}
+
+.hover\:border-indigo-600:hover {
+ border-color: #5a67d8;
+}
+
+.hover\:border-indigo-700:hover {
+ border-color: #4c51bf;
+}
+
+.hover\:border-indigo-800:hover {
+ border-color: #434190;
+}
+
+.hover\:border-indigo-900:hover {
+ border-color: #3c366b;
+}
+
+.hover\:border-purple-100:hover {
+ border-color: #faf5ff;
+}
+
+.hover\:border-purple-200:hover {
+ border-color: #e9d8fd;
+}
+
+.hover\:border-purple-300:hover {
+ border-color: #d6bcfa;
+}
+
+.hover\:border-purple-400:hover {
+ border-color: #b794f4;
+}
+
+.hover\:border-purple-500:hover {
+ border-color: #9f7aea;
+}
+
+.hover\:border-purple-600:hover {
+ border-color: #805ad5;
+}
+
+.hover\:border-purple-700:hover {
+ border-color: #6b46c1;
+}
+
+.hover\:border-purple-800:hover {
+ border-color: #553c9a;
+}
+
+.hover\:border-purple-900:hover {
+ border-color: #44337a;
+}
+
+.hover\:border-pink-100:hover {
+ border-color: #fff5f7;
+}
+
+.hover\:border-pink-200:hover {
+ border-color: #fed7e2;
+}
+
+.hover\:border-pink-300:hover {
+ border-color: #fbb6ce;
+}
+
+.hover\:border-pink-400:hover {
+ border-color: #f687b3;
+}
+
+.hover\:border-pink-500:hover {
+ border-color: #ed64a6;
+}
+
+.hover\:border-pink-600:hover {
+ border-color: #d53f8c;
+}
+
+.hover\:border-pink-700:hover {
+ border-color: #b83280;
+}
+
+.hover\:border-pink-800:hover {
+ border-color: #97266d;
+}
+
+.hover\:border-pink-900:hover {
+ border-color: #702459;
+}
+
+.focus\:border-transparent:focus {
+ border-color: transparent;
+}
+
+.focus\:border-black:focus {
+ border-color: #000;
+}
+
+.focus\:border-white:focus {
+ border-color: #fff;
+}
+
+.focus\:border-gray-100:focus {
+ border-color: #f7fafc;
+}
+
+.focus\:border-gray-200:focus {
+ border-color: #edf2f7;
+}
+
+.focus\:border-gray-300:focus {
+ border-color: #e2e8f0;
+}
+
+.focus\:border-gray-400:focus {
+ border-color: #cbd5e0;
+}
+
+.focus\:border-gray-500:focus {
+ border-color: #a0aec0;
+}
+
+.focus\:border-gray-600:focus {
+ border-color: #718096;
+}
+
+.focus\:border-gray-700:focus {
+ border-color: #4a5568;
+}
+
+.focus\:border-gray-800:focus {
+ border-color: #2d3748;
+}
+
+.focus\:border-gray-900:focus {
+ border-color: #1a202c;
+}
+
+.focus\:border-red-100:focus {
+ border-color: #fff5f5;
+}
+
+.focus\:border-red-200:focus {
+ border-color: #fed7d7;
+}
+
+.focus\:border-red-300:focus {
+ border-color: #feb2b2;
+}
+
+.focus\:border-red-400:focus {
+ border-color: #fc8181;
+}
+
+.focus\:border-red-500:focus {
+ border-color: #f56565;
+}
+
+.focus\:border-red-600:focus {
+ border-color: #e53e3e;
+}
+
+.focus\:border-red-700:focus {
+ border-color: #c53030;
+}
+
+.focus\:border-red-800:focus {
+ border-color: #9b2c2c;
+}
+
+.focus\:border-red-900:focus {
+ border-color: #742a2a;
+}
+
+.focus\:border-orange-100:focus {
+ border-color: #fffaf0;
+}
+
+.focus\:border-orange-200:focus {
+ border-color: #feebc8;
+}
+
+.focus\:border-orange-300:focus {
+ border-color: #fbd38d;
+}
+
+.focus\:border-orange-400:focus {
+ border-color: #f6ad55;
+}
+
+.focus\:border-orange-500:focus {
+ border-color: #ed8936;
+}
+
+.focus\:border-orange-600:focus {
+ border-color: #dd6b20;
+}
+
+.focus\:border-orange-700:focus {
+ border-color: #c05621;
+}
+
+.focus\:border-orange-800:focus {
+ border-color: #9c4221;
+}
+
+.focus\:border-orange-900:focus {
+ border-color: #7b341e;
+}
+
+.focus\:border-yellow-100:focus {
+ border-color: #fffff0;
+}
+
+.focus\:border-yellow-200:focus {
+ border-color: #fefcbf;
+}
+
+.focus\:border-yellow-300:focus {
+ border-color: #faf089;
+}
+
+.focus\:border-yellow-400:focus {
+ border-color: #f6e05e;
+}
+
+.focus\:border-yellow-500:focus {
+ border-color: #ecc94b;
+}
+
+.focus\:border-yellow-600:focus {
+ border-color: #d69e2e;
+}
+
+.focus\:border-yellow-700:focus {
+ border-color: #b7791f;
+}
+
+.focus\:border-yellow-800:focus {
+ border-color: #975a16;
+}
+
+.focus\:border-yellow-900:focus {
+ border-color: #744210;
+}
+
+.focus\:border-green-100:focus {
+ border-color: #f0fff4;
+}
+
+.focus\:border-green-200:focus {
+ border-color: #c6f6d5;
+}
+
+.focus\:border-green-300:focus {
+ border-color: #9ae6b4;
+}
+
+.focus\:border-green-400:focus {
+ border-color: #68d391;
+}
+
+.focus\:border-green-500:focus {
+ border-color: #48bb78;
+}
+
+.focus\:border-green-600:focus {
+ border-color: #38a169;
+}
+
+.focus\:border-green-700:focus {
+ border-color: #2f855a;
+}
+
+.focus\:border-green-800:focus {
+ border-color: #276749;
+}
+
+.focus\:border-green-900:focus {
+ border-color: #22543d;
+}
+
+.focus\:border-teal-100:focus {
+ border-color: #e6fffa;
+}
+
+.focus\:border-teal-200:focus {
+ border-color: #b2f5ea;
+}
+
+.focus\:border-teal-300:focus {
+ border-color: #81e6d9;
+}
+
+.focus\:border-teal-400:focus {
+ border-color: #4fd1c5;
+}
+
+.focus\:border-teal-500:focus {
+ border-color: #38b2ac;
+}
+
+.focus\:border-teal-600:focus {
+ border-color: #319795;
+}
+
+.focus\:border-teal-700:focus {
+ border-color: #2c7a7b;
+}
+
+.focus\:border-teal-800:focus {
+ border-color: #285e61;
+}
+
+.focus\:border-teal-900:focus {
+ border-color: #234e52;
+}
+
+.focus\:border-blue-100:focus {
+ border-color: #ebf8ff;
+}
+
+.focus\:border-blue-200:focus {
+ border-color: #bee3f8;
+}
+
+.focus\:border-blue-300:focus {
+ border-color: #90cdf4;
+}
+
+.focus\:border-blue-400:focus {
+ border-color: #63b3ed;
+}
+
+.focus\:border-blue-500:focus {
+ border-color: #4299e1;
+}
+
+.focus\:border-blue-600:focus {
+ border-color: #3182ce;
+}
+
+.focus\:border-blue-700:focus {
+ border-color: #2b6cb0;
+}
+
+.focus\:border-blue-800:focus {
+ border-color: #2c5282;
+}
+
+.focus\:border-blue-900:focus {
+ border-color: #2a4365;
+}
+
+.focus\:border-indigo-100:focus {
+ border-color: #ebf4ff;
+}
+
+.focus\:border-indigo-200:focus {
+ border-color: #c3dafe;
+}
+
+.focus\:border-indigo-300:focus {
+ border-color: #a3bffa;
+}
+
+.focus\:border-indigo-400:focus {
+ border-color: #7f9cf5;
+}
+
+.focus\:border-indigo-500:focus {
+ border-color: #667eea;
+}
+
+.focus\:border-indigo-600:focus {
+ border-color: #5a67d8;
+}
+
+.focus\:border-indigo-700:focus {
+ border-color: #4c51bf;
+}
+
+.focus\:border-indigo-800:focus {
+ border-color: #434190;
+}
+
+.focus\:border-indigo-900:focus {
+ border-color: #3c366b;
+}
+
+.focus\:border-purple-100:focus {
+ border-color: #faf5ff;
+}
+
+.focus\:border-purple-200:focus {
+ border-color: #e9d8fd;
+}
+
+.focus\:border-purple-300:focus {
+ border-color: #d6bcfa;
+}
+
+.focus\:border-purple-400:focus {
+ border-color: #b794f4;
+}
+
+.focus\:border-purple-500:focus {
+ border-color: #9f7aea;
+}
+
+.focus\:border-purple-600:focus {
+ border-color: #805ad5;
+}
+
+.focus\:border-purple-700:focus {
+ border-color: #6b46c1;
+}
+
+.focus\:border-purple-800:focus {
+ border-color: #553c9a;
+}
+
+.focus\:border-purple-900:focus {
+ border-color: #44337a;
+}
+
+.focus\:border-pink-100:focus {
+ border-color: #fff5f7;
+}
+
+.focus\:border-pink-200:focus {
+ border-color: #fed7e2;
+}
+
+.focus\:border-pink-300:focus {
+ border-color: #fbb6ce;
+}
+
+.focus\:border-pink-400:focus {
+ border-color: #f687b3;
+}
+
+.focus\:border-pink-500:focus {
+ border-color: #ed64a6;
+}
+
+.focus\:border-pink-600:focus {
+ border-color: #d53f8c;
+}
+
+.focus\:border-pink-700:focus {
+ border-color: #b83280;
+}
+
+.focus\:border-pink-800:focus {
+ border-color: #97266d;
+}
+
+.focus\:border-pink-900:focus {
+ border-color: #702459;
+}
+
+.rounded-none {
+ border-radius: 0;
+}
+
+.rounded-sm {
+ border-radius: 0.125rem;
+}
+
+.rounded {
+ border-radius: 0.25rem;
+}
+
+.rounded-lg {
+ border-radius: 0.5rem;
+}
+
+.rounded-full {
+ border-radius: 9999px;
+}
+
+.rounded-t-none {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+
+.rounded-r-none {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.rounded-b-none {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.rounded-l-none {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.rounded-t-sm {
+ border-top-left-radius: 0.125rem;
+ border-top-right-radius: 0.125rem;
+}
+
+.rounded-r-sm {
+ border-top-right-radius: 0.125rem;
+ border-bottom-right-radius: 0.125rem;
+}
+
+.rounded-b-sm {
+ border-bottom-right-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+}
+
+.rounded-l-sm {
+ border-top-left-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+}
+
+.rounded-t {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+}
+
+.rounded-r {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+}
+
+.rounded-b {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+}
+
+.rounded-l {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+}
+
+.rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+}
+
+.rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+}
+
+.rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+}
+
+.rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+}
+
+.rounded-t-full {
+ border-top-left-radius: 9999px;
+ border-top-right-radius: 9999px;
+}
+
+.rounded-r-full {
+ border-top-right-radius: 9999px;
+ border-bottom-right-radius: 9999px;
+}
+
+.rounded-b-full {
+ border-bottom-right-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+}
+
+.rounded-l-full {
+ border-top-left-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+}
+
+.rounded-tl-none {
+ border-top-left-radius: 0;
+}
+
+.rounded-tr-none {
+ border-top-right-radius: 0;
+}
+
+.rounded-br-none {
+ border-bottom-right-radius: 0;
+}
+
+.rounded-bl-none {
+ border-bottom-left-radius: 0;
+}
+
+.rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+}
+
+.rounded-tr-sm {
+ border-top-right-radius: 0.125rem;
+}
+
+.rounded-br-sm {
+ border-bottom-right-radius: 0.125rem;
+}
+
+.rounded-bl-sm {
+ border-bottom-left-radius: 0.125rem;
+}
+
+.rounded-tl {
+ border-top-left-radius: 0.25rem;
+}
+
+.rounded-tr {
+ border-top-right-radius: 0.25rem;
+}
+
+.rounded-br {
+ border-bottom-right-radius: 0.25rem;
+}
+
+.rounded-bl {
+ border-bottom-left-radius: 0.25rem;
+}
+
+.rounded-tl-lg {
+ border-top-left-radius: 0.5rem;
+}
+
+.rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+}
+
+.rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+}
+
+.rounded-bl-lg {
+ border-bottom-left-radius: 0.5rem;
+}
+
+.rounded-tl-full {
+ border-top-left-radius: 9999px;
+}
+
+.rounded-tr-full {
+ border-top-right-radius: 9999px;
+}
+
+.rounded-br-full {
+ border-bottom-right-radius: 9999px;
+}
+
+.rounded-bl-full {
+ border-bottom-left-radius: 9999px;
+}
+
+.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-0 {
+ border-width: 0;
+}
+
+.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: 0;
+}
+
+.border-r-0 {
+ border-right-width: 0;
+}
+
+.border-b-0 {
+ border-bottom-width: 0;
+}
+
+.border-l-0 {
+ border-left-width: 0;
+}
+
+.border-t-2 {
+ border-top-width: 2px;
+}
+
+.border-r-2 {
+ border-right-width: 2px;
+}
+
+.border-b-2 {
+ border-bottom-width: 2px;
+}
+
+.border-l-2 {
+ border-left-width: 2px;
+}
+
+.border-t-4 {
+ border-top-width: 4px;
+}
+
+.border-r-4 {
+ border-right-width: 4px;
+}
+
+.border-b-4 {
+ border-bottom-width: 4px;
+}
+
+.border-l-4 {
+ border-left-width: 4px;
+}
+
+.border-t-8 {
+ border-top-width: 8px;
+}
+
+.border-r-8 {
+ border-right-width: 8px;
+}
+
+.border-b-8 {
+ border-bottom-width: 8px;
+}
+
+.border-l-8 {
+ border-left-width: 8px;
+}
+
+.border-t {
+ border-top-width: 1px;
+}
+
+.border-r {
+ border-right-width: 1px;
+}
+
+.border-b {
+ border-bottom-width: 1px;
+}
+
+.border-l {
+ border-left-width: 1px;
+}
+
+.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-not-allowed {
+ cursor: not-allowed;
+}
+
+.block {
+ display: block;
+}
+
+.inline-block {
+ display: inline-block;
+}
+
+.inline {
+ display: inline;
+}
+
+.flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+}
+
+.inline-flex {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+}
+
+.table {
+ display: table;
+}
+
+.table-row {
+ display: table-row;
+}
+
+.table-cell {
+ display: table-cell;
+}
+
+.hidden {
+ display: none;
+}
+
+.flex-row {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+}
+
+.flex-row-reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+}
+
+.flex-col {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+
+.flex-col-reverse {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+}
+
+.flex-wrap {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+
+.flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+}
+
+.flex-no-wrap {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+}
+
+.items-start {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+}
+
+.items-end {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+}
+
+.items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.items-baseline {
+ -webkit-box-align: baseline;
+ -ms-flex-align: baseline;
+ align-items: baseline;
+}
+
+.items-stretch {
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+}
+
+.self-auto {
+ -ms-flex-item-align: auto;
+ align-self: auto;
+}
+
+.self-start {
+ -ms-flex-item-align: start;
+ align-self: flex-start;
+}
+
+.self-end {
+ -ms-flex-item-align: end;
+ align-self: flex-end;
+}
+
+.self-center {
+ -ms-flex-item-align: center;
+ align-self: center;
+}
+
+.self-stretch {
+ -ms-flex-item-align: stretch;
+ align-self: stretch;
+}
+
+.justify-start {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+}
+
+.justify-end {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+}
+
+.justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+
+.justify-between {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+}
+
+.justify-around {
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+}
+
+.content-center {
+ -ms-flex-line-pack: center;
+ align-content: center;
+}
+
+.content-start {
+ -ms-flex-line-pack: start;
+ align-content: flex-start;
+}
+
+.content-end {
+ -ms-flex-line-pack: end;
+ align-content: flex-end;
+}
+
+.content-between {
+ -ms-flex-line-pack: justify;
+ align-content: space-between;
+}
+
+.content-around {
+ -ms-flex-line-pack: distribute;
+ align-content: space-around;
+}
+
+.flex-1 {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0%;
+ flex: 1 1 0%;
+}
+
+.flex-auto {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+}
+
+.flex-initial {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+}
+
+.flex-none {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+}
+
+.flex-grow-0 {
+ -webkit-box-flex: 0;
+ -ms-flex-positive: 0;
+ flex-grow: 0;
+}
+
+.flex-grow {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.flex-shrink-0 {
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.flex-shrink {
+ -ms-flex-negative: 1;
+ flex-shrink: 1;
+}
+
+.order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+}
+
+.order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+}
+
+.order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+}
+
+.order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+}
+
+.order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5;
+}
+
+.order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6;
+}
+
+.order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7;
+}
+
+.order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8;
+}
+
+.order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9;
+}
+
+.order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10;
+}
+
+.order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11;
+}
+
+.order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12;
+}
+
+.order-first {
+ -webkit-box-ordinal-group: -9998;
+ -ms-flex-order: -9999;
+ order: -9999;
+}
+
+.order-last {
+ -webkit-box-ordinal-group: 10000;
+ -ms-flex-order: 9999;
+ order: 9999;
+}
+
+.order-none {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+}
+
+.float-right {
+ float: right;
+}
+
+.float-left {
+ float: left;
+}
+
+.float-none {
+ float: none;
+}
+
+.clearfix:after {
+ content: "";
+ display: table;
+ clear: both;
+}
+
+.font-sans {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+}
+
+.font-serif {
+ font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+}
+
+.font-mono {
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+}
+
+.font-hairline {
+ font-weight: 100;
+}
+
+.font-thin {
+ 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;
+}
+
+.hover\:font-hairline:hover {
+ font-weight: 100;
+}
+
+.hover\:font-thin:hover {
+ font-weight: 200;
+}
+
+.hover\:font-light:hover {
+ font-weight: 300;
+}
+
+.hover\:font-normal:hover {
+ font-weight: 400;
+}
+
+.hover\:font-medium:hover {
+ font-weight: 500;
+}
+
+.hover\:font-semibold:hover {
+ font-weight: 600;
+}
+
+.hover\:font-bold:hover {
+ font-weight: 700;
+}
+
+.hover\:font-extrabold:hover {
+ font-weight: 800;
+}
+
+.hover\:font-black:hover {
+ font-weight: 900;
+}
+
+.focus\:font-hairline:focus {
+ font-weight: 100;
+}
+
+.focus\:font-thin:focus {
+ font-weight: 200;
+}
+
+.focus\:font-light:focus {
+ font-weight: 300;
+}
+
+.focus\:font-normal:focus {
+ font-weight: 400;
+}
+
+.focus\:font-medium:focus {
+ font-weight: 500;
+}
+
+.focus\:font-semibold:focus {
+ font-weight: 600;
+}
+
+.focus\:font-bold:focus {
+ font-weight: 700;
+}
+
+.focus\:font-extrabold:focus {
+ font-weight: 800;
+}
+
+.focus\:font-black:focus {
+ font-weight: 900;
+}
+
+.h-0 {
+ height: 0;
+}
+
+.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-8 {
+ height: 2rem;
+}
+
+.h-10 {
+ height: 2.5rem;
+}
+
+.h-12 {
+ height: 3rem;
+}
+
+.h-16 {
+ height: 4rem;
+}
+
+.h-20 {
+ height: 5rem;
+}
+
+.h-24 {
+ height: 6rem;
+}
+
+.h-32 {
+ height: 8rem;
+}
+
+.h-40 {
+ height: 10rem;
+}
+
+.h-48 {
+ height: 12rem;
+}
+
+.h-56 {
+ height: 14rem;
+}
+
+.h-64 {
+ height: 16rem;
+}
+
+.h-auto {
+ height: auto;
+}
+
+.h-px {
+ height: 1px;
+}
+
+.h-full {
+ height: 100%;
+}
+
+.h-screen {
+ height: 100vh;
+}
+
+.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;
+}
+
+.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;
+}
+
+.m-0 {
+ margin: 0;
+}
+
+.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-8 {
+ margin: 2rem;
+}
+
+.m-10 {
+ margin: 2.5rem;
+}
+
+.m-12 {
+ margin: 3rem;
+}
+
+.m-16 {
+ margin: 4rem;
+}
+
+.m-20 {
+ margin: 5rem;
+}
+
+.m-24 {
+ margin: 6rem;
+}
+
+.m-32 {
+ margin: 8rem;
+}
+
+.m-40 {
+ margin: 10rem;
+}
+
+.m-48 {
+ margin: 12rem;
+}
+
+.m-56 {
+ margin: 14rem;
+}
+
+.m-64 {
+ margin: 16rem;
+}
+
+.m-auto {
+ margin: auto;
+}
+
+.m-px {
+ margin: 1px;
+}
+
+.-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-8 {
+ margin: -2rem;
+}
+
+.-m-10 {
+ margin: -2.5rem;
+}
+
+.-m-12 {
+ margin: -3rem;
+}
+
+.-m-16 {
+ margin: -4rem;
+}
+
+.-m-20 {
+ margin: -5rem;
+}
+
+.-m-24 {
+ margin: -6rem;
+}
+
+.-m-32 {
+ margin: -8rem;
+}
+
+.-m-40 {
+ margin: -10rem;
+}
+
+.-m-48 {
+ margin: -12rem;
+}
+
+.-m-56 {
+ margin: -14rem;
+}
+
+.-m-64 {
+ margin: -16rem;
+}
+
+.-m-px {
+ margin: -1px;
+}
+
+.my-0 {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+}
+
+.my-1 {
+ margin-top: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+}
+
+.my-2 {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+}
+
+.mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+}
+
+.my-3 {
+ margin-top: 0.75rem;
+ margin-bottom: 0.75rem;
+}
+
+.mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+}
+
+.my-4 {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+}
+
+.mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+}
+
+.my-5 {
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+}
+
+.mx-5 {
+ margin-left: 1.25rem;
+ margin-right: 1.25rem;
+}
+
+.my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+}
+
+.mx-6 {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+}
+
+.my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+}
+
+.mx-8 {
+ margin-left: 2rem;
+ margin-right: 2rem;
+}
+
+.my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+}
+
+.mx-10 {
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+}
+
+.my-12 {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+}
+
+.mx-12 {
+ margin-left: 3rem;
+ margin-right: 3rem;
+}
+
+.my-16 {
+ margin-top: 4rem;
+ margin-bottom: 4rem;
+}
+
+.mx-16 {
+ margin-left: 4rem;
+ margin-right: 4rem;
+}
+
+.my-20 {
+ margin-top: 5rem;
+ margin-bottom: 5rem;
+}
+
+.mx-20 {
+ margin-left: 5rem;
+ margin-right: 5rem;
+}
+
+.my-24 {
+ margin-top: 6rem;
+ margin-bottom: 6rem;
+}
+
+.mx-24 {
+ margin-left: 6rem;
+ margin-right: 6rem;
+}
+
+.my-32 {
+ margin-top: 8rem;
+ margin-bottom: 8rem;
+}
+
+.mx-32 {
+ margin-left: 8rem;
+ margin-right: 8rem;
+}
+
+.my-40 {
+ margin-top: 10rem;
+ margin-bottom: 10rem;
+}
+
+.mx-40 {
+ margin-left: 10rem;
+ margin-right: 10rem;
+}
+
+.my-48 {
+ margin-top: 12rem;
+ margin-bottom: 12rem;
+}
+
+.mx-48 {
+ margin-left: 12rem;
+ margin-right: 12rem;
+}
+
+.my-56 {
+ margin-top: 14rem;
+ margin-bottom: 14rem;
+}
+
+.mx-56 {
+ margin-left: 14rem;
+ margin-right: 14rem;
+}
+
+.my-64 {
+ margin-top: 16rem;
+ margin-bottom: 16rem;
+}
+
+.mx-64 {
+ margin-left: 16rem;
+ margin-right: 16rem;
+}
+
+.my-auto {
+ margin-top: auto;
+ margin-bottom: auto;
+}
+
+.mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.my-px {
+ margin-top: 1px;
+ margin-bottom: 1px;
+}
+
+.mx-px {
+ margin-left: 1px;
+ margin-right: 1px;
+}
+
+.-my-1 {
+ margin-top: -0.25rem;
+ margin-bottom: -0.25rem;
+}
+
+.-mx-1 {
+ margin-left: -0.25rem;
+ margin-right: -0.25rem;
+}
+
+.-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+}
+
+.-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+}
+
+.-my-3 {
+ margin-top: -0.75rem;
+ margin-bottom: -0.75rem;
+}
+
+.-mx-3 {
+ margin-left: -0.75rem;
+ margin-right: -0.75rem;
+}
+
+.-my-4 {
+ margin-top: -1rem;
+ margin-bottom: -1rem;
+}
+
+.-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+}
+
+.-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+}
+
+.-mx-5 {
+ margin-left: -1.25rem;
+ margin-right: -1.25rem;
+}
+
+.-my-6 {
+ margin-top: -1.5rem;
+ margin-bottom: -1.5rem;
+}
+
+.-mx-6 {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+}
+
+.-my-8 {
+ margin-top: -2rem;
+ margin-bottom: -2rem;
+}
+
+.-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+}
+
+.-my-10 {
+ margin-top: -2.5rem;
+ margin-bottom: -2.5rem;
+}
+
+.-mx-10 {
+ margin-left: -2.5rem;
+ margin-right: -2.5rem;
+}
+
+.-my-12 {
+ margin-top: -3rem;
+ margin-bottom: -3rem;
+}
+
+.-mx-12 {
+ margin-left: -3rem;
+ margin-right: -3rem;
+}
+
+.-my-16 {
+ margin-top: -4rem;
+ margin-bottom: -4rem;
+}
+
+.-mx-16 {
+ margin-left: -4rem;
+ margin-right: -4rem;
+}
+
+.-my-20 {
+ margin-top: -5rem;
+ margin-bottom: -5rem;
+}
+
+.-mx-20 {
+ margin-left: -5rem;
+ margin-right: -5rem;
+}
+
+.-my-24 {
+ margin-top: -6rem;
+ margin-bottom: -6rem;
+}
+
+.-mx-24 {
+ margin-left: -6rem;
+ margin-right: -6rem;
+}
+
+.-my-32 {
+ margin-top: -8rem;
+ margin-bottom: -8rem;
+}
+
+.-mx-32 {
+ margin-left: -8rem;
+ margin-right: -8rem;
+}
+
+.-my-40 {
+ margin-top: -10rem;
+ margin-bottom: -10rem;
+}
+
+.-mx-40 {
+ margin-left: -10rem;
+ margin-right: -10rem;
+}
+
+.-my-48 {
+ margin-top: -12rem;
+ margin-bottom: -12rem;
+}
+
+.-mx-48 {
+ margin-left: -12rem;
+ margin-right: -12rem;
+}
+
+.-my-56 {
+ margin-top: -14rem;
+ margin-bottom: -14rem;
+}
+
+.-mx-56 {
+ margin-left: -14rem;
+ margin-right: -14rem;
+}
+
+.-my-64 {
+ margin-top: -16rem;
+ margin-bottom: -16rem;
+}
+
+.-mx-64 {
+ margin-left: -16rem;
+ margin-right: -16rem;
+}
+
+.-my-px {
+ margin-top: -1px;
+ margin-bottom: -1px;
+}
+
+.-mx-px {
+ margin-left: -1px;
+ margin-right: -1px;
+}
+
+.mt-0 {
+ margin-top: 0;
+}
+
+.mr-0 {
+ margin-right: 0;
+}
+
+.mb-0 {
+ margin-bottom: 0;
+}
+
+.ml-0 {
+ margin-left: 0;
+}
+
+.mt-1 {
+ margin-top: 0.25rem;
+}
+
+.mr-1 {
+ margin-right: 0.25rem;
+}
+
+.mb-1 {
+ margin-bottom: 0.25rem;
+}
+
+.ml-1 {
+ margin-left: 0.25rem;
+}
+
+.mt-2 {
+ margin-top: 0.5rem;
+}
+
+.mr-2 {
+ margin-right: 0.5rem;
+}
+
+.mb-2 {
+ margin-bottom: 0.5rem;
+}
+
+.ml-2 {
+ margin-left: 0.5rem;
+}
+
+.mt-3 {
+ margin-top: 0.75rem;
+}
+
+.mr-3 {
+ margin-right: 0.75rem;
+}
+
+.mb-3 {
+ margin-bottom: 0.75rem;
+}
+
+.ml-3 {
+ margin-left: 0.75rem;
+}
+
+.mt-4 {
+ margin-top: 1rem;
+}
+
+.mr-4 {
+ margin-right: 1rem;
+}
+
+.mb-4 {
+ margin-bottom: 1rem;
+}
+
+.ml-4 {
+ margin-left: 1rem;
+}
+
+.mt-5 {
+ margin-top: 1.25rem;
+}
+
+.mr-5 {
+ margin-right: 1.25rem;
+}
+
+.mb-5 {
+ margin-bottom: 1.25rem;
+}
+
+.ml-5 {
+ margin-left: 1.25rem;
+}
+
+.mt-6 {
+ margin-top: 1.5rem;
+}
+
+.mr-6 {
+ margin-right: 1.5rem;
+}
+
+.mb-6 {
+ margin-bottom: 1.5rem;
+}
+
+.ml-6 {
+ margin-left: 1.5rem;
+}
+
+.mt-8 {
+ margin-top: 2rem;
+}
+
+.mr-8 {
+ margin-right: 2rem;
+}
+
+.mb-8 {
+ margin-bottom: 2rem;
+}
+
+.ml-8 {
+ margin-left: 2rem;
+}
+
+.mt-10 {
+ margin-top: 2.5rem;
+}
+
+.mr-10 {
+ margin-right: 2.5rem;
+}
+
+.mb-10 {
+ margin-bottom: 2.5rem;
+}
+
+.ml-10 {
+ margin-left: 2.5rem;
+}
+
+.mt-12 {
+ margin-top: 3rem;
+}
+
+.mr-12 {
+ margin-right: 3rem;
+}
+
+.mb-12 {
+ margin-bottom: 3rem;
+}
+
+.ml-12 {
+ margin-left: 3rem;
+}
+
+.mt-16 {
+ margin-top: 4rem;
+}
+
+.mr-16 {
+ margin-right: 4rem;
+}
+
+.mb-16 {
+ margin-bottom: 4rem;
+}
+
+.ml-16 {
+ margin-left: 4rem;
+}
+
+.mt-20 {
+ margin-top: 5rem;
+}
+
+.mr-20 {
+ margin-right: 5rem;
+}
+
+.mb-20 {
+ margin-bottom: 5rem;
+}
+
+.ml-20 {
+ margin-left: 5rem;
+}
+
+.mt-24 {
+ margin-top: 6rem;
+}
+
+.mr-24 {
+ margin-right: 6rem;
+}
+
+.mb-24 {
+ margin-bottom: 6rem;
+}
+
+.ml-24 {
+ margin-left: 6rem;
+}
+
+.mt-32 {
+ margin-top: 8rem;
+}
+
+.mr-32 {
+ margin-right: 8rem;
+}
+
+.mb-32 {
+ margin-bottom: 8rem;
+}
+
+.ml-32 {
+ margin-left: 8rem;
+}
+
+.mt-40 {
+ margin-top: 10rem;
+}
+
+.mr-40 {
+ margin-right: 10rem;
+}
+
+.mb-40 {
+ margin-bottom: 10rem;
+}
+
+.ml-40 {
+ margin-left: 10rem;
+}
+
+.mt-48 {
+ margin-top: 12rem;
+}
+
+.mr-48 {
+ margin-right: 12rem;
+}
+
+.mb-48 {
+ margin-bottom: 12rem;
+}
+
+.ml-48 {
+ margin-left: 12rem;
+}
+
+.mt-56 {
+ margin-top: 14rem;
+}
+
+.mr-56 {
+ margin-right: 14rem;
+}
+
+.mb-56 {
+ margin-bottom: 14rem;
+}
+
+.ml-56 {
+ margin-left: 14rem;
+}
+
+.mt-64 {
+ margin-top: 16rem;
+}
+
+.mr-64 {
+ margin-right: 16rem;
+}
+
+.mb-64 {
+ margin-bottom: 16rem;
+}
+
+.ml-64 {
+ margin-left: 16rem;
+}
+
+.mt-auto {
+ margin-top: auto;
+}
+
+.mr-auto {
+ margin-right: auto;
+}
+
+.mb-auto {
+ margin-bottom: auto;
+}
+
+.ml-auto {
+ margin-left: auto;
+}
+
+.mt-px {
+ margin-top: 1px;
+}
+
+.mr-px {
+ margin-right: 1px;
+}
+
+.mb-px {
+ margin-bottom: 1px;
+}
+
+.ml-px {
+ margin-left: 1px;
+}
+
+.-mt-1 {
+ margin-top: -0.25rem;
+}
+
+.-mr-1 {
+ margin-right: -0.25rem;
+}
+
+.-mb-1 {
+ margin-bottom: -0.25rem;
+}
+
+.-ml-1 {
+ margin-left: -0.25rem;
+}
+
+.-mt-2 {
+ margin-top: -0.5rem;
+}
+
+.-mr-2 {
+ margin-right: -0.5rem;
+}
+
+.-mb-2 {
+ margin-bottom: -0.5rem;
+}
+
+.-ml-2 {
+ margin-left: -0.5rem;
+}
+
+.-mt-3 {
+ margin-top: -0.75rem;
+}
+
+.-mr-3 {
+ margin-right: -0.75rem;
+}
+
+.-mb-3 {
+ margin-bottom: -0.75rem;
+}
+
+.-ml-3 {
+ margin-left: -0.75rem;
+}
+
+.-mt-4 {
+ margin-top: -1rem;
+}
+
+.-mr-4 {
+ margin-right: -1rem;
+}
+
+.-mb-4 {
+ margin-bottom: -1rem;
+}
+
+.-ml-4 {
+ margin-left: -1rem;
+}
+
+.-mt-5 {
+ margin-top: -1.25rem;
+}
+
+.-mr-5 {
+ margin-right: -1.25rem;
+}
+
+.-mb-5 {
+ margin-bottom: -1.25rem;
+}
+
+.-ml-5 {
+ margin-left: -1.25rem;
+}
+
+.-mt-6 {
+ margin-top: -1.5rem;
+}
+
+.-mr-6 {
+ margin-right: -1.5rem;
+}
+
+.-mb-6 {
+ margin-bottom: -1.5rem;
+}
+
+.-ml-6 {
+ margin-left: -1.5rem;
+}
+
+.-mt-8 {
+ margin-top: -2rem;
+}
+
+.-mr-8 {
+ margin-right: -2rem;
+}
+
+.-mb-8 {
+ margin-bottom: -2rem;
+}
+
+.-ml-8 {
+ margin-left: -2rem;
+}
+
+.-mt-10 {
+ margin-top: -2.5rem;
+}
+
+.-mr-10 {
+ margin-right: -2.5rem;
+}
+
+.-mb-10 {
+ margin-bottom: -2.5rem;
+}
+
+.-ml-10 {
+ margin-left: -2.5rem;
+}
+
+.-mt-12 {
+ margin-top: -3rem;
+}
+
+.-mr-12 {
+ margin-right: -3rem;
+}
+
+.-mb-12 {
+ margin-bottom: -3rem;
+}
+
+.-ml-12 {
+ margin-left: -3rem;
+}
+
+.-mt-16 {
+ margin-top: -4rem;
+}
+
+.-mr-16 {
+ margin-right: -4rem;
+}
+
+.-mb-16 {
+ margin-bottom: -4rem;
+}
+
+.-ml-16 {
+ margin-left: -4rem;
+}
+
+.-mt-20 {
+ margin-top: -5rem;
+}
+
+.-mr-20 {
+ margin-right: -5rem;
+}
+
+.-mb-20 {
+ margin-bottom: -5rem;
+}
+
+.-ml-20 {
+ margin-left: -5rem;
+}
+
+.-mt-24 {
+ margin-top: -6rem;
+}
+
+.-mr-24 {
+ margin-right: -6rem;
+}
+
+.-mb-24 {
+ margin-bottom: -6rem;
+}
+
+.-ml-24 {
+ margin-left: -6rem;
+}
+
+.-mt-32 {
+ margin-top: -8rem;
+}
+
+.-mr-32 {
+ margin-right: -8rem;
+}
+
+.-mb-32 {
+ margin-bottom: -8rem;
+}
+
+.-ml-32 {
+ margin-left: -8rem;
+}
+
+.-mt-40 {
+ margin-top: -10rem;
+}
+
+.-mr-40 {
+ margin-right: -10rem;
+}
+
+.-mb-40 {
+ margin-bottom: -10rem;
+}
+
+.-ml-40 {
+ margin-left: -10rem;
+}
+
+.-mt-48 {
+ margin-top: -12rem;
+}
+
+.-mr-48 {
+ margin-right: -12rem;
+}
+
+.-mb-48 {
+ margin-bottom: -12rem;
+}
+
+.-ml-48 {
+ margin-left: -12rem;
+}
+
+.-mt-56 {
+ margin-top: -14rem;
+}
+
+.-mr-56 {
+ margin-right: -14rem;
+}
+
+.-mb-56 {
+ margin-bottom: -14rem;
+}
+
+.-ml-56 {
+ margin-left: -14rem;
+}
+
+.-mt-64 {
+ margin-top: -16rem;
+}
+
+.-mr-64 {
+ margin-right: -16rem;
+}
+
+.-mb-64 {
+ margin-bottom: -16rem;
+}
+
+.-ml-64 {
+ margin-left: -16rem;
+}
+
+.-mt-px {
+ margin-top: -1px;
+}
+
+.-mr-px {
+ margin-right: -1px;
+}
+
+.-mb-px {
+ margin-bottom: -1px;
+}
+
+.-ml-px {
+ margin-left: -1px;
+}
+
+.max-h-full {
+ max-height: 100%;
+}
+
+.max-h-screen {
+ max-height: 100vh;
+}
+
+.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-full {
+ max-width: 100%;
+}
+
+.min-h-0 {
+ min-height: 0;
+}
+
+.min-h-full {
+ min-height: 100%;
+}
+
+.min-h-screen {
+ min-height: 100vh;
+}
+
+.min-w-0 {
+ min-width: 0;
+}
+
+.min-w-full {
+ min-width: 100%;
+}
+
+.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;
+}
+
+.opacity-0 {
+ opacity: 0;
+}
+
+.opacity-25 {
+ opacity: 0.25;
+}
+
+.opacity-50 {
+ opacity: 0.5;
+}
+
+.opacity-75 {
+ opacity: 0.75;
+}
+
+.opacity-100 {
+ opacity: 1;
+}
+
+.hover\:opacity-0:hover {
+ opacity: 0;
+}
+
+.hover\:opacity-25:hover {
+ opacity: 0.25;
+}
+
+.hover\:opacity-50:hover {
+ opacity: 0.5;
+}
+
+.hover\:opacity-75:hover {
+ opacity: 0.75;
+}
+
+.hover\:opacity-100:hover {
+ opacity: 1;
+}
+
+.focus\:opacity-0:focus {
+ opacity: 0;
+}
+
+.focus\:opacity-25:focus {
+ opacity: 0.25;
+}
+
+.focus\:opacity-50:focus {
+ opacity: 0.5;
+}
+
+.focus\:opacity-75:focus {
+ opacity: 0.75;
+}
+
+.focus\:opacity-100:focus {
+ opacity: 1;
+}
+
+.outline-none {
+ outline: 0;
+}
+
+.focus\:outline-none:focus {
+ outline: 0;
+}
+
+.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;
+}
+
+.scrolling-touch {
+ -webkit-overflow-scrolling: touch;
+}
+
+.scrolling-auto {
+ -webkit-overflow-scrolling: auto;
+}
+
+.p-0 {
+ padding: 0;
+}
+
+.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-8 {
+ padding: 2rem;
+}
+
+.p-10 {
+ padding: 2.5rem;
+}
+
+.p-12 {
+ padding: 3rem;
+}
+
+.p-16 {
+ padding: 4rem;
+}
+
+.p-20 {
+ padding: 5rem;
+}
+
+.p-24 {
+ padding: 6rem;
+}
+
+.p-32 {
+ padding: 8rem;
+}
+
+.p-40 {
+ padding: 10rem;
+}
+
+.p-48 {
+ padding: 12rem;
+}
+
+.p-56 {
+ padding: 14rem;
+}
+
+.p-64 {
+ padding: 16rem;
+}
+
+.p-px {
+ padding: 1px;
+}
+
+.py-0 {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+.px-0 {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+}
+
+.px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+}
+
+.py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+}
+
+.px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+}
+
+.py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+}
+
+.px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+}
+
+.py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+}
+
+.px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+
+.py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+}
+
+.px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+}
+
+.py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+}
+
+.px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+}
+
+.py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+}
+
+.px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+}
+
+.py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+}
+
+.px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+}
+
+.py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+}
+
+.px-12 {
+ padding-left: 3rem;
+ padding-right: 3rem;
+}
+
+.py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+}
+
+.px-16 {
+ padding-left: 4rem;
+ padding-right: 4rem;
+}
+
+.py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+}
+
+.px-20 {
+ padding-left: 5rem;
+ padding-right: 5rem;
+}
+
+.py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+}
+
+.px-24 {
+ padding-left: 6rem;
+ padding-right: 6rem;
+}
+
+.py-32 {
+ padding-top: 8rem;
+ padding-bottom: 8rem;
+}
+
+.px-32 {
+ padding-left: 8rem;
+ padding-right: 8rem;
+}
+
+.py-40 {
+ padding-top: 10rem;
+ padding-bottom: 10rem;
+}
+
+.px-40 {
+ padding-left: 10rem;
+ padding-right: 10rem;
+}
+
+.py-48 {
+ padding-top: 12rem;
+ padding-bottom: 12rem;
+}
+
+.px-48 {
+ padding-left: 12rem;
+ padding-right: 12rem;
+}
+
+.py-56 {
+ padding-top: 14rem;
+ padding-bottom: 14rem;
+}
+
+.px-56 {
+ padding-left: 14rem;
+ padding-right: 14rem;
+}
+
+.py-64 {
+ padding-top: 16rem;
+ padding-bottom: 16rem;
+}
+
+.px-64 {
+ padding-left: 16rem;
+ padding-right: 16rem;
+}
+
+.py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+
+.px-px {
+ padding-left: 1px;
+ padding-right: 1px;
+}
+
+.pt-0 {
+ padding-top: 0;
+}
+
+.pr-0 {
+ padding-right: 0;
+}
+
+.pb-0 {
+ padding-bottom: 0;
+}
+
+.pl-0 {
+ padding-left: 0;
+}
+
+.pt-1 {
+ padding-top: 0.25rem;
+}
+
+.pr-1 {
+ padding-right: 0.25rem;
+}
+
+.pb-1 {
+ padding-bottom: 0.25rem;
+}
+
+.pl-1 {
+ padding-left: 0.25rem;
+}
+
+.pt-2 {
+ padding-top: 0.5rem;
+}
+
+.pr-2 {
+ padding-right: 0.5rem;
+}
+
+.pb-2 {
+ padding-bottom: 0.5rem;
+}
+
+.pl-2 {
+ padding-left: 0.5rem;
+}
+
+.pt-3 {
+ padding-top: 0.75rem;
+}
+
+.pr-3 {
+ padding-right: 0.75rem;
+}
+
+.pb-3 {
+ padding-bottom: 0.75rem;
+}
+
+.pl-3 {
+ padding-left: 0.75rem;
+}
+
+.pt-4 {
+ padding-top: 1rem;
+}
+
+.pr-4 {
+ padding-right: 1rem;
+}
+
+.pb-4 {
+ padding-bottom: 1rem;
+}
+
+.pl-4 {
+ padding-left: 1rem;
+}
+
+.pt-5 {
+ padding-top: 1.25rem;
+}
+
+.pr-5 {
+ padding-right: 1.25rem;
+}
+
+.pb-5 {
+ padding-bottom: 1.25rem;
+}
+
+.pl-5 {
+ padding-left: 1.25rem;
+}
+
+.pt-6 {
+ padding-top: 1.5rem;
+}
+
+.pr-6 {
+ padding-right: 1.5rem;
+}
+
+.pb-6 {
+ padding-bottom: 1.5rem;
+}
+
+.pl-6 {
+ padding-left: 1.5rem;
+}
+
+.pt-8 {
+ padding-top: 2rem;
+}
+
+.pr-8 {
+ padding-right: 2rem;
+}
+
+.pb-8 {
+ padding-bottom: 2rem;
+}
+
+.pl-8 {
+ padding-left: 2rem;
+}
+
+.pt-10 {
+ padding-top: 2.5rem;
+}
+
+.pr-10 {
+ padding-right: 2.5rem;
+}
+
+.pb-10 {
+ padding-bottom: 2.5rem;
+}
+
+.pl-10 {
+ padding-left: 2.5rem;
+}
+
+.pt-12 {
+ padding-top: 3rem;
+}
+
+.pr-12 {
+ padding-right: 3rem;
+}
+
+.pb-12 {
+ padding-bottom: 3rem;
+}
+
+.pl-12 {
+ padding-left: 3rem;
+}
+
+.pt-16 {
+ padding-top: 4rem;
+}
+
+.pr-16 {
+ padding-right: 4rem;
+}
+
+.pb-16 {
+ padding-bottom: 4rem;
+}
+
+.pl-16 {
+ padding-left: 4rem;
+}
+
+.pt-20 {
+ padding-top: 5rem;
+}
+
+.pr-20 {
+ padding-right: 5rem;
+}
+
+.pb-20 {
+ padding-bottom: 5rem;
+}
+
+.pl-20 {
+ padding-left: 5rem;
+}
+
+.pt-24 {
+ padding-top: 6rem;
+}
+
+.pr-24 {
+ padding-right: 6rem;
+}
+
+.pb-24 {
+ padding-bottom: 6rem;
+}
+
+.pl-24 {
+ padding-left: 6rem;
+}
+
+.pt-32 {
+ padding-top: 8rem;
+}
+
+.pr-32 {
+ padding-right: 8rem;
+}
+
+.pb-32 {
+ padding-bottom: 8rem;
+}
+
+.pl-32 {
+ padding-left: 8rem;
+}
+
+.pt-40 {
+ padding-top: 10rem;
+}
+
+.pr-40 {
+ padding-right: 10rem;
+}
+
+.pb-40 {
+ padding-bottom: 10rem;
+}
+
+.pl-40 {
+ padding-left: 10rem;
+}
+
+.pt-48 {
+ padding-top: 12rem;
+}
+
+.pr-48 {
+ padding-right: 12rem;
+}
+
+.pb-48 {
+ padding-bottom: 12rem;
+}
+
+.pl-48 {
+ padding-left: 12rem;
+}
+
+.pt-56 {
+ padding-top: 14rem;
+}
+
+.pr-56 {
+ padding-right: 14rem;
+}
+
+.pb-56 {
+ padding-bottom: 14rem;
+}
+
+.pl-56 {
+ padding-left: 14rem;
+}
+
+.pt-64 {
+ padding-top: 16rem;
+}
+
+.pr-64 {
+ padding-right: 16rem;
+}
+
+.pb-64 {
+ padding-bottom: 16rem;
+}
+
+.pl-64 {
+ padding-left: 16rem;
+}
+
+.pt-px {
+ padding-top: 1px;
+}
+
+.pr-px {
+ padding-right: 1px;
+}
+
+.pb-px {
+ padding-bottom: 1px;
+}
+
+.pl-px {
+ padding-left: 1px;
+}
+
+.placeholder-transparent::-webkit-input-placeholder {
+ color: transparent;
+}
+
+.placeholder-transparent::-moz-placeholder {
+ color: transparent;
+}
+
+.placeholder-transparent:-ms-input-placeholder {
+ color: transparent;
+}
+
+.placeholder-transparent::-ms-input-placeholder {
+ color: transparent;
+}
+
+.placeholder-transparent::placeholder {
+ color: transparent;
+}
+
+.placeholder-black::-webkit-input-placeholder {
+ color: #000;
+}
+
+.placeholder-black::-moz-placeholder {
+ color: #000;
+}
+
+.placeholder-black:-ms-input-placeholder {
+ color: #000;
+}
+
+.placeholder-black::-ms-input-placeholder {
+ color: #000;
+}
+
+.placeholder-black::placeholder {
+ color: #000;
+}
+
+.placeholder-white::-webkit-input-placeholder {
+ color: #fff;
+}
+
+.placeholder-white::-moz-placeholder {
+ color: #fff;
+}
+
+.placeholder-white:-ms-input-placeholder {
+ color: #fff;
+}
+
+.placeholder-white::-ms-input-placeholder {
+ color: #fff;
+}
+
+.placeholder-white::placeholder {
+ color: #fff;
+}
+
+.placeholder-gray-100::-webkit-input-placeholder {
+ color: #f7fafc;
+}
+
+.placeholder-gray-100::-moz-placeholder {
+ color: #f7fafc;
+}
+
+.placeholder-gray-100:-ms-input-placeholder {
+ color: #f7fafc;
+}
+
+.placeholder-gray-100::-ms-input-placeholder {
+ color: #f7fafc;
+}
+
+.placeholder-gray-100::placeholder {
+ color: #f7fafc;
+}
+
+.placeholder-gray-200::-webkit-input-placeholder {
+ color: #edf2f7;
+}
+
+.placeholder-gray-200::-moz-placeholder {
+ color: #edf2f7;
+}
+
+.placeholder-gray-200:-ms-input-placeholder {
+ color: #edf2f7;
+}
+
+.placeholder-gray-200::-ms-input-placeholder {
+ color: #edf2f7;
+}
+
+.placeholder-gray-200::placeholder {
+ color: #edf2f7;
+}
+
+.placeholder-gray-300::-webkit-input-placeholder {
+ color: #e2e8f0;
+}
+
+.placeholder-gray-300::-moz-placeholder {
+ color: #e2e8f0;
+}
+
+.placeholder-gray-300:-ms-input-placeholder {
+ color: #e2e8f0;
+}
+
+.placeholder-gray-300::-ms-input-placeholder {
+ color: #e2e8f0;
+}
+
+.placeholder-gray-300::placeholder {
+ color: #e2e8f0;
+}
+
+.placeholder-gray-400::-webkit-input-placeholder {
+ color: #cbd5e0;
+}
+
+.placeholder-gray-400::-moz-placeholder {
+ color: #cbd5e0;
+}
+
+.placeholder-gray-400:-ms-input-placeholder {
+ color: #cbd5e0;
+}
+
+.placeholder-gray-400::-ms-input-placeholder {
+ color: #cbd5e0;
+}
+
+.placeholder-gray-400::placeholder {
+ color: #cbd5e0;
+}
+
+.placeholder-gray-500::-webkit-input-placeholder {
+ color: #a0aec0;
+}
+
+.placeholder-gray-500::-moz-placeholder {
+ color: #a0aec0;
+}
+
+.placeholder-gray-500:-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+.placeholder-gray-500::-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+.placeholder-gray-500::placeholder {
+ color: #a0aec0;
+}
+
+.placeholder-gray-600::-webkit-input-placeholder {
+ color: #718096;
+}
+
+.placeholder-gray-600::-moz-placeholder {
+ color: #718096;
+}
+
+.placeholder-gray-600:-ms-input-placeholder {
+ color: #718096;
+}
+
+.placeholder-gray-600::-ms-input-placeholder {
+ color: #718096;
+}
+
+.placeholder-gray-600::placeholder {
+ color: #718096;
+}
+
+.placeholder-gray-700::-webkit-input-placeholder {
+ color: #4a5568;
+}
+
+.placeholder-gray-700::-moz-placeholder {
+ color: #4a5568;
+}
+
+.placeholder-gray-700:-ms-input-placeholder {
+ color: #4a5568;
+}
+
+.placeholder-gray-700::-ms-input-placeholder {
+ color: #4a5568;
+}
+
+.placeholder-gray-700::placeholder {
+ color: #4a5568;
+}
+
+.placeholder-gray-800::-webkit-input-placeholder {
+ color: #2d3748;
+}
+
+.placeholder-gray-800::-moz-placeholder {
+ color: #2d3748;
+}
+
+.placeholder-gray-800:-ms-input-placeholder {
+ color: #2d3748;
+}
+
+.placeholder-gray-800::-ms-input-placeholder {
+ color: #2d3748;
+}
+
+.placeholder-gray-800::placeholder {
+ color: #2d3748;
+}
+
+.placeholder-gray-900::-webkit-input-placeholder {
+ color: #1a202c;
+}
+
+.placeholder-gray-900::-moz-placeholder {
+ color: #1a202c;
+}
+
+.placeholder-gray-900:-ms-input-placeholder {
+ color: #1a202c;
+}
+
+.placeholder-gray-900::-ms-input-placeholder {
+ color: #1a202c;
+}
+
+.placeholder-gray-900::placeholder {
+ color: #1a202c;
+}
+
+.placeholder-red-100::-webkit-input-placeholder {
+ color: #fff5f5;
+}
+
+.placeholder-red-100::-moz-placeholder {
+ color: #fff5f5;
+}
+
+.placeholder-red-100:-ms-input-placeholder {
+ color: #fff5f5;
+}
+
+.placeholder-red-100::-ms-input-placeholder {
+ color: #fff5f5;
+}
+
+.placeholder-red-100::placeholder {
+ color: #fff5f5;
+}
+
+.placeholder-red-200::-webkit-input-placeholder {
+ color: #fed7d7;
+}
+
+.placeholder-red-200::-moz-placeholder {
+ color: #fed7d7;
+}
+
+.placeholder-red-200:-ms-input-placeholder {
+ color: #fed7d7;
+}
+
+.placeholder-red-200::-ms-input-placeholder {
+ color: #fed7d7;
+}
+
+.placeholder-red-200::placeholder {
+ color: #fed7d7;
+}
+
+.placeholder-red-300::-webkit-input-placeholder {
+ color: #feb2b2;
+}
+
+.placeholder-red-300::-moz-placeholder {
+ color: #feb2b2;
+}
+
+.placeholder-red-300:-ms-input-placeholder {
+ color: #feb2b2;
+}
+
+.placeholder-red-300::-ms-input-placeholder {
+ color: #feb2b2;
+}
+
+.placeholder-red-300::placeholder {
+ color: #feb2b2;
+}
+
+.placeholder-red-400::-webkit-input-placeholder {
+ color: #fc8181;
+}
+
+.placeholder-red-400::-moz-placeholder {
+ color: #fc8181;
+}
+
+.placeholder-red-400:-ms-input-placeholder {
+ color: #fc8181;
+}
+
+.placeholder-red-400::-ms-input-placeholder {
+ color: #fc8181;
+}
+
+.placeholder-red-400::placeholder {
+ color: #fc8181;
+}
+
+.placeholder-red-500::-webkit-input-placeholder {
+ color: #f56565;
+}
+
+.placeholder-red-500::-moz-placeholder {
+ color: #f56565;
+}
+
+.placeholder-red-500:-ms-input-placeholder {
+ color: #f56565;
+}
+
+.placeholder-red-500::-ms-input-placeholder {
+ color: #f56565;
+}
+
+.placeholder-red-500::placeholder {
+ color: #f56565;
+}
+
+.placeholder-red-600::-webkit-input-placeholder {
+ color: #e53e3e;
+}
+
+.placeholder-red-600::-moz-placeholder {
+ color: #e53e3e;
+}
+
+.placeholder-red-600:-ms-input-placeholder {
+ color: #e53e3e;
+}
+
+.placeholder-red-600::-ms-input-placeholder {
+ color: #e53e3e;
+}
+
+.placeholder-red-600::placeholder {
+ color: #e53e3e;
+}
+
+.placeholder-red-700::-webkit-input-placeholder {
+ color: #c53030;
+}
+
+.placeholder-red-700::-moz-placeholder {
+ color: #c53030;
+}
+
+.placeholder-red-700:-ms-input-placeholder {
+ color: #c53030;
+}
+
+.placeholder-red-700::-ms-input-placeholder {
+ color: #c53030;
+}
+
+.placeholder-red-700::placeholder {
+ color: #c53030;
+}
+
+.placeholder-red-800::-webkit-input-placeholder {
+ color: #9b2c2c;
+}
+
+.placeholder-red-800::-moz-placeholder {
+ color: #9b2c2c;
+}
+
+.placeholder-red-800:-ms-input-placeholder {
+ color: #9b2c2c;
+}
+
+.placeholder-red-800::-ms-input-placeholder {
+ color: #9b2c2c;
+}
+
+.placeholder-red-800::placeholder {
+ color: #9b2c2c;
+}
+
+.placeholder-red-900::-webkit-input-placeholder {
+ color: #742a2a;
+}
+
+.placeholder-red-900::-moz-placeholder {
+ color: #742a2a;
+}
+
+.placeholder-red-900:-ms-input-placeholder {
+ color: #742a2a;
+}
+
+.placeholder-red-900::-ms-input-placeholder {
+ color: #742a2a;
+}
+
+.placeholder-red-900::placeholder {
+ color: #742a2a;
+}
+
+.placeholder-orange-100::-webkit-input-placeholder {
+ color: #fffaf0;
+}
+
+.placeholder-orange-100::-moz-placeholder {
+ color: #fffaf0;
+}
+
+.placeholder-orange-100:-ms-input-placeholder {
+ color: #fffaf0;
+}
+
+.placeholder-orange-100::-ms-input-placeholder {
+ color: #fffaf0;
+}
+
+.placeholder-orange-100::placeholder {
+ color: #fffaf0;
+}
+
+.placeholder-orange-200::-webkit-input-placeholder {
+ color: #feebc8;
+}
+
+.placeholder-orange-200::-moz-placeholder {
+ color: #feebc8;
+}
+
+.placeholder-orange-200:-ms-input-placeholder {
+ color: #feebc8;
+}
+
+.placeholder-orange-200::-ms-input-placeholder {
+ color: #feebc8;
+}
+
+.placeholder-orange-200::placeholder {
+ color: #feebc8;
+}
+
+.placeholder-orange-300::-webkit-input-placeholder {
+ color: #fbd38d;
+}
+
+.placeholder-orange-300::-moz-placeholder {
+ color: #fbd38d;
+}
+
+.placeholder-orange-300:-ms-input-placeholder {
+ color: #fbd38d;
+}
+
+.placeholder-orange-300::-ms-input-placeholder {
+ color: #fbd38d;
+}
+
+.placeholder-orange-300::placeholder {
+ color: #fbd38d;
+}
+
+.placeholder-orange-400::-webkit-input-placeholder {
+ color: #f6ad55;
+}
+
+.placeholder-orange-400::-moz-placeholder {
+ color: #f6ad55;
+}
+
+.placeholder-orange-400:-ms-input-placeholder {
+ color: #f6ad55;
+}
+
+.placeholder-orange-400::-ms-input-placeholder {
+ color: #f6ad55;
+}
+
+.placeholder-orange-400::placeholder {
+ color: #f6ad55;
+}
+
+.placeholder-orange-500::-webkit-input-placeholder {
+ color: #ed8936;
+}
+
+.placeholder-orange-500::-moz-placeholder {
+ color: #ed8936;
+}
+
+.placeholder-orange-500:-ms-input-placeholder {
+ color: #ed8936;
+}
+
+.placeholder-orange-500::-ms-input-placeholder {
+ color: #ed8936;
+}
+
+.placeholder-orange-500::placeholder {
+ color: #ed8936;
+}
+
+.placeholder-orange-600::-webkit-input-placeholder {
+ color: #dd6b20;
+}
+
+.placeholder-orange-600::-moz-placeholder {
+ color: #dd6b20;
+}
+
+.placeholder-orange-600:-ms-input-placeholder {
+ color: #dd6b20;
+}
+
+.placeholder-orange-600::-ms-input-placeholder {
+ color: #dd6b20;
+}
+
+.placeholder-orange-600::placeholder {
+ color: #dd6b20;
+}
+
+.placeholder-orange-700::-webkit-input-placeholder {
+ color: #c05621;
+}
+
+.placeholder-orange-700::-moz-placeholder {
+ color: #c05621;
+}
+
+.placeholder-orange-700:-ms-input-placeholder {
+ color: #c05621;
+}
+
+.placeholder-orange-700::-ms-input-placeholder {
+ color: #c05621;
+}
+
+.placeholder-orange-700::placeholder {
+ color: #c05621;
+}
+
+.placeholder-orange-800::-webkit-input-placeholder {
+ color: #9c4221;
+}
+
+.placeholder-orange-800::-moz-placeholder {
+ color: #9c4221;
+}
+
+.placeholder-orange-800:-ms-input-placeholder {
+ color: #9c4221;
+}
+
+.placeholder-orange-800::-ms-input-placeholder {
+ color: #9c4221;
+}
+
+.placeholder-orange-800::placeholder {
+ color: #9c4221;
+}
+
+.placeholder-orange-900::-webkit-input-placeholder {
+ color: #7b341e;
+}
+
+.placeholder-orange-900::-moz-placeholder {
+ color: #7b341e;
+}
+
+.placeholder-orange-900:-ms-input-placeholder {
+ color: #7b341e;
+}
+
+.placeholder-orange-900::-ms-input-placeholder {
+ color: #7b341e;
+}
+
+.placeholder-orange-900::placeholder {
+ color: #7b341e;
+}
+
+.placeholder-yellow-100::-webkit-input-placeholder {
+ color: #fffff0;
+}
+
+.placeholder-yellow-100::-moz-placeholder {
+ color: #fffff0;
+}
+
+.placeholder-yellow-100:-ms-input-placeholder {
+ color: #fffff0;
+}
+
+.placeholder-yellow-100::-ms-input-placeholder {
+ color: #fffff0;
+}
+
+.placeholder-yellow-100::placeholder {
+ color: #fffff0;
+}
+
+.placeholder-yellow-200::-webkit-input-placeholder {
+ color: #fefcbf;
+}
+
+.placeholder-yellow-200::-moz-placeholder {
+ color: #fefcbf;
+}
+
+.placeholder-yellow-200:-ms-input-placeholder {
+ color: #fefcbf;
+}
+
+.placeholder-yellow-200::-ms-input-placeholder {
+ color: #fefcbf;
+}
+
+.placeholder-yellow-200::placeholder {
+ color: #fefcbf;
+}
+
+.placeholder-yellow-300::-webkit-input-placeholder {
+ color: #faf089;
+}
+
+.placeholder-yellow-300::-moz-placeholder {
+ color: #faf089;
+}
+
+.placeholder-yellow-300:-ms-input-placeholder {
+ color: #faf089;
+}
+
+.placeholder-yellow-300::-ms-input-placeholder {
+ color: #faf089;
+}
+
+.placeholder-yellow-300::placeholder {
+ color: #faf089;
+}
+
+.placeholder-yellow-400::-webkit-input-placeholder {
+ color: #f6e05e;
+}
+
+.placeholder-yellow-400::-moz-placeholder {
+ color: #f6e05e;
+}
+
+.placeholder-yellow-400:-ms-input-placeholder {
+ color: #f6e05e;
+}
+
+.placeholder-yellow-400::-ms-input-placeholder {
+ color: #f6e05e;
+}
+
+.placeholder-yellow-400::placeholder {
+ color: #f6e05e;
+}
+
+.placeholder-yellow-500::-webkit-input-placeholder {
+ color: #ecc94b;
+}
+
+.placeholder-yellow-500::-moz-placeholder {
+ color: #ecc94b;
+}
+
+.placeholder-yellow-500:-ms-input-placeholder {
+ color: #ecc94b;
+}
+
+.placeholder-yellow-500::-ms-input-placeholder {
+ color: #ecc94b;
+}
+
+.placeholder-yellow-500::placeholder {
+ color: #ecc94b;
+}
+
+.placeholder-yellow-600::-webkit-input-placeholder {
+ color: #d69e2e;
+}
+
+.placeholder-yellow-600::-moz-placeholder {
+ color: #d69e2e;
+}
+
+.placeholder-yellow-600:-ms-input-placeholder {
+ color: #d69e2e;
+}
+
+.placeholder-yellow-600::-ms-input-placeholder {
+ color: #d69e2e;
+}
+
+.placeholder-yellow-600::placeholder {
+ color: #d69e2e;
+}
+
+.placeholder-yellow-700::-webkit-input-placeholder {
+ color: #b7791f;
+}
+
+.placeholder-yellow-700::-moz-placeholder {
+ color: #b7791f;
+}
+
+.placeholder-yellow-700:-ms-input-placeholder {
+ color: #b7791f;
+}
+
+.placeholder-yellow-700::-ms-input-placeholder {
+ color: #b7791f;
+}
+
+.placeholder-yellow-700::placeholder {
+ color: #b7791f;
+}
+
+.placeholder-yellow-800::-webkit-input-placeholder {
+ color: #975a16;
+}
+
+.placeholder-yellow-800::-moz-placeholder {
+ color: #975a16;
+}
+
+.placeholder-yellow-800:-ms-input-placeholder {
+ color: #975a16;
+}
+
+.placeholder-yellow-800::-ms-input-placeholder {
+ color: #975a16;
+}
+
+.placeholder-yellow-800::placeholder {
+ color: #975a16;
+}
+
+.placeholder-yellow-900::-webkit-input-placeholder {
+ color: #744210;
+}
+
+.placeholder-yellow-900::-moz-placeholder {
+ color: #744210;
+}
+
+.placeholder-yellow-900:-ms-input-placeholder {
+ color: #744210;
+}
+
+.placeholder-yellow-900::-ms-input-placeholder {
+ color: #744210;
+}
+
+.placeholder-yellow-900::placeholder {
+ color: #744210;
+}
+
+.placeholder-green-100::-webkit-input-placeholder {
+ color: #f0fff4;
+}
+
+.placeholder-green-100::-moz-placeholder {
+ color: #f0fff4;
+}
+
+.placeholder-green-100:-ms-input-placeholder {
+ color: #f0fff4;
+}
+
+.placeholder-green-100::-ms-input-placeholder {
+ color: #f0fff4;
+}
+
+.placeholder-green-100::placeholder {
+ color: #f0fff4;
+}
+
+.placeholder-green-200::-webkit-input-placeholder {
+ color: #c6f6d5;
+}
+
+.placeholder-green-200::-moz-placeholder {
+ color: #c6f6d5;
+}
+
+.placeholder-green-200:-ms-input-placeholder {
+ color: #c6f6d5;
+}
+
+.placeholder-green-200::-ms-input-placeholder {
+ color: #c6f6d5;
+}
+
+.placeholder-green-200::placeholder {
+ color: #c6f6d5;
+}
+
+.placeholder-green-300::-webkit-input-placeholder {
+ color: #9ae6b4;
+}
+
+.placeholder-green-300::-moz-placeholder {
+ color: #9ae6b4;
+}
+
+.placeholder-green-300:-ms-input-placeholder {
+ color: #9ae6b4;
+}
+
+.placeholder-green-300::-ms-input-placeholder {
+ color: #9ae6b4;
+}
+
+.placeholder-green-300::placeholder {
+ color: #9ae6b4;
+}
+
+.placeholder-green-400::-webkit-input-placeholder {
+ color: #68d391;
+}
+
+.placeholder-green-400::-moz-placeholder {
+ color: #68d391;
+}
+
+.placeholder-green-400:-ms-input-placeholder {
+ color: #68d391;
+}
+
+.placeholder-green-400::-ms-input-placeholder {
+ color: #68d391;
+}
+
+.placeholder-green-400::placeholder {
+ color: #68d391;
+}
+
+.placeholder-green-500::-webkit-input-placeholder {
+ color: #48bb78;
+}
+
+.placeholder-green-500::-moz-placeholder {
+ color: #48bb78;
+}
+
+.placeholder-green-500:-ms-input-placeholder {
+ color: #48bb78;
+}
+
+.placeholder-green-500::-ms-input-placeholder {
+ color: #48bb78;
+}
+
+.placeholder-green-500::placeholder {
+ color: #48bb78;
+}
+
+.placeholder-green-600::-webkit-input-placeholder {
+ color: #38a169;
+}
+
+.placeholder-green-600::-moz-placeholder {
+ color: #38a169;
+}
+
+.placeholder-green-600:-ms-input-placeholder {
+ color: #38a169;
+}
+
+.placeholder-green-600::-ms-input-placeholder {
+ color: #38a169;
+}
+
+.placeholder-green-600::placeholder {
+ color: #38a169;
+}
+
+.placeholder-green-700::-webkit-input-placeholder {
+ color: #2f855a;
+}
+
+.placeholder-green-700::-moz-placeholder {
+ color: #2f855a;
+}
+
+.placeholder-green-700:-ms-input-placeholder {
+ color: #2f855a;
+}
+
+.placeholder-green-700::-ms-input-placeholder {
+ color: #2f855a;
+}
+
+.placeholder-green-700::placeholder {
+ color: #2f855a;
+}
+
+.placeholder-green-800::-webkit-input-placeholder {
+ color: #276749;
+}
+
+.placeholder-green-800::-moz-placeholder {
+ color: #276749;
+}
+
+.placeholder-green-800:-ms-input-placeholder {
+ color: #276749;
+}
+
+.placeholder-green-800::-ms-input-placeholder {
+ color: #276749;
+}
+
+.placeholder-green-800::placeholder {
+ color: #276749;
+}
+
+.placeholder-green-900::-webkit-input-placeholder {
+ color: #22543d;
+}
+
+.placeholder-green-900::-moz-placeholder {
+ color: #22543d;
+}
+
+.placeholder-green-900:-ms-input-placeholder {
+ color: #22543d;
+}
+
+.placeholder-green-900::-ms-input-placeholder {
+ color: #22543d;
+}
+
+.placeholder-green-900::placeholder {
+ color: #22543d;
+}
+
+.placeholder-teal-100::-webkit-input-placeholder {
+ color: #e6fffa;
+}
+
+.placeholder-teal-100::-moz-placeholder {
+ color: #e6fffa;
+}
+
+.placeholder-teal-100:-ms-input-placeholder {
+ color: #e6fffa;
+}
+
+.placeholder-teal-100::-ms-input-placeholder {
+ color: #e6fffa;
+}
+
+.placeholder-teal-100::placeholder {
+ color: #e6fffa;
+}
+
+.placeholder-teal-200::-webkit-input-placeholder {
+ color: #b2f5ea;
+}
+
+.placeholder-teal-200::-moz-placeholder {
+ color: #b2f5ea;
+}
+
+.placeholder-teal-200:-ms-input-placeholder {
+ color: #b2f5ea;
+}
+
+.placeholder-teal-200::-ms-input-placeholder {
+ color: #b2f5ea;
+}
+
+.placeholder-teal-200::placeholder {
+ color: #b2f5ea;
+}
+
+.placeholder-teal-300::-webkit-input-placeholder {
+ color: #81e6d9;
+}
+
+.placeholder-teal-300::-moz-placeholder {
+ color: #81e6d9;
+}
+
+.placeholder-teal-300:-ms-input-placeholder {
+ color: #81e6d9;
+}
+
+.placeholder-teal-300::-ms-input-placeholder {
+ color: #81e6d9;
+}
+
+.placeholder-teal-300::placeholder {
+ color: #81e6d9;
+}
+
+.placeholder-teal-400::-webkit-input-placeholder {
+ color: #4fd1c5;
+}
+
+.placeholder-teal-400::-moz-placeholder {
+ color: #4fd1c5;
+}
+
+.placeholder-teal-400:-ms-input-placeholder {
+ color: #4fd1c5;
+}
+
+.placeholder-teal-400::-ms-input-placeholder {
+ color: #4fd1c5;
+}
+
+.placeholder-teal-400::placeholder {
+ color: #4fd1c5;
+}
+
+.placeholder-teal-500::-webkit-input-placeholder {
+ color: #38b2ac;
+}
+
+.placeholder-teal-500::-moz-placeholder {
+ color: #38b2ac;
+}
+
+.placeholder-teal-500:-ms-input-placeholder {
+ color: #38b2ac;
+}
+
+.placeholder-teal-500::-ms-input-placeholder {
+ color: #38b2ac;
+}
+
+.placeholder-teal-500::placeholder {
+ color: #38b2ac;
+}
+
+.placeholder-teal-600::-webkit-input-placeholder {
+ color: #319795;
+}
+
+.placeholder-teal-600::-moz-placeholder {
+ color: #319795;
+}
+
+.placeholder-teal-600:-ms-input-placeholder {
+ color: #319795;
+}
+
+.placeholder-teal-600::-ms-input-placeholder {
+ color: #319795;
+}
+
+.placeholder-teal-600::placeholder {
+ color: #319795;
+}
+
+.placeholder-teal-700::-webkit-input-placeholder {
+ color: #2c7a7b;
+}
+
+.placeholder-teal-700::-moz-placeholder {
+ color: #2c7a7b;
+}
+
+.placeholder-teal-700:-ms-input-placeholder {
+ color: #2c7a7b;
+}
+
+.placeholder-teal-700::-ms-input-placeholder {
+ color: #2c7a7b;
+}
+
+.placeholder-teal-700::placeholder {
+ color: #2c7a7b;
+}
+
+.placeholder-teal-800::-webkit-input-placeholder {
+ color: #285e61;
+}
+
+.placeholder-teal-800::-moz-placeholder {
+ color: #285e61;
+}
+
+.placeholder-teal-800:-ms-input-placeholder {
+ color: #285e61;
+}
+
+.placeholder-teal-800::-ms-input-placeholder {
+ color: #285e61;
+}
+
+.placeholder-teal-800::placeholder {
+ color: #285e61;
+}
+
+.placeholder-teal-900::-webkit-input-placeholder {
+ color: #234e52;
+}
+
+.placeholder-teal-900::-moz-placeholder {
+ color: #234e52;
+}
+
+.placeholder-teal-900:-ms-input-placeholder {
+ color: #234e52;
+}
+
+.placeholder-teal-900::-ms-input-placeholder {
+ color: #234e52;
+}
+
+.placeholder-teal-900::placeholder {
+ color: #234e52;
+}
+
+.placeholder-blue-100::-webkit-input-placeholder {
+ color: #ebf8ff;
+}
+
+.placeholder-blue-100::-moz-placeholder {
+ color: #ebf8ff;
+}
+
+.placeholder-blue-100:-ms-input-placeholder {
+ color: #ebf8ff;
+}
+
+.placeholder-blue-100::-ms-input-placeholder {
+ color: #ebf8ff;
+}
+
+.placeholder-blue-100::placeholder {
+ color: #ebf8ff;
+}
+
+.placeholder-blue-200::-webkit-input-placeholder {
+ color: #bee3f8;
+}
+
+.placeholder-blue-200::-moz-placeholder {
+ color: #bee3f8;
+}
+
+.placeholder-blue-200:-ms-input-placeholder {
+ color: #bee3f8;
+}
+
+.placeholder-blue-200::-ms-input-placeholder {
+ color: #bee3f8;
+}
+
+.placeholder-blue-200::placeholder {
+ color: #bee3f8;
+}
+
+.placeholder-blue-300::-webkit-input-placeholder {
+ color: #90cdf4;
+}
+
+.placeholder-blue-300::-moz-placeholder {
+ color: #90cdf4;
+}
+
+.placeholder-blue-300:-ms-input-placeholder {
+ color: #90cdf4;
+}
+
+.placeholder-blue-300::-ms-input-placeholder {
+ color: #90cdf4;
+}
+
+.placeholder-blue-300::placeholder {
+ color: #90cdf4;
+}
+
+.placeholder-blue-400::-webkit-input-placeholder {
+ color: #63b3ed;
+}
+
+.placeholder-blue-400::-moz-placeholder {
+ color: #63b3ed;
+}
+
+.placeholder-blue-400:-ms-input-placeholder {
+ color: #63b3ed;
+}
+
+.placeholder-blue-400::-ms-input-placeholder {
+ color: #63b3ed;
+}
+
+.placeholder-blue-400::placeholder {
+ color: #63b3ed;
+}
+
+.placeholder-blue-500::-webkit-input-placeholder {
+ color: #4299e1;
+}
+
+.placeholder-blue-500::-moz-placeholder {
+ color: #4299e1;
+}
+
+.placeholder-blue-500:-ms-input-placeholder {
+ color: #4299e1;
+}
+
+.placeholder-blue-500::-ms-input-placeholder {
+ color: #4299e1;
+}
+
+.placeholder-blue-500::placeholder {
+ color: #4299e1;
+}
+
+.placeholder-blue-600::-webkit-input-placeholder {
+ color: #3182ce;
+}
+
+.placeholder-blue-600::-moz-placeholder {
+ color: #3182ce;
+}
+
+.placeholder-blue-600:-ms-input-placeholder {
+ color: #3182ce;
+}
+
+.placeholder-blue-600::-ms-input-placeholder {
+ color: #3182ce;
+}
+
+.placeholder-blue-600::placeholder {
+ color: #3182ce;
+}
+
+.placeholder-blue-700::-webkit-input-placeholder {
+ color: #2b6cb0;
+}
+
+.placeholder-blue-700::-moz-placeholder {
+ color: #2b6cb0;
+}
+
+.placeholder-blue-700:-ms-input-placeholder {
+ color: #2b6cb0;
+}
+
+.placeholder-blue-700::-ms-input-placeholder {
+ color: #2b6cb0;
+}
+
+.placeholder-blue-700::placeholder {
+ color: #2b6cb0;
+}
+
+.placeholder-blue-800::-webkit-input-placeholder {
+ color: #2c5282;
+}
+
+.placeholder-blue-800::-moz-placeholder {
+ color: #2c5282;
+}
+
+.placeholder-blue-800:-ms-input-placeholder {
+ color: #2c5282;
+}
+
+.placeholder-blue-800::-ms-input-placeholder {
+ color: #2c5282;
+}
+
+.placeholder-blue-800::placeholder {
+ color: #2c5282;
+}
+
+.placeholder-blue-900::-webkit-input-placeholder {
+ color: #2a4365;
+}
+
+.placeholder-blue-900::-moz-placeholder {
+ color: #2a4365;
+}
+
+.placeholder-blue-900:-ms-input-placeholder {
+ color: #2a4365;
+}
+
+.placeholder-blue-900::-ms-input-placeholder {
+ color: #2a4365;
+}
+
+.placeholder-blue-900::placeholder {
+ color: #2a4365;
+}
+
+.placeholder-indigo-100::-webkit-input-placeholder {
+ color: #ebf4ff;
+}
+
+.placeholder-indigo-100::-moz-placeholder {
+ color: #ebf4ff;
+}
+
+.placeholder-indigo-100:-ms-input-placeholder {
+ color: #ebf4ff;
+}
+
+.placeholder-indigo-100::-ms-input-placeholder {
+ color: #ebf4ff;
+}
+
+.placeholder-indigo-100::placeholder {
+ color: #ebf4ff;
+}
+
+.placeholder-indigo-200::-webkit-input-placeholder {
+ color: #c3dafe;
+}
+
+.placeholder-indigo-200::-moz-placeholder {
+ color: #c3dafe;
+}
+
+.placeholder-indigo-200:-ms-input-placeholder {
+ color: #c3dafe;
+}
+
+.placeholder-indigo-200::-ms-input-placeholder {
+ color: #c3dafe;
+}
+
+.placeholder-indigo-200::placeholder {
+ color: #c3dafe;
+}
+
+.placeholder-indigo-300::-webkit-input-placeholder {
+ color: #a3bffa;
+}
+
+.placeholder-indigo-300::-moz-placeholder {
+ color: #a3bffa;
+}
+
+.placeholder-indigo-300:-ms-input-placeholder {
+ color: #a3bffa;
+}
+
+.placeholder-indigo-300::-ms-input-placeholder {
+ color: #a3bffa;
+}
+
+.placeholder-indigo-300::placeholder {
+ color: #a3bffa;
+}
+
+.placeholder-indigo-400::-webkit-input-placeholder {
+ color: #7f9cf5;
+}
+
+.placeholder-indigo-400::-moz-placeholder {
+ color: #7f9cf5;
+}
+
+.placeholder-indigo-400:-ms-input-placeholder {
+ color: #7f9cf5;
+}
+
+.placeholder-indigo-400::-ms-input-placeholder {
+ color: #7f9cf5;
+}
+
+.placeholder-indigo-400::placeholder {
+ color: #7f9cf5;
+}
+
+.placeholder-indigo-500::-webkit-input-placeholder {
+ color: #667eea;
+}
+
+.placeholder-indigo-500::-moz-placeholder {
+ color: #667eea;
+}
+
+.placeholder-indigo-500:-ms-input-placeholder {
+ color: #667eea;
+}
+
+.placeholder-indigo-500::-ms-input-placeholder {
+ color: #667eea;
+}
+
+.placeholder-indigo-500::placeholder {
+ color: #667eea;
+}
+
+.placeholder-indigo-600::-webkit-input-placeholder {
+ color: #5a67d8;
+}
+
+.placeholder-indigo-600::-moz-placeholder {
+ color: #5a67d8;
+}
+
+.placeholder-indigo-600:-ms-input-placeholder {
+ color: #5a67d8;
+}
+
+.placeholder-indigo-600::-ms-input-placeholder {
+ color: #5a67d8;
+}
+
+.placeholder-indigo-600::placeholder {
+ color: #5a67d8;
+}
+
+.placeholder-indigo-700::-webkit-input-placeholder {
+ color: #4c51bf;
+}
+
+.placeholder-indigo-700::-moz-placeholder {
+ color: #4c51bf;
+}
+
+.placeholder-indigo-700:-ms-input-placeholder {
+ color: #4c51bf;
+}
+
+.placeholder-indigo-700::-ms-input-placeholder {
+ color: #4c51bf;
+}
+
+.placeholder-indigo-700::placeholder {
+ color: #4c51bf;
+}
+
+.placeholder-indigo-800::-webkit-input-placeholder {
+ color: #434190;
+}
+
+.placeholder-indigo-800::-moz-placeholder {
+ color: #434190;
+}
+
+.placeholder-indigo-800:-ms-input-placeholder {
+ color: #434190;
+}
+
+.placeholder-indigo-800::-ms-input-placeholder {
+ color: #434190;
+}
+
+.placeholder-indigo-800::placeholder {
+ color: #434190;
+}
+
+.placeholder-indigo-900::-webkit-input-placeholder {
+ color: #3c366b;
+}
+
+.placeholder-indigo-900::-moz-placeholder {
+ color: #3c366b;
+}
+
+.placeholder-indigo-900:-ms-input-placeholder {
+ color: #3c366b;
+}
+
+.placeholder-indigo-900::-ms-input-placeholder {
+ color: #3c366b;
+}
+
+.placeholder-indigo-900::placeholder {
+ color: #3c366b;
+}
+
+.placeholder-purple-100::-webkit-input-placeholder {
+ color: #faf5ff;
+}
+
+.placeholder-purple-100::-moz-placeholder {
+ color: #faf5ff;
+}
+
+.placeholder-purple-100:-ms-input-placeholder {
+ color: #faf5ff;
+}
+
+.placeholder-purple-100::-ms-input-placeholder {
+ color: #faf5ff;
+}
+
+.placeholder-purple-100::placeholder {
+ color: #faf5ff;
+}
+
+.placeholder-purple-200::-webkit-input-placeholder {
+ color: #e9d8fd;
+}
+
+.placeholder-purple-200::-moz-placeholder {
+ color: #e9d8fd;
+}
+
+.placeholder-purple-200:-ms-input-placeholder {
+ color: #e9d8fd;
+}
+
+.placeholder-purple-200::-ms-input-placeholder {
+ color: #e9d8fd;
+}
+
+.placeholder-purple-200::placeholder {
+ color: #e9d8fd;
+}
+
+.placeholder-purple-300::-webkit-input-placeholder {
+ color: #d6bcfa;
+}
+
+.placeholder-purple-300::-moz-placeholder {
+ color: #d6bcfa;
+}
+
+.placeholder-purple-300:-ms-input-placeholder {
+ color: #d6bcfa;
+}
+
+.placeholder-purple-300::-ms-input-placeholder {
+ color: #d6bcfa;
+}
+
+.placeholder-purple-300::placeholder {
+ color: #d6bcfa;
+}
+
+.placeholder-purple-400::-webkit-input-placeholder {
+ color: #b794f4;
+}
+
+.placeholder-purple-400::-moz-placeholder {
+ color: #b794f4;
+}
+
+.placeholder-purple-400:-ms-input-placeholder {
+ color: #b794f4;
+}
+
+.placeholder-purple-400::-ms-input-placeholder {
+ color: #b794f4;
+}
+
+.placeholder-purple-400::placeholder {
+ color: #b794f4;
+}
+
+.placeholder-purple-500::-webkit-input-placeholder {
+ color: #9f7aea;
+}
+
+.placeholder-purple-500::-moz-placeholder {
+ color: #9f7aea;
+}
+
+.placeholder-purple-500:-ms-input-placeholder {
+ color: #9f7aea;
+}
+
+.placeholder-purple-500::-ms-input-placeholder {
+ color: #9f7aea;
+}
+
+.placeholder-purple-500::placeholder {
+ color: #9f7aea;
+}
+
+.placeholder-purple-600::-webkit-input-placeholder {
+ color: #805ad5;
+}
+
+.placeholder-purple-600::-moz-placeholder {
+ color: #805ad5;
+}
+
+.placeholder-purple-600:-ms-input-placeholder {
+ color: #805ad5;
+}
+
+.placeholder-purple-600::-ms-input-placeholder {
+ color: #805ad5;
+}
+
+.placeholder-purple-600::placeholder {
+ color: #805ad5;
+}
+
+.placeholder-purple-700::-webkit-input-placeholder {
+ color: #6b46c1;
+}
+
+.placeholder-purple-700::-moz-placeholder {
+ color: #6b46c1;
+}
+
+.placeholder-purple-700:-ms-input-placeholder {
+ color: #6b46c1;
+}
+
+.placeholder-purple-700::-ms-input-placeholder {
+ color: #6b46c1;
+}
+
+.placeholder-purple-700::placeholder {
+ color: #6b46c1;
+}
+
+.placeholder-purple-800::-webkit-input-placeholder {
+ color: #553c9a;
+}
+
+.placeholder-purple-800::-moz-placeholder {
+ color: #553c9a;
+}
+
+.placeholder-purple-800:-ms-input-placeholder {
+ color: #553c9a;
+}
+
+.placeholder-purple-800::-ms-input-placeholder {
+ color: #553c9a;
+}
+
+.placeholder-purple-800::placeholder {
+ color: #553c9a;
+}
+
+.placeholder-purple-900::-webkit-input-placeholder {
+ color: #44337a;
+}
+
+.placeholder-purple-900::-moz-placeholder {
+ color: #44337a;
+}
+
+.placeholder-purple-900:-ms-input-placeholder {
+ color: #44337a;
+}
+
+.placeholder-purple-900::-ms-input-placeholder {
+ color: #44337a;
+}
+
+.placeholder-purple-900::placeholder {
+ color: #44337a;
+}
+
+.placeholder-pink-100::-webkit-input-placeholder {
+ color: #fff5f7;
+}
+
+.placeholder-pink-100::-moz-placeholder {
+ color: #fff5f7;
+}
+
+.placeholder-pink-100:-ms-input-placeholder {
+ color: #fff5f7;
+}
+
+.placeholder-pink-100::-ms-input-placeholder {
+ color: #fff5f7;
+}
+
+.placeholder-pink-100::placeholder {
+ color: #fff5f7;
+}
+
+.placeholder-pink-200::-webkit-input-placeholder {
+ color: #fed7e2;
+}
+
+.placeholder-pink-200::-moz-placeholder {
+ color: #fed7e2;
+}
+
+.placeholder-pink-200:-ms-input-placeholder {
+ color: #fed7e2;
+}
+
+.placeholder-pink-200::-ms-input-placeholder {
+ color: #fed7e2;
+}
+
+.placeholder-pink-200::placeholder {
+ color: #fed7e2;
+}
+
+.placeholder-pink-300::-webkit-input-placeholder {
+ color: #fbb6ce;
+}
+
+.placeholder-pink-300::-moz-placeholder {
+ color: #fbb6ce;
+}
+
+.placeholder-pink-300:-ms-input-placeholder {
+ color: #fbb6ce;
+}
+
+.placeholder-pink-300::-ms-input-placeholder {
+ color: #fbb6ce;
+}
+
+.placeholder-pink-300::placeholder {
+ color: #fbb6ce;
+}
+
+.placeholder-pink-400::-webkit-input-placeholder {
+ color: #f687b3;
+}
+
+.placeholder-pink-400::-moz-placeholder {
+ color: #f687b3;
+}
+
+.placeholder-pink-400:-ms-input-placeholder {
+ color: #f687b3;
+}
+
+.placeholder-pink-400::-ms-input-placeholder {
+ color: #f687b3;
+}
+
+.placeholder-pink-400::placeholder {
+ color: #f687b3;
+}
+
+.placeholder-pink-500::-webkit-input-placeholder {
+ color: #ed64a6;
+}
+
+.placeholder-pink-500::-moz-placeholder {
+ color: #ed64a6;
+}
+
+.placeholder-pink-500:-ms-input-placeholder {
+ color: #ed64a6;
+}
+
+.placeholder-pink-500::-ms-input-placeholder {
+ color: #ed64a6;
+}
+
+.placeholder-pink-500::placeholder {
+ color: #ed64a6;
+}
+
+.placeholder-pink-600::-webkit-input-placeholder {
+ color: #d53f8c;
+}
+
+.placeholder-pink-600::-moz-placeholder {
+ color: #d53f8c;
+}
+
+.placeholder-pink-600:-ms-input-placeholder {
+ color: #d53f8c;
+}
+
+.placeholder-pink-600::-ms-input-placeholder {
+ color: #d53f8c;
+}
+
+.placeholder-pink-600::placeholder {
+ color: #d53f8c;
+}
+
+.placeholder-pink-700::-webkit-input-placeholder {
+ color: #b83280;
+}
+
+.placeholder-pink-700::-moz-placeholder {
+ color: #b83280;
+}
+
+.placeholder-pink-700:-ms-input-placeholder {
+ color: #b83280;
+}
+
+.placeholder-pink-700::-ms-input-placeholder {
+ color: #b83280;
+}
+
+.placeholder-pink-700::placeholder {
+ color: #b83280;
+}
+
+.placeholder-pink-800::-webkit-input-placeholder {
+ color: #97266d;
+}
+
+.placeholder-pink-800::-moz-placeholder {
+ color: #97266d;
+}
+
+.placeholder-pink-800:-ms-input-placeholder {
+ color: #97266d;
+}
+
+.placeholder-pink-800::-ms-input-placeholder {
+ color: #97266d;
+}
+
+.placeholder-pink-800::placeholder {
+ color: #97266d;
+}
+
+.placeholder-pink-900::-webkit-input-placeholder {
+ color: #702459;
+}
+
+.placeholder-pink-900::-moz-placeholder {
+ color: #702459;
+}
+
+.placeholder-pink-900:-ms-input-placeholder {
+ color: #702459;
+}
+
+.placeholder-pink-900::-ms-input-placeholder {
+ color: #702459;
+}
+
+.placeholder-pink-900::placeholder {
+ color: #702459;
+}
+
+.focus\:placeholder-transparent:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+
+.focus\:placeholder-transparent:focus::-moz-placeholder {
+ color: transparent;
+}
+
+.focus\:placeholder-transparent:focus:-ms-input-placeholder {
+ color: transparent;
+}
+
+.focus\:placeholder-transparent:focus::-ms-input-placeholder {
+ color: transparent;
+}
+
+.focus\:placeholder-transparent:focus::placeholder {
+ color: transparent;
+}
+
+.focus\:placeholder-black:focus::-webkit-input-placeholder {
+ color: #000;
+}
+
+.focus\:placeholder-black:focus::-moz-placeholder {
+ color: #000;
+}
+
+.focus\:placeholder-black:focus:-ms-input-placeholder {
+ color: #000;
+}
+
+.focus\:placeholder-black:focus::-ms-input-placeholder {
+ color: #000;
+}
+
+.focus\:placeholder-black:focus::placeholder {
+ color: #000;
+}
+
+.focus\:placeholder-white:focus::-webkit-input-placeholder {
+ color: #fff;
+}
+
+.focus\:placeholder-white:focus::-moz-placeholder {
+ color: #fff;
+}
+
+.focus\:placeholder-white:focus:-ms-input-placeholder {
+ color: #fff;
+}
+
+.focus\:placeholder-white:focus::-ms-input-placeholder {
+ color: #fff;
+}
+
+.focus\:placeholder-white:focus::placeholder {
+ color: #fff;
+}
+
+.focus\:placeholder-gray-100:focus::-webkit-input-placeholder {
+ color: #f7fafc;
+}
+
+.focus\:placeholder-gray-100:focus::-moz-placeholder {
+ color: #f7fafc;
+}
+
+.focus\:placeholder-gray-100:focus:-ms-input-placeholder {
+ color: #f7fafc;
+}
+
+.focus\:placeholder-gray-100:focus::-ms-input-placeholder {
+ color: #f7fafc;
+}
+
+.focus\:placeholder-gray-100:focus::placeholder {
+ color: #f7fafc;
+}
+
+.focus\:placeholder-gray-200:focus::-webkit-input-placeholder {
+ color: #edf2f7;
+}
+
+.focus\:placeholder-gray-200:focus::-moz-placeholder {
+ color: #edf2f7;
+}
+
+.focus\:placeholder-gray-200:focus:-ms-input-placeholder {
+ color: #edf2f7;
+}
+
+.focus\:placeholder-gray-200:focus::-ms-input-placeholder {
+ color: #edf2f7;
+}
+
+.focus\:placeholder-gray-200:focus::placeholder {
+ color: #edf2f7;
+}
+
+.focus\:placeholder-gray-300:focus::-webkit-input-placeholder {
+ color: #e2e8f0;
+}
+
+.focus\:placeholder-gray-300:focus::-moz-placeholder {
+ color: #e2e8f0;
+}
+
+.focus\:placeholder-gray-300:focus:-ms-input-placeholder {
+ color: #e2e8f0;
+}
+
+.focus\:placeholder-gray-300:focus::-ms-input-placeholder {
+ color: #e2e8f0;
+}
+
+.focus\:placeholder-gray-300:focus::placeholder {
+ color: #e2e8f0;
+}
+
+.focus\:placeholder-gray-400:focus::-webkit-input-placeholder {
+ color: #cbd5e0;
+}
+
+.focus\:placeholder-gray-400:focus::-moz-placeholder {
+ color: #cbd5e0;
+}
+
+.focus\:placeholder-gray-400:focus:-ms-input-placeholder {
+ color: #cbd5e0;
+}
+
+.focus\:placeholder-gray-400:focus::-ms-input-placeholder {
+ color: #cbd5e0;
+}
+
+.focus\:placeholder-gray-400:focus::placeholder {
+ color: #cbd5e0;
+}
+
+.focus\:placeholder-gray-500:focus::-webkit-input-placeholder {
+ color: #a0aec0;
+}
+
+.focus\:placeholder-gray-500:focus::-moz-placeholder {
+ color: #a0aec0;
+}
+
+.focus\:placeholder-gray-500:focus:-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+.focus\:placeholder-gray-500:focus::-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+.focus\:placeholder-gray-500:focus::placeholder {
+ color: #a0aec0;
+}
+
+.focus\:placeholder-gray-600:focus::-webkit-input-placeholder {
+ color: #718096;
+}
+
+.focus\:placeholder-gray-600:focus::-moz-placeholder {
+ color: #718096;
+}
+
+.focus\:placeholder-gray-600:focus:-ms-input-placeholder {
+ color: #718096;
+}
+
+.focus\:placeholder-gray-600:focus::-ms-input-placeholder {
+ color: #718096;
+}
+
+.focus\:placeholder-gray-600:focus::placeholder {
+ color: #718096;
+}
+
+.focus\:placeholder-gray-700:focus::-webkit-input-placeholder {
+ color: #4a5568;
+}
+
+.focus\:placeholder-gray-700:focus::-moz-placeholder {
+ color: #4a5568;
+}
+
+.focus\:placeholder-gray-700:focus:-ms-input-placeholder {
+ color: #4a5568;
+}
+
+.focus\:placeholder-gray-700:focus::-ms-input-placeholder {
+ color: #4a5568;
+}
+
+.focus\:placeholder-gray-700:focus::placeholder {
+ color: #4a5568;
+}
+
+.focus\:placeholder-gray-800:focus::-webkit-input-placeholder {
+ color: #2d3748;
+}
+
+.focus\:placeholder-gray-800:focus::-moz-placeholder {
+ color: #2d3748;
+}
+
+.focus\:placeholder-gray-800:focus:-ms-input-placeholder {
+ color: #2d3748;
+}
+
+.focus\:placeholder-gray-800:focus::-ms-input-placeholder {
+ color: #2d3748;
+}
+
+.focus\:placeholder-gray-800:focus::placeholder {
+ color: #2d3748;
+}
+
+.focus\:placeholder-gray-900:focus::-webkit-input-placeholder {
+ color: #1a202c;
+}
+
+.focus\:placeholder-gray-900:focus::-moz-placeholder {
+ color: #1a202c;
+}
+
+.focus\:placeholder-gray-900:focus:-ms-input-placeholder {
+ color: #1a202c;
+}
+
+.focus\:placeholder-gray-900:focus::-ms-input-placeholder {
+ color: #1a202c;
+}
+
+.focus\:placeholder-gray-900:focus::placeholder {
+ color: #1a202c;
+}
+
+.focus\:placeholder-red-100:focus::-webkit-input-placeholder {
+ color: #fff5f5;
+}
+
+.focus\:placeholder-red-100:focus::-moz-placeholder {
+ color: #fff5f5;
+}
+
+.focus\:placeholder-red-100:focus:-ms-input-placeholder {
+ color: #fff5f5;
+}
+
+.focus\:placeholder-red-100:focus::-ms-input-placeholder {
+ color: #fff5f5;
+}
+
+.focus\:placeholder-red-100:focus::placeholder {
+ color: #fff5f5;
+}
+
+.focus\:placeholder-red-200:focus::-webkit-input-placeholder {
+ color: #fed7d7;
+}
+
+.focus\:placeholder-red-200:focus::-moz-placeholder {
+ color: #fed7d7;
+}
+
+.focus\:placeholder-red-200:focus:-ms-input-placeholder {
+ color: #fed7d7;
+}
+
+.focus\:placeholder-red-200:focus::-ms-input-placeholder {
+ color: #fed7d7;
+}
+
+.focus\:placeholder-red-200:focus::placeholder {
+ color: #fed7d7;
+}
+
+.focus\:placeholder-red-300:focus::-webkit-input-placeholder {
+ color: #feb2b2;
+}
+
+.focus\:placeholder-red-300:focus::-moz-placeholder {
+ color: #feb2b2;
+}
+
+.focus\:placeholder-red-300:focus:-ms-input-placeholder {
+ color: #feb2b2;
+}
+
+.focus\:placeholder-red-300:focus::-ms-input-placeholder {
+ color: #feb2b2;
+}
+
+.focus\:placeholder-red-300:focus::placeholder {
+ color: #feb2b2;
+}
+
+.focus\:placeholder-red-400:focus::-webkit-input-placeholder {
+ color: #fc8181;
+}
+
+.focus\:placeholder-red-400:focus::-moz-placeholder {
+ color: #fc8181;
+}
+
+.focus\:placeholder-red-400:focus:-ms-input-placeholder {
+ color: #fc8181;
+}
+
+.focus\:placeholder-red-400:focus::-ms-input-placeholder {
+ color: #fc8181;
+}
+
+.focus\:placeholder-red-400:focus::placeholder {
+ color: #fc8181;
+}
+
+.focus\:placeholder-red-500:focus::-webkit-input-placeholder {
+ color: #f56565;
+}
+
+.focus\:placeholder-red-500:focus::-moz-placeholder {
+ color: #f56565;
+}
+
+.focus\:placeholder-red-500:focus:-ms-input-placeholder {
+ color: #f56565;
+}
+
+.focus\:placeholder-red-500:focus::-ms-input-placeholder {
+ color: #f56565;
+}
+
+.focus\:placeholder-red-500:focus::placeholder {
+ color: #f56565;
+}
+
+.focus\:placeholder-red-600:focus::-webkit-input-placeholder {
+ color: #e53e3e;
+}
+
+.focus\:placeholder-red-600:focus::-moz-placeholder {
+ color: #e53e3e;
+}
+
+.focus\:placeholder-red-600:focus:-ms-input-placeholder {
+ color: #e53e3e;
+}
+
+.focus\:placeholder-red-600:focus::-ms-input-placeholder {
+ color: #e53e3e;
+}
+
+.focus\:placeholder-red-600:focus::placeholder {
+ color: #e53e3e;
+}
+
+.focus\:placeholder-red-700:focus::-webkit-input-placeholder {
+ color: #c53030;
+}
+
+.focus\:placeholder-red-700:focus::-moz-placeholder {
+ color: #c53030;
+}
+
+.focus\:placeholder-red-700:focus:-ms-input-placeholder {
+ color: #c53030;
+}
+
+.focus\:placeholder-red-700:focus::-ms-input-placeholder {
+ color: #c53030;
+}
+
+.focus\:placeholder-red-700:focus::placeholder {
+ color: #c53030;
+}
+
+.focus\:placeholder-red-800:focus::-webkit-input-placeholder {
+ color: #9b2c2c;
+}
+
+.focus\:placeholder-red-800:focus::-moz-placeholder {
+ color: #9b2c2c;
+}
+
+.focus\:placeholder-red-800:focus:-ms-input-placeholder {
+ color: #9b2c2c;
+}
+
+.focus\:placeholder-red-800:focus::-ms-input-placeholder {
+ color: #9b2c2c;
+}
+
+.focus\:placeholder-red-800:focus::placeholder {
+ color: #9b2c2c;
+}
+
+.focus\:placeholder-red-900:focus::-webkit-input-placeholder {
+ color: #742a2a;
+}
+
+.focus\:placeholder-red-900:focus::-moz-placeholder {
+ color: #742a2a;
+}
+
+.focus\:placeholder-red-900:focus:-ms-input-placeholder {
+ color: #742a2a;
+}
+
+.focus\:placeholder-red-900:focus::-ms-input-placeholder {
+ color: #742a2a;
+}
+
+.focus\:placeholder-red-900:focus::placeholder {
+ color: #742a2a;
+}
+
+.focus\:placeholder-orange-100:focus::-webkit-input-placeholder {
+ color: #fffaf0;
+}
+
+.focus\:placeholder-orange-100:focus::-moz-placeholder {
+ color: #fffaf0;
+}
+
+.focus\:placeholder-orange-100:focus:-ms-input-placeholder {
+ color: #fffaf0;
+}
+
+.focus\:placeholder-orange-100:focus::-ms-input-placeholder {
+ color: #fffaf0;
+}
+
+.focus\:placeholder-orange-100:focus::placeholder {
+ color: #fffaf0;
+}
+
+.focus\:placeholder-orange-200:focus::-webkit-input-placeholder {
+ color: #feebc8;
+}
+
+.focus\:placeholder-orange-200:focus::-moz-placeholder {
+ color: #feebc8;
+}
+
+.focus\:placeholder-orange-200:focus:-ms-input-placeholder {
+ color: #feebc8;
+}
+
+.focus\:placeholder-orange-200:focus::-ms-input-placeholder {
+ color: #feebc8;
+}
+
+.focus\:placeholder-orange-200:focus::placeholder {
+ color: #feebc8;
+}
+
+.focus\:placeholder-orange-300:focus::-webkit-input-placeholder {
+ color: #fbd38d;
+}
+
+.focus\:placeholder-orange-300:focus::-moz-placeholder {
+ color: #fbd38d;
+}
+
+.focus\:placeholder-orange-300:focus:-ms-input-placeholder {
+ color: #fbd38d;
+}
+
+.focus\:placeholder-orange-300:focus::-ms-input-placeholder {
+ color: #fbd38d;
+}
+
+.focus\:placeholder-orange-300:focus::placeholder {
+ color: #fbd38d;
+}
+
+.focus\:placeholder-orange-400:focus::-webkit-input-placeholder {
+ color: #f6ad55;
+}
+
+.focus\:placeholder-orange-400:focus::-moz-placeholder {
+ color: #f6ad55;
+}
+
+.focus\:placeholder-orange-400:focus:-ms-input-placeholder {
+ color: #f6ad55;
+}
+
+.focus\:placeholder-orange-400:focus::-ms-input-placeholder {
+ color: #f6ad55;
+}
+
+.focus\:placeholder-orange-400:focus::placeholder {
+ color: #f6ad55;
+}
+
+.focus\:placeholder-orange-500:focus::-webkit-input-placeholder {
+ color: #ed8936;
+}
+
+.focus\:placeholder-orange-500:focus::-moz-placeholder {
+ color: #ed8936;
+}
+
+.focus\:placeholder-orange-500:focus:-ms-input-placeholder {
+ color: #ed8936;
+}
+
+.focus\:placeholder-orange-500:focus::-ms-input-placeholder {
+ color: #ed8936;
+}
+
+.focus\:placeholder-orange-500:focus::placeholder {
+ color: #ed8936;
+}
+
+.focus\:placeholder-orange-600:focus::-webkit-input-placeholder {
+ color: #dd6b20;
+}
+
+.focus\:placeholder-orange-600:focus::-moz-placeholder {
+ color: #dd6b20;
+}
+
+.focus\:placeholder-orange-600:focus:-ms-input-placeholder {
+ color: #dd6b20;
+}
+
+.focus\:placeholder-orange-600:focus::-ms-input-placeholder {
+ color: #dd6b20;
+}
+
+.focus\:placeholder-orange-600:focus::placeholder {
+ color: #dd6b20;
+}
+
+.focus\:placeholder-orange-700:focus::-webkit-input-placeholder {
+ color: #c05621;
+}
+
+.focus\:placeholder-orange-700:focus::-moz-placeholder {
+ color: #c05621;
+}
+
+.focus\:placeholder-orange-700:focus:-ms-input-placeholder {
+ color: #c05621;
+}
+
+.focus\:placeholder-orange-700:focus::-ms-input-placeholder {
+ color: #c05621;
+}
+
+.focus\:placeholder-orange-700:focus::placeholder {
+ color: #c05621;
+}
+
+.focus\:placeholder-orange-800:focus::-webkit-input-placeholder {
+ color: #9c4221;
+}
+
+.focus\:placeholder-orange-800:focus::-moz-placeholder {
+ color: #9c4221;
+}
+
+.focus\:placeholder-orange-800:focus:-ms-input-placeholder {
+ color: #9c4221;
+}
+
+.focus\:placeholder-orange-800:focus::-ms-input-placeholder {
+ color: #9c4221;
+}
+
+.focus\:placeholder-orange-800:focus::placeholder {
+ color: #9c4221;
+}
+
+.focus\:placeholder-orange-900:focus::-webkit-input-placeholder {
+ color: #7b341e;
+}
+
+.focus\:placeholder-orange-900:focus::-moz-placeholder {
+ color: #7b341e;
+}
+
+.focus\:placeholder-orange-900:focus:-ms-input-placeholder {
+ color: #7b341e;
+}
+
+.focus\:placeholder-orange-900:focus::-ms-input-placeholder {
+ color: #7b341e;
+}
+
+.focus\:placeholder-orange-900:focus::placeholder {
+ color: #7b341e;
+}
+
+.focus\:placeholder-yellow-100:focus::-webkit-input-placeholder {
+ color: #fffff0;
+}
+
+.focus\:placeholder-yellow-100:focus::-moz-placeholder {
+ color: #fffff0;
+}
+
+.focus\:placeholder-yellow-100:focus:-ms-input-placeholder {
+ color: #fffff0;
+}
+
+.focus\:placeholder-yellow-100:focus::-ms-input-placeholder {
+ color: #fffff0;
+}
+
+.focus\:placeholder-yellow-100:focus::placeholder {
+ color: #fffff0;
+}
+
+.focus\:placeholder-yellow-200:focus::-webkit-input-placeholder {
+ color: #fefcbf;
+}
+
+.focus\:placeholder-yellow-200:focus::-moz-placeholder {
+ color: #fefcbf;
+}
+
+.focus\:placeholder-yellow-200:focus:-ms-input-placeholder {
+ color: #fefcbf;
+}
+
+.focus\:placeholder-yellow-200:focus::-ms-input-placeholder {
+ color: #fefcbf;
+}
+
+.focus\:placeholder-yellow-200:focus::placeholder {
+ color: #fefcbf;
+}
+
+.focus\:placeholder-yellow-300:focus::-webkit-input-placeholder {
+ color: #faf089;
+}
+
+.focus\:placeholder-yellow-300:focus::-moz-placeholder {
+ color: #faf089;
+}
+
+.focus\:placeholder-yellow-300:focus:-ms-input-placeholder {
+ color: #faf089;
+}
+
+.focus\:placeholder-yellow-300:focus::-ms-input-placeholder {
+ color: #faf089;
+}
+
+.focus\:placeholder-yellow-300:focus::placeholder {
+ color: #faf089;
+}
+
+.focus\:placeholder-yellow-400:focus::-webkit-input-placeholder {
+ color: #f6e05e;
+}
+
+.focus\:placeholder-yellow-400:focus::-moz-placeholder {
+ color: #f6e05e;
+}
+
+.focus\:placeholder-yellow-400:focus:-ms-input-placeholder {
+ color: #f6e05e;
+}
+
+.focus\:placeholder-yellow-400:focus::-ms-input-placeholder {
+ color: #f6e05e;
+}
+
+.focus\:placeholder-yellow-400:focus::placeholder {
+ color: #f6e05e;
+}
+
+.focus\:placeholder-yellow-500:focus::-webkit-input-placeholder {
+ color: #ecc94b;
+}
+
+.focus\:placeholder-yellow-500:focus::-moz-placeholder {
+ color: #ecc94b;
+}
+
+.focus\:placeholder-yellow-500:focus:-ms-input-placeholder {
+ color: #ecc94b;
+}
+
+.focus\:placeholder-yellow-500:focus::-ms-input-placeholder {
+ color: #ecc94b;
+}
+
+.focus\:placeholder-yellow-500:focus::placeholder {
+ color: #ecc94b;
+}
+
+.focus\:placeholder-yellow-600:focus::-webkit-input-placeholder {
+ color: #d69e2e;
+}
+
+.focus\:placeholder-yellow-600:focus::-moz-placeholder {
+ color: #d69e2e;
+}
+
+.focus\:placeholder-yellow-600:focus:-ms-input-placeholder {
+ color: #d69e2e;
+}
+
+.focus\:placeholder-yellow-600:focus::-ms-input-placeholder {
+ color: #d69e2e;
+}
+
+.focus\:placeholder-yellow-600:focus::placeholder {
+ color: #d69e2e;
+}
+
+.focus\:placeholder-yellow-700:focus::-webkit-input-placeholder {
+ color: #b7791f;
+}
+
+.focus\:placeholder-yellow-700:focus::-moz-placeholder {
+ color: #b7791f;
+}
+
+.focus\:placeholder-yellow-700:focus:-ms-input-placeholder {
+ color: #b7791f;
+}
+
+.focus\:placeholder-yellow-700:focus::-ms-input-placeholder {
+ color: #b7791f;
+}
+
+.focus\:placeholder-yellow-700:focus::placeholder {
+ color: #b7791f;
+}
+
+.focus\:placeholder-yellow-800:focus::-webkit-input-placeholder {
+ color: #975a16;
+}
+
+.focus\:placeholder-yellow-800:focus::-moz-placeholder {
+ color: #975a16;
+}
+
+.focus\:placeholder-yellow-800:focus:-ms-input-placeholder {
+ color: #975a16;
+}
+
+.focus\:placeholder-yellow-800:focus::-ms-input-placeholder {
+ color: #975a16;
+}
+
+.focus\:placeholder-yellow-800:focus::placeholder {
+ color: #975a16;
+}
+
+.focus\:placeholder-yellow-900:focus::-webkit-input-placeholder {
+ color: #744210;
+}
+
+.focus\:placeholder-yellow-900:focus::-moz-placeholder {
+ color: #744210;
+}
+
+.focus\:placeholder-yellow-900:focus:-ms-input-placeholder {
+ color: #744210;
+}
+
+.focus\:placeholder-yellow-900:focus::-ms-input-placeholder {
+ color: #744210;
+}
+
+.focus\:placeholder-yellow-900:focus::placeholder {
+ color: #744210;
+}
+
+.focus\:placeholder-green-100:focus::-webkit-input-placeholder {
+ color: #f0fff4;
+}
+
+.focus\:placeholder-green-100:focus::-moz-placeholder {
+ color: #f0fff4;
+}
+
+.focus\:placeholder-green-100:focus:-ms-input-placeholder {
+ color: #f0fff4;
+}
+
+.focus\:placeholder-green-100:focus::-ms-input-placeholder {
+ color: #f0fff4;
+}
+
+.focus\:placeholder-green-100:focus::placeholder {
+ color: #f0fff4;
+}
+
+.focus\:placeholder-green-200:focus::-webkit-input-placeholder {
+ color: #c6f6d5;
+}
+
+.focus\:placeholder-green-200:focus::-moz-placeholder {
+ color: #c6f6d5;
+}
+
+.focus\:placeholder-green-200:focus:-ms-input-placeholder {
+ color: #c6f6d5;
+}
+
+.focus\:placeholder-green-200:focus::-ms-input-placeholder {
+ color: #c6f6d5;
+}
+
+.focus\:placeholder-green-200:focus::placeholder {
+ color: #c6f6d5;
+}
+
+.focus\:placeholder-green-300:focus::-webkit-input-placeholder {
+ color: #9ae6b4;
+}
+
+.focus\:placeholder-green-300:focus::-moz-placeholder {
+ color: #9ae6b4;
+}
+
+.focus\:placeholder-green-300:focus:-ms-input-placeholder {
+ color: #9ae6b4;
+}
+
+.focus\:placeholder-green-300:focus::-ms-input-placeholder {
+ color: #9ae6b4;
+}
+
+.focus\:placeholder-green-300:focus::placeholder {
+ color: #9ae6b4;
+}
+
+.focus\:placeholder-green-400:focus::-webkit-input-placeholder {
+ color: #68d391;
+}
+
+.focus\:placeholder-green-400:focus::-moz-placeholder {
+ color: #68d391;
+}
+
+.focus\:placeholder-green-400:focus:-ms-input-placeholder {
+ color: #68d391;
+}
+
+.focus\:placeholder-green-400:focus::-ms-input-placeholder {
+ color: #68d391;
+}
+
+.focus\:placeholder-green-400:focus::placeholder {
+ color: #68d391;
+}
+
+.focus\:placeholder-green-500:focus::-webkit-input-placeholder {
+ color: #48bb78;
+}
+
+.focus\:placeholder-green-500:focus::-moz-placeholder {
+ color: #48bb78;
+}
+
+.focus\:placeholder-green-500:focus:-ms-input-placeholder {
+ color: #48bb78;
+}
+
+.focus\:placeholder-green-500:focus::-ms-input-placeholder {
+ color: #48bb78;
+}
+
+.focus\:placeholder-green-500:focus::placeholder {
+ color: #48bb78;
+}
+
+.focus\:placeholder-green-600:focus::-webkit-input-placeholder {
+ color: #38a169;
+}
+
+.focus\:placeholder-green-600:focus::-moz-placeholder {
+ color: #38a169;
+}
+
+.focus\:placeholder-green-600:focus:-ms-input-placeholder {
+ color: #38a169;
+}
+
+.focus\:placeholder-green-600:focus::-ms-input-placeholder {
+ color: #38a169;
+}
+
+.focus\:placeholder-green-600:focus::placeholder {
+ color: #38a169;
+}
+
+.focus\:placeholder-green-700:focus::-webkit-input-placeholder {
+ color: #2f855a;
+}
+
+.focus\:placeholder-green-700:focus::-moz-placeholder {
+ color: #2f855a;
+}
+
+.focus\:placeholder-green-700:focus:-ms-input-placeholder {
+ color: #2f855a;
+}
+
+.focus\:placeholder-green-700:focus::-ms-input-placeholder {
+ color: #2f855a;
+}
+
+.focus\:placeholder-green-700:focus::placeholder {
+ color: #2f855a;
+}
+
+.focus\:placeholder-green-800:focus::-webkit-input-placeholder {
+ color: #276749;
+}
+
+.focus\:placeholder-green-800:focus::-moz-placeholder {
+ color: #276749;
+}
+
+.focus\:placeholder-green-800:focus:-ms-input-placeholder {
+ color: #276749;
+}
+
+.focus\:placeholder-green-800:focus::-ms-input-placeholder {
+ color: #276749;
+}
+
+.focus\:placeholder-green-800:focus::placeholder {
+ color: #276749;
+}
+
+.focus\:placeholder-green-900:focus::-webkit-input-placeholder {
+ color: #22543d;
+}
+
+.focus\:placeholder-green-900:focus::-moz-placeholder {
+ color: #22543d;
+}
+
+.focus\:placeholder-green-900:focus:-ms-input-placeholder {
+ color: #22543d;
+}
+
+.focus\:placeholder-green-900:focus::-ms-input-placeholder {
+ color: #22543d;
+}
+
+.focus\:placeholder-green-900:focus::placeholder {
+ color: #22543d;
+}
+
+.focus\:placeholder-teal-100:focus::-webkit-input-placeholder {
+ color: #e6fffa;
+}
+
+.focus\:placeholder-teal-100:focus::-moz-placeholder {
+ color: #e6fffa;
+}
+
+.focus\:placeholder-teal-100:focus:-ms-input-placeholder {
+ color: #e6fffa;
+}
+
+.focus\:placeholder-teal-100:focus::-ms-input-placeholder {
+ color: #e6fffa;
+}
+
+.focus\:placeholder-teal-100:focus::placeholder {
+ color: #e6fffa;
+}
+
+.focus\:placeholder-teal-200:focus::-webkit-input-placeholder {
+ color: #b2f5ea;
+}
+
+.focus\:placeholder-teal-200:focus::-moz-placeholder {
+ color: #b2f5ea;
+}
+
+.focus\:placeholder-teal-200:focus:-ms-input-placeholder {
+ color: #b2f5ea;
+}
+
+.focus\:placeholder-teal-200:focus::-ms-input-placeholder {
+ color: #b2f5ea;
+}
+
+.focus\:placeholder-teal-200:focus::placeholder {
+ color: #b2f5ea;
+}
+
+.focus\:placeholder-teal-300:focus::-webkit-input-placeholder {
+ color: #81e6d9;
+}
+
+.focus\:placeholder-teal-300:focus::-moz-placeholder {
+ color: #81e6d9;
+}
+
+.focus\:placeholder-teal-300:focus:-ms-input-placeholder {
+ color: #81e6d9;
+}
+
+.focus\:placeholder-teal-300:focus::-ms-input-placeholder {
+ color: #81e6d9;
+}
+
+.focus\:placeholder-teal-300:focus::placeholder {
+ color: #81e6d9;
+}
+
+.focus\:placeholder-teal-400:focus::-webkit-input-placeholder {
+ color: #4fd1c5;
+}
+
+.focus\:placeholder-teal-400:focus::-moz-placeholder {
+ color: #4fd1c5;
+}
+
+.focus\:placeholder-teal-400:focus:-ms-input-placeholder {
+ color: #4fd1c5;
+}
+
+.focus\:placeholder-teal-400:focus::-ms-input-placeholder {
+ color: #4fd1c5;
+}
+
+.focus\:placeholder-teal-400:focus::placeholder {
+ color: #4fd1c5;
+}
+
+.focus\:placeholder-teal-500:focus::-webkit-input-placeholder {
+ color: #38b2ac;
+}
+
+.focus\:placeholder-teal-500:focus::-moz-placeholder {
+ color: #38b2ac;
+}
+
+.focus\:placeholder-teal-500:focus:-ms-input-placeholder {
+ color: #38b2ac;
+}
+
+.focus\:placeholder-teal-500:focus::-ms-input-placeholder {
+ color: #38b2ac;
+}
+
+.focus\:placeholder-teal-500:focus::placeholder {
+ color: #38b2ac;
+}
+
+.focus\:placeholder-teal-600:focus::-webkit-input-placeholder {
+ color: #319795;
+}
+
+.focus\:placeholder-teal-600:focus::-moz-placeholder {
+ color: #319795;
+}
+
+.focus\:placeholder-teal-600:focus:-ms-input-placeholder {
+ color: #319795;
+}
+
+.focus\:placeholder-teal-600:focus::-ms-input-placeholder {
+ color: #319795;
+}
+
+.focus\:placeholder-teal-600:focus::placeholder {
+ color: #319795;
+}
+
+.focus\:placeholder-teal-700:focus::-webkit-input-placeholder {
+ color: #2c7a7b;
+}
+
+.focus\:placeholder-teal-700:focus::-moz-placeholder {
+ color: #2c7a7b;
+}
+
+.focus\:placeholder-teal-700:focus:-ms-input-placeholder {
+ color: #2c7a7b;
+}
+
+.focus\:placeholder-teal-700:focus::-ms-input-placeholder {
+ color: #2c7a7b;
+}
+
+.focus\:placeholder-teal-700:focus::placeholder {
+ color: #2c7a7b;
+}
+
+.focus\:placeholder-teal-800:focus::-webkit-input-placeholder {
+ color: #285e61;
+}
+
+.focus\:placeholder-teal-800:focus::-moz-placeholder {
+ color: #285e61;
+}
+
+.focus\:placeholder-teal-800:focus:-ms-input-placeholder {
+ color: #285e61;
+}
+
+.focus\:placeholder-teal-800:focus::-ms-input-placeholder {
+ color: #285e61;
+}
+
+.focus\:placeholder-teal-800:focus::placeholder {
+ color: #285e61;
+}
+
+.focus\:placeholder-teal-900:focus::-webkit-input-placeholder {
+ color: #234e52;
+}
+
+.focus\:placeholder-teal-900:focus::-moz-placeholder {
+ color: #234e52;
+}
+
+.focus\:placeholder-teal-900:focus:-ms-input-placeholder {
+ color: #234e52;
+}
+
+.focus\:placeholder-teal-900:focus::-ms-input-placeholder {
+ color: #234e52;
+}
+
+.focus\:placeholder-teal-900:focus::placeholder {
+ color: #234e52;
+}
+
+.focus\:placeholder-blue-100:focus::-webkit-input-placeholder {
+ color: #ebf8ff;
+}
+
+.focus\:placeholder-blue-100:focus::-moz-placeholder {
+ color: #ebf8ff;
+}
+
+.focus\:placeholder-blue-100:focus:-ms-input-placeholder {
+ color: #ebf8ff;
+}
+
+.focus\:placeholder-blue-100:focus::-ms-input-placeholder {
+ color: #ebf8ff;
+}
+
+.focus\:placeholder-blue-100:focus::placeholder {
+ color: #ebf8ff;
+}
+
+.focus\:placeholder-blue-200:focus::-webkit-input-placeholder {
+ color: #bee3f8;
+}
+
+.focus\:placeholder-blue-200:focus::-moz-placeholder {
+ color: #bee3f8;
+}
+
+.focus\:placeholder-blue-200:focus:-ms-input-placeholder {
+ color: #bee3f8;
+}
+
+.focus\:placeholder-blue-200:focus::-ms-input-placeholder {
+ color: #bee3f8;
+}
+
+.focus\:placeholder-blue-200:focus::placeholder {
+ color: #bee3f8;
+}
+
+.focus\:placeholder-blue-300:focus::-webkit-input-placeholder {
+ color: #90cdf4;
+}
+
+.focus\:placeholder-blue-300:focus::-moz-placeholder {
+ color: #90cdf4;
+}
+
+.focus\:placeholder-blue-300:focus:-ms-input-placeholder {
+ color: #90cdf4;
+}
+
+.focus\:placeholder-blue-300:focus::-ms-input-placeholder {
+ color: #90cdf4;
+}
+
+.focus\:placeholder-blue-300:focus::placeholder {
+ color: #90cdf4;
+}
+
+.focus\:placeholder-blue-400:focus::-webkit-input-placeholder {
+ color: #63b3ed;
+}
+
+.focus\:placeholder-blue-400:focus::-moz-placeholder {
+ color: #63b3ed;
+}
+
+.focus\:placeholder-blue-400:focus:-ms-input-placeholder {
+ color: #63b3ed;
+}
+
+.focus\:placeholder-blue-400:focus::-ms-input-placeholder {
+ color: #63b3ed;
+}
+
+.focus\:placeholder-blue-400:focus::placeholder {
+ color: #63b3ed;
+}
+
+.focus\:placeholder-blue-500:focus::-webkit-input-placeholder {
+ color: #4299e1;
+}
+
+.focus\:placeholder-blue-500:focus::-moz-placeholder {
+ color: #4299e1;
+}
+
+.focus\:placeholder-blue-500:focus:-ms-input-placeholder {
+ color: #4299e1;
+}
+
+.focus\:placeholder-blue-500:focus::-ms-input-placeholder {
+ color: #4299e1;
+}
+
+.focus\:placeholder-blue-500:focus::placeholder {
+ color: #4299e1;
+}
+
+.focus\:placeholder-blue-600:focus::-webkit-input-placeholder {
+ color: #3182ce;
+}
+
+.focus\:placeholder-blue-600:focus::-moz-placeholder {
+ color: #3182ce;
+}
+
+.focus\:placeholder-blue-600:focus:-ms-input-placeholder {
+ color: #3182ce;
+}
+
+.focus\:placeholder-blue-600:focus::-ms-input-placeholder {
+ color: #3182ce;
+}
+
+.focus\:placeholder-blue-600:focus::placeholder {
+ color: #3182ce;
+}
+
+.focus\:placeholder-blue-700:focus::-webkit-input-placeholder {
+ color: #2b6cb0;
+}
+
+.focus\:placeholder-blue-700:focus::-moz-placeholder {
+ color: #2b6cb0;
+}
+
+.focus\:placeholder-blue-700:focus:-ms-input-placeholder {
+ color: #2b6cb0;
+}
+
+.focus\:placeholder-blue-700:focus::-ms-input-placeholder {
+ color: #2b6cb0;
+}
+
+.focus\:placeholder-blue-700:focus::placeholder {
+ color: #2b6cb0;
+}
+
+.focus\:placeholder-blue-800:focus::-webkit-input-placeholder {
+ color: #2c5282;
+}
+
+.focus\:placeholder-blue-800:focus::-moz-placeholder {
+ color: #2c5282;
+}
+
+.focus\:placeholder-blue-800:focus:-ms-input-placeholder {
+ color: #2c5282;
+}
+
+.focus\:placeholder-blue-800:focus::-ms-input-placeholder {
+ color: #2c5282;
+}
+
+.focus\:placeholder-blue-800:focus::placeholder {
+ color: #2c5282;
+}
+
+.focus\:placeholder-blue-900:focus::-webkit-input-placeholder {
+ color: #2a4365;
+}
+
+.focus\:placeholder-blue-900:focus::-moz-placeholder {
+ color: #2a4365;
+}
+
+.focus\:placeholder-blue-900:focus:-ms-input-placeholder {
+ color: #2a4365;
+}
+
+.focus\:placeholder-blue-900:focus::-ms-input-placeholder {
+ color: #2a4365;
+}
+
+.focus\:placeholder-blue-900:focus::placeholder {
+ color: #2a4365;
+}
+
+.focus\:placeholder-indigo-100:focus::-webkit-input-placeholder {
+ color: #ebf4ff;
+}
+
+.focus\:placeholder-indigo-100:focus::-moz-placeholder {
+ color: #ebf4ff;
+}
+
+.focus\:placeholder-indigo-100:focus:-ms-input-placeholder {
+ color: #ebf4ff;
+}
+
+.focus\:placeholder-indigo-100:focus::-ms-input-placeholder {
+ color: #ebf4ff;
+}
+
+.focus\:placeholder-indigo-100:focus::placeholder {
+ color: #ebf4ff;
+}
+
+.focus\:placeholder-indigo-200:focus::-webkit-input-placeholder {
+ color: #c3dafe;
+}
+
+.focus\:placeholder-indigo-200:focus::-moz-placeholder {
+ color: #c3dafe;
+}
+
+.focus\:placeholder-indigo-200:focus:-ms-input-placeholder {
+ color: #c3dafe;
+}
+
+.focus\:placeholder-indigo-200:focus::-ms-input-placeholder {
+ color: #c3dafe;
+}
+
+.focus\:placeholder-indigo-200:focus::placeholder {
+ color: #c3dafe;
+}
+
+.focus\:placeholder-indigo-300:focus::-webkit-input-placeholder {
+ color: #a3bffa;
+}
+
+.focus\:placeholder-indigo-300:focus::-moz-placeholder {
+ color: #a3bffa;
+}
+
+.focus\:placeholder-indigo-300:focus:-ms-input-placeholder {
+ color: #a3bffa;
+}
+
+.focus\:placeholder-indigo-300:focus::-ms-input-placeholder {
+ color: #a3bffa;
+}
+
+.focus\:placeholder-indigo-300:focus::placeholder {
+ color: #a3bffa;
+}
+
+.focus\:placeholder-indigo-400:focus::-webkit-input-placeholder {
+ color: #7f9cf5;
+}
+
+.focus\:placeholder-indigo-400:focus::-moz-placeholder {
+ color: #7f9cf5;
+}
+
+.focus\:placeholder-indigo-400:focus:-ms-input-placeholder {
+ color: #7f9cf5;
+}
+
+.focus\:placeholder-indigo-400:focus::-ms-input-placeholder {
+ color: #7f9cf5;
+}
+
+.focus\:placeholder-indigo-400:focus::placeholder {
+ color: #7f9cf5;
+}
+
+.focus\:placeholder-indigo-500:focus::-webkit-input-placeholder {
+ color: #667eea;
+}
+
+.focus\:placeholder-indigo-500:focus::-moz-placeholder {
+ color: #667eea;
+}
+
+.focus\:placeholder-indigo-500:focus:-ms-input-placeholder {
+ color: #667eea;
+}
+
+.focus\:placeholder-indigo-500:focus::-ms-input-placeholder {
+ color: #667eea;
+}
+
+.focus\:placeholder-indigo-500:focus::placeholder {
+ color: #667eea;
+}
+
+.focus\:placeholder-indigo-600:focus::-webkit-input-placeholder {
+ color: #5a67d8;
+}
+
+.focus\:placeholder-indigo-600:focus::-moz-placeholder {
+ color: #5a67d8;
+}
+
+.focus\:placeholder-indigo-600:focus:-ms-input-placeholder {
+ color: #5a67d8;
+}
+
+.focus\:placeholder-indigo-600:focus::-ms-input-placeholder {
+ color: #5a67d8;
+}
+
+.focus\:placeholder-indigo-600:focus::placeholder {
+ color: #5a67d8;
+}
+
+.focus\:placeholder-indigo-700:focus::-webkit-input-placeholder {
+ color: #4c51bf;
+}
+
+.focus\:placeholder-indigo-700:focus::-moz-placeholder {
+ color: #4c51bf;
+}
+
+.focus\:placeholder-indigo-700:focus:-ms-input-placeholder {
+ color: #4c51bf;
+}
+
+.focus\:placeholder-indigo-700:focus::-ms-input-placeholder {
+ color: #4c51bf;
+}
+
+.focus\:placeholder-indigo-700:focus::placeholder {
+ color: #4c51bf;
+}
+
+.focus\:placeholder-indigo-800:focus::-webkit-input-placeholder {
+ color: #434190;
+}
+
+.focus\:placeholder-indigo-800:focus::-moz-placeholder {
+ color: #434190;
+}
+
+.focus\:placeholder-indigo-800:focus:-ms-input-placeholder {
+ color: #434190;
+}
+
+.focus\:placeholder-indigo-800:focus::-ms-input-placeholder {
+ color: #434190;
+}
+
+.focus\:placeholder-indigo-800:focus::placeholder {
+ color: #434190;
+}
+
+.focus\:placeholder-indigo-900:focus::-webkit-input-placeholder {
+ color: #3c366b;
+}
+
+.focus\:placeholder-indigo-900:focus::-moz-placeholder {
+ color: #3c366b;
+}
+
+.focus\:placeholder-indigo-900:focus:-ms-input-placeholder {
+ color: #3c366b;
+}
+
+.focus\:placeholder-indigo-900:focus::-ms-input-placeholder {
+ color: #3c366b;
+}
+
+.focus\:placeholder-indigo-900:focus::placeholder {
+ color: #3c366b;
+}
+
+.focus\:placeholder-purple-100:focus::-webkit-input-placeholder {
+ color: #faf5ff;
+}
+
+.focus\:placeholder-purple-100:focus::-moz-placeholder {
+ color: #faf5ff;
+}
+
+.focus\:placeholder-purple-100:focus:-ms-input-placeholder {
+ color: #faf5ff;
+}
+
+.focus\:placeholder-purple-100:focus::-ms-input-placeholder {
+ color: #faf5ff;
+}
+
+.focus\:placeholder-purple-100:focus::placeholder {
+ color: #faf5ff;
+}
+
+.focus\:placeholder-purple-200:focus::-webkit-input-placeholder {
+ color: #e9d8fd;
+}
+
+.focus\:placeholder-purple-200:focus::-moz-placeholder {
+ color: #e9d8fd;
+}
+
+.focus\:placeholder-purple-200:focus:-ms-input-placeholder {
+ color: #e9d8fd;
+}
+
+.focus\:placeholder-purple-200:focus::-ms-input-placeholder {
+ color: #e9d8fd;
+}
+
+.focus\:placeholder-purple-200:focus::placeholder {
+ color: #e9d8fd;
+}
+
+.focus\:placeholder-purple-300:focus::-webkit-input-placeholder {
+ color: #d6bcfa;
+}
+
+.focus\:placeholder-purple-300:focus::-moz-placeholder {
+ color: #d6bcfa;
+}
+
+.focus\:placeholder-purple-300:focus:-ms-input-placeholder {
+ color: #d6bcfa;
+}
+
+.focus\:placeholder-purple-300:focus::-ms-input-placeholder {
+ color: #d6bcfa;
+}
+
+.focus\:placeholder-purple-300:focus::placeholder {
+ color: #d6bcfa;
+}
+
+.focus\:placeholder-purple-400:focus::-webkit-input-placeholder {
+ color: #b794f4;
+}
+
+.focus\:placeholder-purple-400:focus::-moz-placeholder {
+ color: #b794f4;
+}
+
+.focus\:placeholder-purple-400:focus:-ms-input-placeholder {
+ color: #b794f4;
+}
+
+.focus\:placeholder-purple-400:focus::-ms-input-placeholder {
+ color: #b794f4;
+}
+
+.focus\:placeholder-purple-400:focus::placeholder {
+ color: #b794f4;
+}
+
+.focus\:placeholder-purple-500:focus::-webkit-input-placeholder {
+ color: #9f7aea;
+}
+
+.focus\:placeholder-purple-500:focus::-moz-placeholder {
+ color: #9f7aea;
+}
+
+.focus\:placeholder-purple-500:focus:-ms-input-placeholder {
+ color: #9f7aea;
+}
+
+.focus\:placeholder-purple-500:focus::-ms-input-placeholder {
+ color: #9f7aea;
+}
+
+.focus\:placeholder-purple-500:focus::placeholder {
+ color: #9f7aea;
+}
+
+.focus\:placeholder-purple-600:focus::-webkit-input-placeholder {
+ color: #805ad5;
+}
+
+.focus\:placeholder-purple-600:focus::-moz-placeholder {
+ color: #805ad5;
+}
+
+.focus\:placeholder-purple-600:focus:-ms-input-placeholder {
+ color: #805ad5;
+}
+
+.focus\:placeholder-purple-600:focus::-ms-input-placeholder {
+ color: #805ad5;
+}
+
+.focus\:placeholder-purple-600:focus::placeholder {
+ color: #805ad5;
+}
+
+.focus\:placeholder-purple-700:focus::-webkit-input-placeholder {
+ color: #6b46c1;
+}
+
+.focus\:placeholder-purple-700:focus::-moz-placeholder {
+ color: #6b46c1;
+}
+
+.focus\:placeholder-purple-700:focus:-ms-input-placeholder {
+ color: #6b46c1;
+}
+
+.focus\:placeholder-purple-700:focus::-ms-input-placeholder {
+ color: #6b46c1;
+}
+
+.focus\:placeholder-purple-700:focus::placeholder {
+ color: #6b46c1;
+}
+
+.focus\:placeholder-purple-800:focus::-webkit-input-placeholder {
+ color: #553c9a;
+}
+
+.focus\:placeholder-purple-800:focus::-moz-placeholder {
+ color: #553c9a;
+}
+
+.focus\:placeholder-purple-800:focus:-ms-input-placeholder {
+ color: #553c9a;
+}
+
+.focus\:placeholder-purple-800:focus::-ms-input-placeholder {
+ color: #553c9a;
+}
+
+.focus\:placeholder-purple-800:focus::placeholder {
+ color: #553c9a;
+}
+
+.focus\:placeholder-purple-900:focus::-webkit-input-placeholder {
+ color: #44337a;
+}
+
+.focus\:placeholder-purple-900:focus::-moz-placeholder {
+ color: #44337a;
+}
+
+.focus\:placeholder-purple-900:focus:-ms-input-placeholder {
+ color: #44337a;
+}
+
+.focus\:placeholder-purple-900:focus::-ms-input-placeholder {
+ color: #44337a;
+}
+
+.focus\:placeholder-purple-900:focus::placeholder {
+ color: #44337a;
+}
+
+.focus\:placeholder-pink-100:focus::-webkit-input-placeholder {
+ color: #fff5f7;
+}
+
+.focus\:placeholder-pink-100:focus::-moz-placeholder {
+ color: #fff5f7;
+}
+
+.focus\:placeholder-pink-100:focus:-ms-input-placeholder {
+ color: #fff5f7;
+}
+
+.focus\:placeholder-pink-100:focus::-ms-input-placeholder {
+ color: #fff5f7;
+}
+
+.focus\:placeholder-pink-100:focus::placeholder {
+ color: #fff5f7;
+}
+
+.focus\:placeholder-pink-200:focus::-webkit-input-placeholder {
+ color: #fed7e2;
+}
+
+.focus\:placeholder-pink-200:focus::-moz-placeholder {
+ color: #fed7e2;
+}
+
+.focus\:placeholder-pink-200:focus:-ms-input-placeholder {
+ color: #fed7e2;
+}
+
+.focus\:placeholder-pink-200:focus::-ms-input-placeholder {
+ color: #fed7e2;
+}
+
+.focus\:placeholder-pink-200:focus::placeholder {
+ color: #fed7e2;
+}
+
+.focus\:placeholder-pink-300:focus::-webkit-input-placeholder {
+ color: #fbb6ce;
+}
+
+.focus\:placeholder-pink-300:focus::-moz-placeholder {
+ color: #fbb6ce;
+}
+
+.focus\:placeholder-pink-300:focus:-ms-input-placeholder {
+ color: #fbb6ce;
+}
+
+.focus\:placeholder-pink-300:focus::-ms-input-placeholder {
+ color: #fbb6ce;
+}
+
+.focus\:placeholder-pink-300:focus::placeholder {
+ color: #fbb6ce;
+}
+
+.focus\:placeholder-pink-400:focus::-webkit-input-placeholder {
+ color: #f687b3;
+}
+
+.focus\:placeholder-pink-400:focus::-moz-placeholder {
+ color: #f687b3;
+}
+
+.focus\:placeholder-pink-400:focus:-ms-input-placeholder {
+ color: #f687b3;
+}
+
+.focus\:placeholder-pink-400:focus::-ms-input-placeholder {
+ color: #f687b3;
+}
+
+.focus\:placeholder-pink-400:focus::placeholder {
+ color: #f687b3;
+}
+
+.focus\:placeholder-pink-500:focus::-webkit-input-placeholder {
+ color: #ed64a6;
+}
+
+.focus\:placeholder-pink-500:focus::-moz-placeholder {
+ color: #ed64a6;
+}
+
+.focus\:placeholder-pink-500:focus:-ms-input-placeholder {
+ color: #ed64a6;
+}
+
+.focus\:placeholder-pink-500:focus::-ms-input-placeholder {
+ color: #ed64a6;
+}
+
+.focus\:placeholder-pink-500:focus::placeholder {
+ color: #ed64a6;
+}
+
+.focus\:placeholder-pink-600:focus::-webkit-input-placeholder {
+ color: #d53f8c;
+}
+
+.focus\:placeholder-pink-600:focus::-moz-placeholder {
+ color: #d53f8c;
+}
+
+.focus\:placeholder-pink-600:focus:-ms-input-placeholder {
+ color: #d53f8c;
+}
+
+.focus\:placeholder-pink-600:focus::-ms-input-placeholder {
+ color: #d53f8c;
+}
+
+.focus\:placeholder-pink-600:focus::placeholder {
+ color: #d53f8c;
+}
+
+.focus\:placeholder-pink-700:focus::-webkit-input-placeholder {
+ color: #b83280;
+}
+
+.focus\:placeholder-pink-700:focus::-moz-placeholder {
+ color: #b83280;
+}
+
+.focus\:placeholder-pink-700:focus:-ms-input-placeholder {
+ color: #b83280;
+}
+
+.focus\:placeholder-pink-700:focus::-ms-input-placeholder {
+ color: #b83280;
+}
+
+.focus\:placeholder-pink-700:focus::placeholder {
+ color: #b83280;
+}
+
+.focus\:placeholder-pink-800:focus::-webkit-input-placeholder {
+ color: #97266d;
+}
+
+.focus\:placeholder-pink-800:focus::-moz-placeholder {
+ color: #97266d;
+}
+
+.focus\:placeholder-pink-800:focus:-ms-input-placeholder {
+ color: #97266d;
+}
+
+.focus\:placeholder-pink-800:focus::-ms-input-placeholder {
+ color: #97266d;
+}
+
+.focus\:placeholder-pink-800:focus::placeholder {
+ color: #97266d;
+}
+
+.focus\:placeholder-pink-900:focus::-webkit-input-placeholder {
+ color: #702459;
+}
+
+.focus\:placeholder-pink-900:focus::-moz-placeholder {
+ color: #702459;
+}
+
+.focus\:placeholder-pink-900:focus:-ms-input-placeholder {
+ color: #702459;
+}
+
+.focus\:placeholder-pink-900:focus::-ms-input-placeholder {
+ color: #702459;
+}
+
+.focus\:placeholder-pink-900:focus::placeholder {
+ color: #702459;
+}
+
+.pointer-events-none {
+ pointer-events: none;
+}
+
+.pointer-events-auto {
+ pointer-events: auto;
+}
+
+.static {
+ position: static;
+}
+
+.fixed {
+ position: fixed;
+}
+
+.absolute {
+ position: absolute;
+}
+
+.relative {
+ position: relative;
+}
+
+.sticky {
+ position: -webkit-sticky;
+ position: sticky;
+}
+
+.inset-0 {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+.inset-auto {
+ top: auto;
+ right: auto;
+ bottom: auto;
+ left: auto;
+}
+
+.inset-y-0 {
+ top: 0;
+ bottom: 0;
+}
+
+.inset-x-0 {
+ right: 0;
+ left: 0;
+}
+
+.inset-y-auto {
+ top: auto;
+ bottom: auto;
+}
+
+.inset-x-auto {
+ right: auto;
+ left: auto;
+}
+
+.top-0 {
+ top: 0;
+}
+
+.right-0 {
+ right: 0;
+}
+
+.bottom-0 {
+ bottom: 0;
+}
+
+.left-0 {
+ left: 0;
+}
+
+.top-auto {
+ top: auto;
+}
+
+.right-auto {
+ right: auto;
+}
+
+.bottom-auto {
+ bottom: auto;
+}
+
+.left-auto {
+ left: auto;
+}
+
+.resize-none {
+ resize: none;
+}
+
+.resize-y {
+ resize: vertical;
+}
+
+.resize-x {
+ resize: horizontal;
+}
+
+.resize {
+ resize: both;
+}
+
+.shadow {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+}
+
+.shadow-md {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+}
+
+.shadow-lg {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+}
+
+.shadow-xl {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+}
+
+.shadow-2xl {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+}
+
+.shadow-inner {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+}
+
+.shadow-outline {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+}
+
+.shadow-none {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.hover\:shadow:hover {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+}
+
+.hover\:shadow-md:hover {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+}
+
+.hover\:shadow-lg:hover {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+}
+
+.hover\:shadow-xl:hover {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+}
+
+.hover\:shadow-2xl:hover {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+}
+
+.hover\:shadow-inner:hover {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+}
+
+.hover\:shadow-outline:hover {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+}
+
+.hover\:shadow-none:hover {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.focus\:shadow:focus {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+}
+
+.focus\:shadow-md:focus {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+}
+
+.focus\:shadow-lg:focus {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+}
+
+.focus\:shadow-xl:focus {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+}
+
+.focus\:shadow-2xl:focus {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+}
+
+.focus\:shadow-inner:focus {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+}
+
+.focus\:shadow-outline:focus {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+}
+
+.focus\:shadow-none:focus {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.fill-current {
+ fill: currentColor;
+}
+
+.stroke-current {
+ stroke: currentColor;
+}
+
+.table-auto {
+ table-layout: auto;
+}
+
+.table-fixed {
+ table-layout: fixed;
+}
+
+.text-left {
+ text-align: left;
+}
+
+.text-center {
+ text-align: center;
+}
+
+.text-right {
+ text-align: right;
+}
+
+.text-justify {
+ text-align: justify;
+}
+
+.text-transparent {
+ color: transparent;
+}
+
+.text-black {
+ color: #000;
+}
+
+.text-white {
+ color: #fff;
+}
+
+.text-gray-100 {
+ color: #f7fafc;
+}
+
+.text-gray-200 {
+ color: #edf2f7;
+}
+
+.text-gray-300 {
+ color: #e2e8f0;
+}
+
+.text-gray-400 {
+ color: #cbd5e0;
+}
+
+.text-gray-500 {
+ color: #a0aec0;
+}
+
+.text-gray-600 {
+ color: #718096;
+}
+
+.text-gray-700 {
+ color: #4a5568;
+}
+
+.text-gray-800 {
+ color: #2d3748;
+}
+
+.text-gray-900 {
+ color: #1a202c;
+}
+
+.text-red-100 {
+ color: #fff5f5;
+}
+
+.text-red-200 {
+ color: #fed7d7;
+}
+
+.text-red-300 {
+ color: #feb2b2;
+}
+
+.text-red-400 {
+ color: #fc8181;
+}
+
+.text-red-500 {
+ color: #f56565;
+}
+
+.text-red-600 {
+ color: #e53e3e;
+}
+
+.text-red-700 {
+ color: #c53030;
+}
+
+.text-red-800 {
+ color: #9b2c2c;
+}
+
+.text-red-900 {
+ color: #742a2a;
+}
+
+.text-orange-100 {
+ color: #fffaf0;
+}
+
+.text-orange-200 {
+ color: #feebc8;
+}
+
+.text-orange-300 {
+ color: #fbd38d;
+}
+
+.text-orange-400 {
+ color: #f6ad55;
+}
+
+.text-orange-500 {
+ color: #ed8936;
+}
+
+.text-orange-600 {
+ color: #dd6b20;
+}
+
+.text-orange-700 {
+ color: #c05621;
+}
+
+.text-orange-800 {
+ color: #9c4221;
+}
+
+.text-orange-900 {
+ color: #7b341e;
+}
+
+.text-yellow-100 {
+ color: #fffff0;
+}
+
+.text-yellow-200 {
+ color: #fefcbf;
+}
+
+.text-yellow-300 {
+ color: #faf089;
+}
+
+.text-yellow-400 {
+ color: #f6e05e;
+}
+
+.text-yellow-500 {
+ color: #ecc94b;
+}
+
+.text-yellow-600 {
+ color: #d69e2e;
+}
+
+.text-yellow-700 {
+ color: #b7791f;
+}
+
+.text-yellow-800 {
+ color: #975a16;
+}
+
+.text-yellow-900 {
+ color: #744210;
+}
+
+.text-green-100 {
+ color: #f0fff4;
+}
+
+.text-green-200 {
+ color: #c6f6d5;
+}
+
+.text-green-300 {
+ color: #9ae6b4;
+}
+
+.text-green-400 {
+ color: #68d391;
+}
+
+.text-green-500 {
+ color: #48bb78;
+}
+
+.text-green-600 {
+ color: #38a169;
+}
+
+.text-green-700 {
+ color: #2f855a;
+}
+
+.text-green-800 {
+ color: #276749;
+}
+
+.text-green-900 {
+ color: #22543d;
+}
+
+.text-teal-100 {
+ color: #e6fffa;
+}
+
+.text-teal-200 {
+ color: #b2f5ea;
+}
+
+.text-teal-300 {
+ color: #81e6d9;
+}
+
+.text-teal-400 {
+ color: #4fd1c5;
+}
+
+.text-teal-500 {
+ color: #38b2ac;
+}
+
+.text-teal-600 {
+ color: #319795;
+}
+
+.text-teal-700 {
+ color: #2c7a7b;
+}
+
+.text-teal-800 {
+ color: #285e61;
+}
+
+.text-teal-900 {
+ color: #234e52;
+}
+
+.text-blue-100 {
+ color: #ebf8ff;
+}
+
+.text-blue-200 {
+ color: #bee3f8;
+}
+
+.text-blue-300 {
+ color: #90cdf4;
+}
+
+.text-blue-400 {
+ color: #63b3ed;
+}
+
+.text-blue-500 {
+ color: #4299e1;
+}
+
+.text-blue-600 {
+ color: #3182ce;
+}
+
+.text-blue-700 {
+ color: #2b6cb0;
+}
+
+.text-blue-800 {
+ color: #2c5282;
+}
+
+.text-blue-900 {
+ color: #2a4365;
+}
+
+.text-indigo-100 {
+ color: #ebf4ff;
+}
+
+.text-indigo-200 {
+ color: #c3dafe;
+}
+
+.text-indigo-300 {
+ color: #a3bffa;
+}
+
+.text-indigo-400 {
+ color: #7f9cf5;
+}
+
+.text-indigo-500 {
+ color: #667eea;
+}
+
+.text-indigo-600 {
+ color: #5a67d8;
+}
+
+.text-indigo-700 {
+ color: #4c51bf;
+}
+
+.text-indigo-800 {
+ color: #434190;
+}
+
+.text-indigo-900 {
+ color: #3c366b;
+}
+
+.text-purple-100 {
+ color: #faf5ff;
+}
+
+.text-purple-200 {
+ color: #e9d8fd;
+}
+
+.text-purple-300 {
+ color: #d6bcfa;
+}
+
+.text-purple-400 {
+ color: #b794f4;
+}
+
+.text-purple-500 {
+ color: #9f7aea;
+}
+
+.text-purple-600 {
+ color: #805ad5;
+}
+
+.text-purple-700 {
+ color: #6b46c1;
+}
+
+.text-purple-800 {
+ color: #553c9a;
+}
+
+.text-purple-900 {
+ color: #44337a;
+}
+
+.text-pink-100 {
+ color: #fff5f7;
+}
+
+.text-pink-200 {
+ color: #fed7e2;
+}
+
+.text-pink-300 {
+ color: #fbb6ce;
+}
+
+.text-pink-400 {
+ color: #f687b3;
+}
+
+.text-pink-500 {
+ color: #ed64a6;
+}
+
+.text-pink-600 {
+ color: #d53f8c;
+}
+
+.text-pink-700 {
+ color: #b83280;
+}
+
+.text-pink-800 {
+ color: #97266d;
+}
+
+.text-pink-900 {
+ color: #702459;
+}
+
+.hover\:text-transparent:hover {
+ color: transparent;
+}
+
+.hover\:text-black:hover {
+ color: #000;
+}
+
+.hover\:text-white:hover {
+ color: #fff;
+}
+
+.hover\:text-gray-100:hover {
+ color: #f7fafc;
+}
+
+.hover\:text-gray-200:hover {
+ color: #edf2f7;
+}
+
+.hover\:text-gray-300:hover {
+ color: #e2e8f0;
+}
+
+.hover\:text-gray-400:hover {
+ color: #cbd5e0;
+}
+
+.hover\:text-gray-500:hover {
+ color: #a0aec0;
+}
+
+.hover\:text-gray-600:hover {
+ color: #718096;
+}
+
+.hover\:text-gray-700:hover {
+ color: #4a5568;
+}
+
+.hover\:text-gray-800:hover {
+ color: #2d3748;
+}
+
+.hover\:text-gray-900:hover {
+ color: #1a202c;
+}
+
+.hover\:text-red-100:hover {
+ color: #fff5f5;
+}
+
+.hover\:text-red-200:hover {
+ color: #fed7d7;
+}
+
+.hover\:text-red-300:hover {
+ color: #feb2b2;
+}
+
+.hover\:text-red-400:hover {
+ color: #fc8181;
+}
+
+.hover\:text-red-500:hover {
+ color: #f56565;
+}
+
+.hover\:text-red-600:hover {
+ color: #e53e3e;
+}
+
+.hover\:text-red-700:hover {
+ color: #c53030;
+}
+
+.hover\:text-red-800:hover {
+ color: #9b2c2c;
+}
+
+.hover\:text-red-900:hover {
+ color: #742a2a;
+}
+
+.hover\:text-orange-100:hover {
+ color: #fffaf0;
+}
+
+.hover\:text-orange-200:hover {
+ color: #feebc8;
+}
+
+.hover\:text-orange-300:hover {
+ color: #fbd38d;
+}
+
+.hover\:text-orange-400:hover {
+ color: #f6ad55;
+}
+
+.hover\:text-orange-500:hover {
+ color: #ed8936;
+}
+
+.hover\:text-orange-600:hover {
+ color: #dd6b20;
+}
+
+.hover\:text-orange-700:hover {
+ color: #c05621;
+}
+
+.hover\:text-orange-800:hover {
+ color: #9c4221;
+}
+
+.hover\:text-orange-900:hover {
+ color: #7b341e;
+}
+
+.hover\:text-yellow-100:hover {
+ color: #fffff0;
+}
+
+.hover\:text-yellow-200:hover {
+ color: #fefcbf;
+}
+
+.hover\:text-yellow-300:hover {
+ color: #faf089;
+}
+
+.hover\:text-yellow-400:hover {
+ color: #f6e05e;
+}
+
+.hover\:text-yellow-500:hover {
+ color: #ecc94b;
+}
+
+.hover\:text-yellow-600:hover {
+ color: #d69e2e;
+}
+
+.hover\:text-yellow-700:hover {
+ color: #b7791f;
+}
+
+.hover\:text-yellow-800:hover {
+ color: #975a16;
+}
+
+.hover\:text-yellow-900:hover {
+ color: #744210;
+}
+
+.hover\:text-green-100:hover {
+ color: #f0fff4;
+}
+
+.hover\:text-green-200:hover {
+ color: #c6f6d5;
+}
+
+.hover\:text-green-300:hover {
+ color: #9ae6b4;
+}
+
+.hover\:text-green-400:hover {
+ color: #68d391;
+}
+
+.hover\:text-green-500:hover {
+ color: #48bb78;
+}
+
+.hover\:text-green-600:hover {
+ color: #38a169;
+}
+
+.hover\:text-green-700:hover {
+ color: #2f855a;
+}
+
+.hover\:text-green-800:hover {
+ color: #276749;
+}
+
+.hover\:text-green-900:hover {
+ color: #22543d;
+}
+
+.hover\:text-teal-100:hover {
+ color: #e6fffa;
+}
+
+.hover\:text-teal-200:hover {
+ color: #b2f5ea;
+}
+
+.hover\:text-teal-300:hover {
+ color: #81e6d9;
+}
+
+.hover\:text-teal-400:hover {
+ color: #4fd1c5;
+}
+
+.hover\:text-teal-500:hover {
+ color: #38b2ac;
+}
+
+.hover\:text-teal-600:hover {
+ color: #319795;
+}
+
+.hover\:text-teal-700:hover {
+ color: #2c7a7b;
+}
+
+.hover\:text-teal-800:hover {
+ color: #285e61;
+}
+
+.hover\:text-teal-900:hover {
+ color: #234e52;
+}
+
+.hover\:text-blue-100:hover {
+ color: #ebf8ff;
+}
+
+.hover\:text-blue-200:hover {
+ color: #bee3f8;
+}
+
+.hover\:text-blue-300:hover {
+ color: #90cdf4;
+}
+
+.hover\:text-blue-400:hover {
+ color: #63b3ed;
+}
+
+.hover\:text-blue-500:hover {
+ color: #4299e1;
+}
+
+.hover\:text-blue-600:hover {
+ color: #3182ce;
+}
+
+.hover\:text-blue-700:hover {
+ color: #2b6cb0;
+}
+
+.hover\:text-blue-800:hover {
+ color: #2c5282;
+}
+
+.hover\:text-blue-900:hover {
+ color: #2a4365;
+}
+
+.hover\:text-indigo-100:hover {
+ color: #ebf4ff;
+}
+
+.hover\:text-indigo-200:hover {
+ color: #c3dafe;
+}
+
+.hover\:text-indigo-300:hover {
+ color: #a3bffa;
+}
+
+.hover\:text-indigo-400:hover {
+ color: #7f9cf5;
+}
+
+.hover\:text-indigo-500:hover {
+ color: #667eea;
+}
+
+.hover\:text-indigo-600:hover {
+ color: #5a67d8;
+}
+
+.hover\:text-indigo-700:hover {
+ color: #4c51bf;
+}
+
+.hover\:text-indigo-800:hover {
+ color: #434190;
+}
+
+.hover\:text-indigo-900:hover {
+ color: #3c366b;
+}
+
+.hover\:text-purple-100:hover {
+ color: #faf5ff;
+}
+
+.hover\:text-purple-200:hover {
+ color: #e9d8fd;
+}
+
+.hover\:text-purple-300:hover {
+ color: #d6bcfa;
+}
+
+.hover\:text-purple-400:hover {
+ color: #b794f4;
+}
+
+.hover\:text-purple-500:hover {
+ color: #9f7aea;
+}
+
+.hover\:text-purple-600:hover {
+ color: #805ad5;
+}
+
+.hover\:text-purple-700:hover {
+ color: #6b46c1;
+}
+
+.hover\:text-purple-800:hover {
+ color: #553c9a;
+}
+
+.hover\:text-purple-900:hover {
+ color: #44337a;
+}
+
+.hover\:text-pink-100:hover {
+ color: #fff5f7;
+}
+
+.hover\:text-pink-200:hover {
+ color: #fed7e2;
+}
+
+.hover\:text-pink-300:hover {
+ color: #fbb6ce;
+}
+
+.hover\:text-pink-400:hover {
+ color: #f687b3;
+}
+
+.hover\:text-pink-500:hover {
+ color: #ed64a6;
+}
+
+.hover\:text-pink-600:hover {
+ color: #d53f8c;
+}
+
+.hover\:text-pink-700:hover {
+ color: #b83280;
+}
+
+.hover\:text-pink-800:hover {
+ color: #97266d;
+}
+
+.hover\:text-pink-900:hover {
+ color: #702459;
+}
+
+.focus\:text-transparent:focus {
+ color: transparent;
+}
+
+.focus\:text-black:focus {
+ color: #000;
+}
+
+.focus\:text-white:focus {
+ color: #fff;
+}
+
+.focus\:text-gray-100:focus {
+ color: #f7fafc;
+}
+
+.focus\:text-gray-200:focus {
+ color: #edf2f7;
+}
+
+.focus\:text-gray-300:focus {
+ color: #e2e8f0;
+}
+
+.focus\:text-gray-400:focus {
+ color: #cbd5e0;
+}
+
+.focus\:text-gray-500:focus {
+ color: #a0aec0;
+}
+
+.focus\:text-gray-600:focus {
+ color: #718096;
+}
+
+.focus\:text-gray-700:focus {
+ color: #4a5568;
+}
+
+.focus\:text-gray-800:focus {
+ color: #2d3748;
+}
+
+.focus\:text-gray-900:focus {
+ color: #1a202c;
+}
+
+.focus\:text-red-100:focus {
+ color: #fff5f5;
+}
+
+.focus\:text-red-200:focus {
+ color: #fed7d7;
+}
+
+.focus\:text-red-300:focus {
+ color: #feb2b2;
+}
+
+.focus\:text-red-400:focus {
+ color: #fc8181;
+}
+
+.focus\:text-red-500:focus {
+ color: #f56565;
+}
+
+.focus\:text-red-600:focus {
+ color: #e53e3e;
+}
+
+.focus\:text-red-700:focus {
+ color: #c53030;
+}
+
+.focus\:text-red-800:focus {
+ color: #9b2c2c;
+}
+
+.focus\:text-red-900:focus {
+ color: #742a2a;
+}
+
+.focus\:text-orange-100:focus {
+ color: #fffaf0;
+}
+
+.focus\:text-orange-200:focus {
+ color: #feebc8;
+}
+
+.focus\:text-orange-300:focus {
+ color: #fbd38d;
+}
+
+.focus\:text-orange-400:focus {
+ color: #f6ad55;
+}
+
+.focus\:text-orange-500:focus {
+ color: #ed8936;
+}
+
+.focus\:text-orange-600:focus {
+ color: #dd6b20;
+}
+
+.focus\:text-orange-700:focus {
+ color: #c05621;
+}
+
+.focus\:text-orange-800:focus {
+ color: #9c4221;
+}
+
+.focus\:text-orange-900:focus {
+ color: #7b341e;
+}
+
+.focus\:text-yellow-100:focus {
+ color: #fffff0;
+}
+
+.focus\:text-yellow-200:focus {
+ color: #fefcbf;
+}
+
+.focus\:text-yellow-300:focus {
+ color: #faf089;
+}
+
+.focus\:text-yellow-400:focus {
+ color: #f6e05e;
+}
+
+.focus\:text-yellow-500:focus {
+ color: #ecc94b;
+}
+
+.focus\:text-yellow-600:focus {
+ color: #d69e2e;
+}
+
+.focus\:text-yellow-700:focus {
+ color: #b7791f;
+}
+
+.focus\:text-yellow-800:focus {
+ color: #975a16;
+}
+
+.focus\:text-yellow-900:focus {
+ color: #744210;
+}
+
+.focus\:text-green-100:focus {
+ color: #f0fff4;
+}
+
+.focus\:text-green-200:focus {
+ color: #c6f6d5;
+}
+
+.focus\:text-green-300:focus {
+ color: #9ae6b4;
+}
+
+.focus\:text-green-400:focus {
+ color: #68d391;
+}
+
+.focus\:text-green-500:focus {
+ color: #48bb78;
+}
+
+.focus\:text-green-600:focus {
+ color: #38a169;
+}
+
+.focus\:text-green-700:focus {
+ color: #2f855a;
+}
+
+.focus\:text-green-800:focus {
+ color: #276749;
+}
+
+.focus\:text-green-900:focus {
+ color: #22543d;
+}
+
+.focus\:text-teal-100:focus {
+ color: #e6fffa;
+}
+
+.focus\:text-teal-200:focus {
+ color: #b2f5ea;
+}
+
+.focus\:text-teal-300:focus {
+ color: #81e6d9;
+}
+
+.focus\:text-teal-400:focus {
+ color: #4fd1c5;
+}
+
+.focus\:text-teal-500:focus {
+ color: #38b2ac;
+}
+
+.focus\:text-teal-600:focus {
+ color: #319795;
+}
+
+.focus\:text-teal-700:focus {
+ color: #2c7a7b;
+}
+
+.focus\:text-teal-800:focus {
+ color: #285e61;
+}
+
+.focus\:text-teal-900:focus {
+ color: #234e52;
+}
+
+.focus\:text-blue-100:focus {
+ color: #ebf8ff;
+}
+
+.focus\:text-blue-200:focus {
+ color: #bee3f8;
+}
+
+.focus\:text-blue-300:focus {
+ color: #90cdf4;
+}
+
+.focus\:text-blue-400:focus {
+ color: #63b3ed;
+}
+
+.focus\:text-blue-500:focus {
+ color: #4299e1;
+}
+
+.focus\:text-blue-600:focus {
+ color: #3182ce;
+}
+
+.focus\:text-blue-700:focus {
+ color: #2b6cb0;
+}
+
+.focus\:text-blue-800:focus {
+ color: #2c5282;
+}
+
+.focus\:text-blue-900:focus {
+ color: #2a4365;
+}
+
+.focus\:text-indigo-100:focus {
+ color: #ebf4ff;
+}
+
+.focus\:text-indigo-200:focus {
+ color: #c3dafe;
+}
+
+.focus\:text-indigo-300:focus {
+ color: #a3bffa;
+}
+
+.focus\:text-indigo-400:focus {
+ color: #7f9cf5;
+}
+
+.focus\:text-indigo-500:focus {
+ color: #667eea;
+}
+
+.focus\:text-indigo-600:focus {
+ color: #5a67d8;
+}
+
+.focus\:text-indigo-700:focus {
+ color: #4c51bf;
+}
+
+.focus\:text-indigo-800:focus {
+ color: #434190;
+}
+
+.focus\:text-indigo-900:focus {
+ color: #3c366b;
+}
+
+.focus\:text-purple-100:focus {
+ color: #faf5ff;
+}
+
+.focus\:text-purple-200:focus {
+ color: #e9d8fd;
+}
+
+.focus\:text-purple-300:focus {
+ color: #d6bcfa;
+}
+
+.focus\:text-purple-400:focus {
+ color: #b794f4;
+}
+
+.focus\:text-purple-500:focus {
+ color: #9f7aea;
+}
+
+.focus\:text-purple-600:focus {
+ color: #805ad5;
+}
+
+.focus\:text-purple-700:focus {
+ color: #6b46c1;
+}
+
+.focus\:text-purple-800:focus {
+ color: #553c9a;
+}
+
+.focus\:text-purple-900:focus {
+ color: #44337a;
+}
+
+.focus\:text-pink-100:focus {
+ color: #fff5f7;
+}
+
+.focus\:text-pink-200:focus {
+ color: #fed7e2;
+}
+
+.focus\:text-pink-300:focus {
+ color: #fbb6ce;
+}
+
+.focus\:text-pink-400:focus {
+ color: #f687b3;
+}
+
+.focus\:text-pink-500:focus {
+ color: #ed64a6;
+}
+
+.focus\:text-pink-600:focus {
+ color: #d53f8c;
+}
+
+.focus\:text-pink-700:focus {
+ color: #b83280;
+}
+
+.focus\:text-pink-800:focus {
+ color: #97266d;
+}
+
+.focus\:text-pink-900:focus {
+ color: #702459;
+}
+
+.text-xs {
+ font-size: 0.75rem;
+}
+
+.text-sm {
+ font-size: 0.875rem;
+}
+
+.text-base {
+ font-size: 1rem;
+}
+
+.text-lg {
+ font-size: 1.125rem;
+}
+
+.text-xl {
+ font-size: 1.25rem;
+}
+
+.text-2xl {
+ font-size: 1.5rem;
+}
+
+.text-3xl {
+ font-size: 1.875rem;
+}
+
+.text-4xl {
+ font-size: 2.25rem;
+}
+
+.text-5xl {
+ font-size: 3rem;
+}
+
+.text-6xl {
+ font-size: 4rem;
+}
+
+.italic {
+ font-style: italic;
+}
+
+.not-italic {
+ font-style: normal;
+}
+
+.uppercase {
+ text-transform: uppercase;
+}
+
+.lowercase {
+ text-transform: lowercase;
+}
+
+.capitalize {
+ text-transform: capitalize;
+}
+
+.normal-case {
+ text-transform: none;
+}
+
+.underline {
+ text-decoration: underline;
+}
+
+.line-through {
+ text-decoration: line-through;
+}
+
+.no-underline {
+ 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;
+}
+
+.tracking-tighter {
+ letter-spacing: -0.05em;
+}
+
+.tracking-tight {
+ letter-spacing: -0.025em;
+}
+
+.tracking-normal {
+ letter-spacing: 0;
+}
+
+.tracking-wide {
+ letter-spacing: 0.025em;
+}
+
+.tracking-wider {
+ letter-spacing: 0.05em;
+}
+
+.tracking-widest {
+ letter-spacing: 0.1em;
+}
+
+.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;
+ -ms-user-select: all;
+ user-select: all;
+}
+
+.select-auto {
+ -webkit-user-select: auto;
+ -moz-user-select: auto;
+ -ms-user-select: auto;
+ user-select: auto;
+}
+
+.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;
+}
+
+.visible {
+ visibility: visible;
+}
+
+.invisible {
+ visibility: hidden;
+}
+
+.whitespace-normal {
+ white-space: normal;
+}
+
+.whitespace-no-wrap {
+ 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;
+}
+
+.truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.w-0 {
+ width: 0;
+}
+
+.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-8 {
+ width: 2rem;
+}
+
+.w-10 {
+ width: 2.5rem;
+}
+
+.w-12 {
+ width: 3rem;
+}
+
+.w-16 {
+ width: 4rem;
+}
+
+.w-20 {
+ width: 5rem;
+}
+
+.w-24 {
+ width: 6rem;
+}
+
+.w-32 {
+ width: 8rem;
+}
+
+.w-40 {
+ width: 10rem;
+}
+
+.w-48 {
+ width: 12rem;
+}
+
+.w-56 {
+ width: 14rem;
+}
+
+.w-64 {
+ width: 16rem;
+}
+
+.w-auto {
+ width: auto;
+}
+
+.w-px {
+ width: 1px;
+}
+
+.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;
+}
+
+.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;
+}
+
+@media (min-width: 640px) {
+ .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\: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\:appearance-none {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+
+ .sm\:bg-fixed {
+ background-attachment: fixed;
+ }
+
+ .sm\:bg-local {
+ background-attachment: local;
+ }
+
+ .sm\:bg-scroll {
+ background-attachment: scroll;
+ }
+
+ .sm\:bg-transparent {
+ background-color: transparent;
+ }
+
+ .sm\:bg-black {
+ background-color: #000;
+ }
+
+ .sm\:bg-white {
+ background-color: #fff;
+ }
+
+ .sm\:bg-gray-100 {
+ background-color: #f7fafc;
+ }
+
+ .sm\:bg-gray-200 {
+ background-color: #edf2f7;
+ }
+
+ .sm\:bg-gray-300 {
+ background-color: #e2e8f0;
+ }
+
+ .sm\:bg-gray-400 {
+ background-color: #cbd5e0;
+ }
+
+ .sm\:bg-gray-500 {
+ background-color: #a0aec0;
+ }
+
+ .sm\:bg-gray-600 {
+ background-color: #718096;
+ }
+
+ .sm\:bg-gray-700 {
+ background-color: #4a5568;
+ }
+
+ .sm\:bg-gray-800 {
+ background-color: #2d3748;
+ }
+
+ .sm\:bg-gray-900 {
+ background-color: #1a202c;
+ }
+
+ .sm\:bg-red-100 {
+ background-color: #fff5f5;
+ }
+
+ .sm\:bg-red-200 {
+ background-color: #fed7d7;
+ }
+
+ .sm\:bg-red-300 {
+ background-color: #feb2b2;
+ }
+
+ .sm\:bg-red-400 {
+ background-color: #fc8181;
+ }
+
+ .sm\:bg-red-500 {
+ background-color: #f56565;
+ }
+
+ .sm\:bg-red-600 {
+ background-color: #e53e3e;
+ }
+
+ .sm\:bg-red-700 {
+ background-color: #c53030;
+ }
+
+ .sm\:bg-red-800 {
+ background-color: #9b2c2c;
+ }
+
+ .sm\:bg-red-900 {
+ background-color: #742a2a;
+ }
+
+ .sm\:bg-orange-100 {
+ background-color: #fffaf0;
+ }
+
+ .sm\:bg-orange-200 {
+ background-color: #feebc8;
+ }
+
+ .sm\:bg-orange-300 {
+ background-color: #fbd38d;
+ }
+
+ .sm\:bg-orange-400 {
+ background-color: #f6ad55;
+ }
+
+ .sm\:bg-orange-500 {
+ background-color: #ed8936;
+ }
+
+ .sm\:bg-orange-600 {
+ background-color: #dd6b20;
+ }
+
+ .sm\:bg-orange-700 {
+ background-color: #c05621;
+ }
+
+ .sm\:bg-orange-800 {
+ background-color: #9c4221;
+ }
+
+ .sm\:bg-orange-900 {
+ background-color: #7b341e;
+ }
+
+ .sm\:bg-yellow-100 {
+ background-color: #fffff0;
+ }
+
+ .sm\:bg-yellow-200 {
+ background-color: #fefcbf;
+ }
+
+ .sm\:bg-yellow-300 {
+ background-color: #faf089;
+ }
+
+ .sm\:bg-yellow-400 {
+ background-color: #f6e05e;
+ }
+
+ .sm\:bg-yellow-500 {
+ background-color: #ecc94b;
+ }
+
+ .sm\:bg-yellow-600 {
+ background-color: #d69e2e;
+ }
+
+ .sm\:bg-yellow-700 {
+ background-color: #b7791f;
+ }
+
+ .sm\:bg-yellow-800 {
+ background-color: #975a16;
+ }
+
+ .sm\:bg-yellow-900 {
+ background-color: #744210;
+ }
+
+ .sm\:bg-green-100 {
+ background-color: #f0fff4;
+ }
+
+ .sm\:bg-green-200 {
+ background-color: #c6f6d5;
+ }
+
+ .sm\:bg-green-300 {
+ background-color: #9ae6b4;
+ }
+
+ .sm\:bg-green-400 {
+ background-color: #68d391;
+ }
+
+ .sm\:bg-green-500 {
+ background-color: #48bb78;
+ }
+
+ .sm\:bg-green-600 {
+ background-color: #38a169;
+ }
+
+ .sm\:bg-green-700 {
+ background-color: #2f855a;
+ }
+
+ .sm\:bg-green-800 {
+ background-color: #276749;
+ }
+
+ .sm\:bg-green-900 {
+ background-color: #22543d;
+ }
+
+ .sm\:bg-teal-100 {
+ background-color: #e6fffa;
+ }
+
+ .sm\:bg-teal-200 {
+ background-color: #b2f5ea;
+ }
+
+ .sm\:bg-teal-300 {
+ background-color: #81e6d9;
+ }
+
+ .sm\:bg-teal-400 {
+ background-color: #4fd1c5;
+ }
+
+ .sm\:bg-teal-500 {
+ background-color: #38b2ac;
+ }
+
+ .sm\:bg-teal-600 {
+ background-color: #319795;
+ }
+
+ .sm\:bg-teal-700 {
+ background-color: #2c7a7b;
+ }
+
+ .sm\:bg-teal-800 {
+ background-color: #285e61;
+ }
+
+ .sm\:bg-teal-900 {
+ background-color: #234e52;
+ }
+
+ .sm\:bg-blue-100 {
+ background-color: #ebf8ff;
+ }
+
+ .sm\:bg-blue-200 {
+ background-color: #bee3f8;
+ }
+
+ .sm\:bg-blue-300 {
+ background-color: #90cdf4;
+ }
+
+ .sm\:bg-blue-400 {
+ background-color: #63b3ed;
+ }
+
+ .sm\:bg-blue-500 {
+ background-color: #4299e1;
+ }
+
+ .sm\:bg-blue-600 {
+ background-color: #3182ce;
+ }
+
+ .sm\:bg-blue-700 {
+ background-color: #2b6cb0;
+ }
+
+ .sm\:bg-blue-800 {
+ background-color: #2c5282;
+ }
+
+ .sm\:bg-blue-900 {
+ background-color: #2a4365;
+ }
+
+ .sm\:bg-indigo-100 {
+ background-color: #ebf4ff;
+ }
+
+ .sm\:bg-indigo-200 {
+ background-color: #c3dafe;
+ }
+
+ .sm\:bg-indigo-300 {
+ background-color: #a3bffa;
+ }
+
+ .sm\:bg-indigo-400 {
+ background-color: #7f9cf5;
+ }
+
+ .sm\:bg-indigo-500 {
+ background-color: #667eea;
+ }
+
+ .sm\:bg-indigo-600 {
+ background-color: #5a67d8;
+ }
+
+ .sm\:bg-indigo-700 {
+ background-color: #4c51bf;
+ }
+
+ .sm\:bg-indigo-800 {
+ background-color: #434190;
+ }
+
+ .sm\:bg-indigo-900 {
+ background-color: #3c366b;
+ }
+
+ .sm\:bg-purple-100 {
+ background-color: #faf5ff;
+ }
+
+ .sm\:bg-purple-200 {
+ background-color: #e9d8fd;
+ }
+
+ .sm\:bg-purple-300 {
+ background-color: #d6bcfa;
+ }
+
+ .sm\:bg-purple-400 {
+ background-color: #b794f4;
+ }
+
+ .sm\:bg-purple-500 {
+ background-color: #9f7aea;
+ }
+
+ .sm\:bg-purple-600 {
+ background-color: #805ad5;
+ }
+
+ .sm\:bg-purple-700 {
+ background-color: #6b46c1;
+ }
+
+ .sm\:bg-purple-800 {
+ background-color: #553c9a;
+ }
+
+ .sm\:bg-purple-900 {
+ background-color: #44337a;
+ }
+
+ .sm\:bg-pink-100 {
+ background-color: #fff5f7;
+ }
+
+ .sm\:bg-pink-200 {
+ background-color: #fed7e2;
+ }
+
+ .sm\:bg-pink-300 {
+ background-color: #fbb6ce;
+ }
+
+ .sm\:bg-pink-400 {
+ background-color: #f687b3;
+ }
+
+ .sm\:bg-pink-500 {
+ background-color: #ed64a6;
+ }
+
+ .sm\:bg-pink-600 {
+ background-color: #d53f8c;
+ }
+
+ .sm\:bg-pink-700 {
+ background-color: #b83280;
+ }
+
+ .sm\:bg-pink-800 {
+ background-color: #97266d;
+ }
+
+ .sm\:bg-pink-900 {
+ background-color: #702459;
+ }
+
+ .sm\:hover\:bg-transparent:hover {
+ background-color: transparent;
+ }
+
+ .sm\:hover\:bg-black:hover {
+ background-color: #000;
+ }
+
+ .sm\:hover\:bg-white:hover {
+ background-color: #fff;
+ }
+
+ .sm\:hover\:bg-gray-100:hover {
+ background-color: #f7fafc;
+ }
+
+ .sm\:hover\:bg-gray-200:hover {
+ background-color: #edf2f7;
+ }
+
+ .sm\:hover\:bg-gray-300:hover {
+ background-color: #e2e8f0;
+ }
+
+ .sm\:hover\:bg-gray-400:hover {
+ background-color: #cbd5e0;
+ }
+
+ .sm\:hover\:bg-gray-500:hover {
+ background-color: #a0aec0;
+ }
+
+ .sm\:hover\:bg-gray-600:hover {
+ background-color: #718096;
+ }
+
+ .sm\:hover\:bg-gray-700:hover {
+ background-color: #4a5568;
+ }
+
+ .sm\:hover\:bg-gray-800:hover {
+ background-color: #2d3748;
+ }
+
+ .sm\:hover\:bg-gray-900:hover {
+ background-color: #1a202c;
+ }
+
+ .sm\:hover\:bg-red-100:hover {
+ background-color: #fff5f5;
+ }
+
+ .sm\:hover\:bg-red-200:hover {
+ background-color: #fed7d7;
+ }
+
+ .sm\:hover\:bg-red-300:hover {
+ background-color: #feb2b2;
+ }
+
+ .sm\:hover\:bg-red-400:hover {
+ background-color: #fc8181;
+ }
+
+ .sm\:hover\:bg-red-500:hover {
+ background-color: #f56565;
+ }
+
+ .sm\:hover\:bg-red-600:hover {
+ background-color: #e53e3e;
+ }
+
+ .sm\:hover\:bg-red-700:hover {
+ background-color: #c53030;
+ }
+
+ .sm\:hover\:bg-red-800:hover {
+ background-color: #9b2c2c;
+ }
+
+ .sm\:hover\:bg-red-900:hover {
+ background-color: #742a2a;
+ }
+
+ .sm\:hover\:bg-orange-100:hover {
+ background-color: #fffaf0;
+ }
+
+ .sm\:hover\:bg-orange-200:hover {
+ background-color: #feebc8;
+ }
+
+ .sm\:hover\:bg-orange-300:hover {
+ background-color: #fbd38d;
+ }
+
+ .sm\:hover\:bg-orange-400:hover {
+ background-color: #f6ad55;
+ }
+
+ .sm\:hover\:bg-orange-500:hover {
+ background-color: #ed8936;
+ }
+
+ .sm\:hover\:bg-orange-600:hover {
+ background-color: #dd6b20;
+ }
+
+ .sm\:hover\:bg-orange-700:hover {
+ background-color: #c05621;
+ }
+
+ .sm\:hover\:bg-orange-800:hover {
+ background-color: #9c4221;
+ }
+
+ .sm\:hover\:bg-orange-900:hover {
+ background-color: #7b341e;
+ }
+
+ .sm\:hover\:bg-yellow-100:hover {
+ background-color: #fffff0;
+ }
+
+ .sm\:hover\:bg-yellow-200:hover {
+ background-color: #fefcbf;
+ }
+
+ .sm\:hover\:bg-yellow-300:hover {
+ background-color: #faf089;
+ }
+
+ .sm\:hover\:bg-yellow-400:hover {
+ background-color: #f6e05e;
+ }
+
+ .sm\:hover\:bg-yellow-500:hover {
+ background-color: #ecc94b;
+ }
+
+ .sm\:hover\:bg-yellow-600:hover {
+ background-color: #d69e2e;
+ }
+
+ .sm\:hover\:bg-yellow-700:hover {
+ background-color: #b7791f;
+ }
+
+ .sm\:hover\:bg-yellow-800:hover {
+ background-color: #975a16;
+ }
+
+ .sm\:hover\:bg-yellow-900:hover {
+ background-color: #744210;
+ }
+
+ .sm\:hover\:bg-green-100:hover {
+ background-color: #f0fff4;
+ }
+
+ .sm\:hover\:bg-green-200:hover {
+ background-color: #c6f6d5;
+ }
+
+ .sm\:hover\:bg-green-300:hover {
+ background-color: #9ae6b4;
+ }
+
+ .sm\:hover\:bg-green-400:hover {
+ background-color: #68d391;
+ }
+
+ .sm\:hover\:bg-green-500:hover {
+ background-color: #48bb78;
+ }
+
+ .sm\:hover\:bg-green-600:hover {
+ background-color: #38a169;
+ }
+
+ .sm\:hover\:bg-green-700:hover {
+ background-color: #2f855a;
+ }
+
+ .sm\:hover\:bg-green-800:hover {
+ background-color: #276749;
+ }
+
+ .sm\:hover\:bg-green-900:hover {
+ background-color: #22543d;
+ }
+
+ .sm\:hover\:bg-teal-100:hover {
+ background-color: #e6fffa;
+ }
+
+ .sm\:hover\:bg-teal-200:hover {
+ background-color: #b2f5ea;
+ }
+
+ .sm\:hover\:bg-teal-300:hover {
+ background-color: #81e6d9;
+ }
+
+ .sm\:hover\:bg-teal-400:hover {
+ background-color: #4fd1c5;
+ }
+
+ .sm\:hover\:bg-teal-500:hover {
+ background-color: #38b2ac;
+ }
+
+ .sm\:hover\:bg-teal-600:hover {
+ background-color: #319795;
+ }
+
+ .sm\:hover\:bg-teal-700:hover {
+ background-color: #2c7a7b;
+ }
+
+ .sm\:hover\:bg-teal-800:hover {
+ background-color: #285e61;
+ }
+
+ .sm\:hover\:bg-teal-900:hover {
+ background-color: #234e52;
+ }
+
+ .sm\:hover\:bg-blue-100:hover {
+ background-color: #ebf8ff;
+ }
+
+ .sm\:hover\:bg-blue-200:hover {
+ background-color: #bee3f8;
+ }
+
+ .sm\:hover\:bg-blue-300:hover {
+ background-color: #90cdf4;
+ }
+
+ .sm\:hover\:bg-blue-400:hover {
+ background-color: #63b3ed;
+ }
+
+ .sm\:hover\:bg-blue-500:hover {
+ background-color: #4299e1;
+ }
+
+ .sm\:hover\:bg-blue-600:hover {
+ background-color: #3182ce;
+ }
+
+ .sm\:hover\:bg-blue-700:hover {
+ background-color: #2b6cb0;
+ }
+
+ .sm\:hover\:bg-blue-800:hover {
+ background-color: #2c5282;
+ }
+
+ .sm\:hover\:bg-blue-900:hover {
+ background-color: #2a4365;
+ }
+
+ .sm\:hover\:bg-indigo-100:hover {
+ background-color: #ebf4ff;
+ }
+
+ .sm\:hover\:bg-indigo-200:hover {
+ background-color: #c3dafe;
+ }
+
+ .sm\:hover\:bg-indigo-300:hover {
+ background-color: #a3bffa;
+ }
+
+ .sm\:hover\:bg-indigo-400:hover {
+ background-color: #7f9cf5;
+ }
+
+ .sm\:hover\:bg-indigo-500:hover {
+ background-color: #667eea;
+ }
+
+ .sm\:hover\:bg-indigo-600:hover {
+ background-color: #5a67d8;
+ }
+
+ .sm\:hover\:bg-indigo-700:hover {
+ background-color: #4c51bf;
+ }
+
+ .sm\:hover\:bg-indigo-800:hover {
+ background-color: #434190;
+ }
+
+ .sm\:hover\:bg-indigo-900:hover {
+ background-color: #3c366b;
+ }
+
+ .sm\:hover\:bg-purple-100:hover {
+ background-color: #faf5ff;
+ }
+
+ .sm\:hover\:bg-purple-200:hover {
+ background-color: #e9d8fd;
+ }
+
+ .sm\:hover\:bg-purple-300:hover {
+ background-color: #d6bcfa;
+ }
+
+ .sm\:hover\:bg-purple-400:hover {
+ background-color: #b794f4;
+ }
+
+ .sm\:hover\:bg-purple-500:hover {
+ background-color: #9f7aea;
+ }
+
+ .sm\:hover\:bg-purple-600:hover {
+ background-color: #805ad5;
+ }
+
+ .sm\:hover\:bg-purple-700:hover {
+ background-color: #6b46c1;
+ }
+
+ .sm\:hover\:bg-purple-800:hover {
+ background-color: #553c9a;
+ }
+
+ .sm\:hover\:bg-purple-900:hover {
+ background-color: #44337a;
+ }
+
+ .sm\:hover\:bg-pink-100:hover {
+ background-color: #fff5f7;
+ }
+
+ .sm\:hover\:bg-pink-200:hover {
+ background-color: #fed7e2;
+ }
+
+ .sm\:hover\:bg-pink-300:hover {
+ background-color: #fbb6ce;
+ }
+
+ .sm\:hover\:bg-pink-400:hover {
+ background-color: #f687b3;
+ }
+
+ .sm\:hover\:bg-pink-500:hover {
+ background-color: #ed64a6;
+ }
+
+ .sm\:hover\:bg-pink-600:hover {
+ background-color: #d53f8c;
+ }
+
+ .sm\:hover\:bg-pink-700:hover {
+ background-color: #b83280;
+ }
+
+ .sm\:hover\:bg-pink-800:hover {
+ background-color: #97266d;
+ }
+
+ .sm\:hover\:bg-pink-900:hover {
+ background-color: #702459;
+ }
+
+ .sm\:focus\:bg-transparent:focus {
+ background-color: transparent;
+ }
+
+ .sm\:focus\:bg-black:focus {
+ background-color: #000;
+ }
+
+ .sm\:focus\:bg-white:focus {
+ background-color: #fff;
+ }
+
+ .sm\:focus\:bg-gray-100:focus {
+ background-color: #f7fafc;
+ }
+
+ .sm\:focus\:bg-gray-200:focus {
+ background-color: #edf2f7;
+ }
+
+ .sm\:focus\:bg-gray-300:focus {
+ background-color: #e2e8f0;
+ }
+
+ .sm\:focus\:bg-gray-400:focus {
+ background-color: #cbd5e0;
+ }
+
+ .sm\:focus\:bg-gray-500:focus {
+ background-color: #a0aec0;
+ }
+
+ .sm\:focus\:bg-gray-600:focus {
+ background-color: #718096;
+ }
+
+ .sm\:focus\:bg-gray-700:focus {
+ background-color: #4a5568;
+ }
+
+ .sm\:focus\:bg-gray-800:focus {
+ background-color: #2d3748;
+ }
+
+ .sm\:focus\:bg-gray-900:focus {
+ background-color: #1a202c;
+ }
+
+ .sm\:focus\:bg-red-100:focus {
+ background-color: #fff5f5;
+ }
+
+ .sm\:focus\:bg-red-200:focus {
+ background-color: #fed7d7;
+ }
+
+ .sm\:focus\:bg-red-300:focus {
+ background-color: #feb2b2;
+ }
+
+ .sm\:focus\:bg-red-400:focus {
+ background-color: #fc8181;
+ }
+
+ .sm\:focus\:bg-red-500:focus {
+ background-color: #f56565;
+ }
+
+ .sm\:focus\:bg-red-600:focus {
+ background-color: #e53e3e;
+ }
+
+ .sm\:focus\:bg-red-700:focus {
+ background-color: #c53030;
+ }
+
+ .sm\:focus\:bg-red-800:focus {
+ background-color: #9b2c2c;
+ }
+
+ .sm\:focus\:bg-red-900:focus {
+ background-color: #742a2a;
+ }
+
+ .sm\:focus\:bg-orange-100:focus {
+ background-color: #fffaf0;
+ }
+
+ .sm\:focus\:bg-orange-200:focus {
+ background-color: #feebc8;
+ }
+
+ .sm\:focus\:bg-orange-300:focus {
+ background-color: #fbd38d;
+ }
+
+ .sm\:focus\:bg-orange-400:focus {
+ background-color: #f6ad55;
+ }
+
+ .sm\:focus\:bg-orange-500:focus {
+ background-color: #ed8936;
+ }
+
+ .sm\:focus\:bg-orange-600:focus {
+ background-color: #dd6b20;
+ }
+
+ .sm\:focus\:bg-orange-700:focus {
+ background-color: #c05621;
+ }
+
+ .sm\:focus\:bg-orange-800:focus {
+ background-color: #9c4221;
+ }
+
+ .sm\:focus\:bg-orange-900:focus {
+ background-color: #7b341e;
+ }
+
+ .sm\:focus\:bg-yellow-100:focus {
+ background-color: #fffff0;
+ }
+
+ .sm\:focus\:bg-yellow-200:focus {
+ background-color: #fefcbf;
+ }
+
+ .sm\:focus\:bg-yellow-300:focus {
+ background-color: #faf089;
+ }
+
+ .sm\:focus\:bg-yellow-400:focus {
+ background-color: #f6e05e;
+ }
+
+ .sm\:focus\:bg-yellow-500:focus {
+ background-color: #ecc94b;
+ }
+
+ .sm\:focus\:bg-yellow-600:focus {
+ background-color: #d69e2e;
+ }
+
+ .sm\:focus\:bg-yellow-700:focus {
+ background-color: #b7791f;
+ }
+
+ .sm\:focus\:bg-yellow-800:focus {
+ background-color: #975a16;
+ }
+
+ .sm\:focus\:bg-yellow-900:focus {
+ background-color: #744210;
+ }
+
+ .sm\:focus\:bg-green-100:focus {
+ background-color: #f0fff4;
+ }
+
+ .sm\:focus\:bg-green-200:focus {
+ background-color: #c6f6d5;
+ }
+
+ .sm\:focus\:bg-green-300:focus {
+ background-color: #9ae6b4;
+ }
+
+ .sm\:focus\:bg-green-400:focus {
+ background-color: #68d391;
+ }
+
+ .sm\:focus\:bg-green-500:focus {
+ background-color: #48bb78;
+ }
+
+ .sm\:focus\:bg-green-600:focus {
+ background-color: #38a169;
+ }
+
+ .sm\:focus\:bg-green-700:focus {
+ background-color: #2f855a;
+ }
+
+ .sm\:focus\:bg-green-800:focus {
+ background-color: #276749;
+ }
+
+ .sm\:focus\:bg-green-900:focus {
+ background-color: #22543d;
+ }
+
+ .sm\:focus\:bg-teal-100:focus {
+ background-color: #e6fffa;
+ }
+
+ .sm\:focus\:bg-teal-200:focus {
+ background-color: #b2f5ea;
+ }
+
+ .sm\:focus\:bg-teal-300:focus {
+ background-color: #81e6d9;
+ }
+
+ .sm\:focus\:bg-teal-400:focus {
+ background-color: #4fd1c5;
+ }
+
+ .sm\:focus\:bg-teal-500:focus {
+ background-color: #38b2ac;
+ }
+
+ .sm\:focus\:bg-teal-600:focus {
+ background-color: #319795;
+ }
+
+ .sm\:focus\:bg-teal-700:focus {
+ background-color: #2c7a7b;
+ }
+
+ .sm\:focus\:bg-teal-800:focus {
+ background-color: #285e61;
+ }
+
+ .sm\:focus\:bg-teal-900:focus {
+ background-color: #234e52;
+ }
+
+ .sm\:focus\:bg-blue-100:focus {
+ background-color: #ebf8ff;
+ }
+
+ .sm\:focus\:bg-blue-200:focus {
+ background-color: #bee3f8;
+ }
+
+ .sm\:focus\:bg-blue-300:focus {
+ background-color: #90cdf4;
+ }
+
+ .sm\:focus\:bg-blue-400:focus {
+ background-color: #63b3ed;
+ }
+
+ .sm\:focus\:bg-blue-500:focus {
+ background-color: #4299e1;
+ }
+
+ .sm\:focus\:bg-blue-600:focus {
+ background-color: #3182ce;
+ }
+
+ .sm\:focus\:bg-blue-700:focus {
+ background-color: #2b6cb0;
+ }
+
+ .sm\:focus\:bg-blue-800:focus {
+ background-color: #2c5282;
+ }
+
+ .sm\:focus\:bg-blue-900:focus {
+ background-color: #2a4365;
+ }
+
+ .sm\:focus\:bg-indigo-100:focus {
+ background-color: #ebf4ff;
+ }
+
+ .sm\:focus\:bg-indigo-200:focus {
+ background-color: #c3dafe;
+ }
+
+ .sm\:focus\:bg-indigo-300:focus {
+ background-color: #a3bffa;
+ }
+
+ .sm\:focus\:bg-indigo-400:focus {
+ background-color: #7f9cf5;
+ }
+
+ .sm\:focus\:bg-indigo-500:focus {
+ background-color: #667eea;
+ }
+
+ .sm\:focus\:bg-indigo-600:focus {
+ background-color: #5a67d8;
+ }
+
+ .sm\:focus\:bg-indigo-700:focus {
+ background-color: #4c51bf;
+ }
+
+ .sm\:focus\:bg-indigo-800:focus {
+ background-color: #434190;
+ }
+
+ .sm\:focus\:bg-indigo-900:focus {
+ background-color: #3c366b;
+ }
+
+ .sm\:focus\:bg-purple-100:focus {
+ background-color: #faf5ff;
+ }
+
+ .sm\:focus\:bg-purple-200:focus {
+ background-color: #e9d8fd;
+ }
+
+ .sm\:focus\:bg-purple-300:focus {
+ background-color: #d6bcfa;
+ }
+
+ .sm\:focus\:bg-purple-400:focus {
+ background-color: #b794f4;
+ }
+
+ .sm\:focus\:bg-purple-500:focus {
+ background-color: #9f7aea;
+ }
+
+ .sm\:focus\:bg-purple-600:focus {
+ background-color: #805ad5;
+ }
+
+ .sm\:focus\:bg-purple-700:focus {
+ background-color: #6b46c1;
+ }
+
+ .sm\:focus\:bg-purple-800:focus {
+ background-color: #553c9a;
+ }
+
+ .sm\:focus\:bg-purple-900:focus {
+ background-color: #44337a;
+ }
+
+ .sm\:focus\:bg-pink-100:focus {
+ background-color: #fff5f7;
+ }
+
+ .sm\:focus\:bg-pink-200:focus {
+ background-color: #fed7e2;
+ }
+
+ .sm\:focus\:bg-pink-300:focus {
+ background-color: #fbb6ce;
+ }
+
+ .sm\:focus\:bg-pink-400:focus {
+ background-color: #f687b3;
+ }
+
+ .sm\:focus\:bg-pink-500:focus {
+ background-color: #ed64a6;
+ }
+
+ .sm\:focus\:bg-pink-600:focus {
+ background-color: #d53f8c;
+ }
+
+ .sm\:focus\:bg-pink-700:focus {
+ background-color: #b83280;
+ }
+
+ .sm\:focus\:bg-pink-800:focus {
+ background-color: #97266d;
+ }
+
+ .sm\:focus\:bg-pink-900:focus {
+ background-color: #702459;
+ }
+
+ .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-auto {
+ background-size: auto;
+ }
+
+ .sm\:bg-cover {
+ background-size: cover;
+ }
+
+ .sm\:bg-contain {
+ background-size: contain;
+ }
+
+ .sm\:border-collapse {
+ border-collapse: collapse;
+ }
+
+ .sm\:border-separate {
+ border-collapse: separate;
+ }
+
+ .sm\:border-transparent {
+ border-color: transparent;
+ }
+
+ .sm\:border-black {
+ border-color: #000;
+ }
+
+ .sm\:border-white {
+ border-color: #fff;
+ }
+
+ .sm\:border-gray-100 {
+ border-color: #f7fafc;
+ }
+
+ .sm\:border-gray-200 {
+ border-color: #edf2f7;
+ }
+
+ .sm\:border-gray-300 {
+ border-color: #e2e8f0;
+ }
+
+ .sm\:border-gray-400 {
+ border-color: #cbd5e0;
+ }
+
+ .sm\:border-gray-500 {
+ border-color: #a0aec0;
+ }
+
+ .sm\:border-gray-600 {
+ border-color: #718096;
+ }
+
+ .sm\:border-gray-700 {
+ border-color: #4a5568;
+ }
+
+ .sm\:border-gray-800 {
+ border-color: #2d3748;
+ }
+
+ .sm\:border-gray-900 {
+ border-color: #1a202c;
+ }
+
+ .sm\:border-red-100 {
+ border-color: #fff5f5;
+ }
+
+ .sm\:border-red-200 {
+ border-color: #fed7d7;
+ }
+
+ .sm\:border-red-300 {
+ border-color: #feb2b2;
+ }
+
+ .sm\:border-red-400 {
+ border-color: #fc8181;
+ }
+
+ .sm\:border-red-500 {
+ border-color: #f56565;
+ }
+
+ .sm\:border-red-600 {
+ border-color: #e53e3e;
+ }
+
+ .sm\:border-red-700 {
+ border-color: #c53030;
+ }
+
+ .sm\:border-red-800 {
+ border-color: #9b2c2c;
+ }
+
+ .sm\:border-red-900 {
+ border-color: #742a2a;
+ }
+
+ .sm\:border-orange-100 {
+ border-color: #fffaf0;
+ }
+
+ .sm\:border-orange-200 {
+ border-color: #feebc8;
+ }
+
+ .sm\:border-orange-300 {
+ border-color: #fbd38d;
+ }
+
+ .sm\:border-orange-400 {
+ border-color: #f6ad55;
+ }
+
+ .sm\:border-orange-500 {
+ border-color: #ed8936;
+ }
+
+ .sm\:border-orange-600 {
+ border-color: #dd6b20;
+ }
+
+ .sm\:border-orange-700 {
+ border-color: #c05621;
+ }
+
+ .sm\:border-orange-800 {
+ border-color: #9c4221;
+ }
+
+ .sm\:border-orange-900 {
+ border-color: #7b341e;
+ }
+
+ .sm\:border-yellow-100 {
+ border-color: #fffff0;
+ }
+
+ .sm\:border-yellow-200 {
+ border-color: #fefcbf;
+ }
+
+ .sm\:border-yellow-300 {
+ border-color: #faf089;
+ }
+
+ .sm\:border-yellow-400 {
+ border-color: #f6e05e;
+ }
+
+ .sm\:border-yellow-500 {
+ border-color: #ecc94b;
+ }
+
+ .sm\:border-yellow-600 {
+ border-color: #d69e2e;
+ }
+
+ .sm\:border-yellow-700 {
+ border-color: #b7791f;
+ }
+
+ .sm\:border-yellow-800 {
+ border-color: #975a16;
+ }
+
+ .sm\:border-yellow-900 {
+ border-color: #744210;
+ }
+
+ .sm\:border-green-100 {
+ border-color: #f0fff4;
+ }
+
+ .sm\:border-green-200 {
+ border-color: #c6f6d5;
+ }
+
+ .sm\:border-green-300 {
+ border-color: #9ae6b4;
+ }
+
+ .sm\:border-green-400 {
+ border-color: #68d391;
+ }
+
+ .sm\:border-green-500 {
+ border-color: #48bb78;
+ }
+
+ .sm\:border-green-600 {
+ border-color: #38a169;
+ }
+
+ .sm\:border-green-700 {
+ border-color: #2f855a;
+ }
+
+ .sm\:border-green-800 {
+ border-color: #276749;
+ }
+
+ .sm\:border-green-900 {
+ border-color: #22543d;
+ }
+
+ .sm\:border-teal-100 {
+ border-color: #e6fffa;
+ }
+
+ .sm\:border-teal-200 {
+ border-color: #b2f5ea;
+ }
+
+ .sm\:border-teal-300 {
+ border-color: #81e6d9;
+ }
+
+ .sm\:border-teal-400 {
+ border-color: #4fd1c5;
+ }
+
+ .sm\:border-teal-500 {
+ border-color: #38b2ac;
+ }
+
+ .sm\:border-teal-600 {
+ border-color: #319795;
+ }
+
+ .sm\:border-teal-700 {
+ border-color: #2c7a7b;
+ }
+
+ .sm\:border-teal-800 {
+ border-color: #285e61;
+ }
+
+ .sm\:border-teal-900 {
+ border-color: #234e52;
+ }
+
+ .sm\:border-blue-100 {
+ border-color: #ebf8ff;
+ }
+
+ .sm\:border-blue-200 {
+ border-color: #bee3f8;
+ }
+
+ .sm\:border-blue-300 {
+ border-color: #90cdf4;
+ }
+
+ .sm\:border-blue-400 {
+ border-color: #63b3ed;
+ }
+
+ .sm\:border-blue-500 {
+ border-color: #4299e1;
+ }
+
+ .sm\:border-blue-600 {
+ border-color: #3182ce;
+ }
+
+ .sm\:border-blue-700 {
+ border-color: #2b6cb0;
+ }
+
+ .sm\:border-blue-800 {
+ border-color: #2c5282;
+ }
+
+ .sm\:border-blue-900 {
+ border-color: #2a4365;
+ }
+
+ .sm\:border-indigo-100 {
+ border-color: #ebf4ff;
+ }
+
+ .sm\:border-indigo-200 {
+ border-color: #c3dafe;
+ }
+
+ .sm\:border-indigo-300 {
+ border-color: #a3bffa;
+ }
+
+ .sm\:border-indigo-400 {
+ border-color: #7f9cf5;
+ }
+
+ .sm\:border-indigo-500 {
+ border-color: #667eea;
+ }
+
+ .sm\:border-indigo-600 {
+ border-color: #5a67d8;
+ }
+
+ .sm\:border-indigo-700 {
+ border-color: #4c51bf;
+ }
+
+ .sm\:border-indigo-800 {
+ border-color: #434190;
+ }
+
+ .sm\:border-indigo-900 {
+ border-color: #3c366b;
+ }
+
+ .sm\:border-purple-100 {
+ border-color: #faf5ff;
+ }
+
+ .sm\:border-purple-200 {
+ border-color: #e9d8fd;
+ }
+
+ .sm\:border-purple-300 {
+ border-color: #d6bcfa;
+ }
+
+ .sm\:border-purple-400 {
+ border-color: #b794f4;
+ }
+
+ .sm\:border-purple-500 {
+ border-color: #9f7aea;
+ }
+
+ .sm\:border-purple-600 {
+ border-color: #805ad5;
+ }
+
+ .sm\:border-purple-700 {
+ border-color: #6b46c1;
+ }
+
+ .sm\:border-purple-800 {
+ border-color: #553c9a;
+ }
+
+ .sm\:border-purple-900 {
+ border-color: #44337a;
+ }
+
+ .sm\:border-pink-100 {
+ border-color: #fff5f7;
+ }
+
+ .sm\:border-pink-200 {
+ border-color: #fed7e2;
+ }
+
+ .sm\:border-pink-300 {
+ border-color: #fbb6ce;
+ }
+
+ .sm\:border-pink-400 {
+ border-color: #f687b3;
+ }
+
+ .sm\:border-pink-500 {
+ border-color: #ed64a6;
+ }
+
+ .sm\:border-pink-600 {
+ border-color: #d53f8c;
+ }
+
+ .sm\:border-pink-700 {
+ border-color: #b83280;
+ }
+
+ .sm\:border-pink-800 {
+ border-color: #97266d;
+ }
+
+ .sm\:border-pink-900 {
+ border-color: #702459;
+ }
+
+ .sm\:hover\:border-transparent:hover {
+ border-color: transparent;
+ }
+
+ .sm\:hover\:border-black:hover {
+ border-color: #000;
+ }
+
+ .sm\:hover\:border-white:hover {
+ border-color: #fff;
+ }
+
+ .sm\:hover\:border-gray-100:hover {
+ border-color: #f7fafc;
+ }
+
+ .sm\:hover\:border-gray-200:hover {
+ border-color: #edf2f7;
+ }
+
+ .sm\:hover\:border-gray-300:hover {
+ border-color: #e2e8f0;
+ }
+
+ .sm\:hover\:border-gray-400:hover {
+ border-color: #cbd5e0;
+ }
+
+ .sm\:hover\:border-gray-500:hover {
+ border-color: #a0aec0;
+ }
+
+ .sm\:hover\:border-gray-600:hover {
+ border-color: #718096;
+ }
+
+ .sm\:hover\:border-gray-700:hover {
+ border-color: #4a5568;
+ }
+
+ .sm\:hover\:border-gray-800:hover {
+ border-color: #2d3748;
+ }
+
+ .sm\:hover\:border-gray-900:hover {
+ border-color: #1a202c;
+ }
+
+ .sm\:hover\:border-red-100:hover {
+ border-color: #fff5f5;
+ }
+
+ .sm\:hover\:border-red-200:hover {
+ border-color: #fed7d7;
+ }
+
+ .sm\:hover\:border-red-300:hover {
+ border-color: #feb2b2;
+ }
+
+ .sm\:hover\:border-red-400:hover {
+ border-color: #fc8181;
+ }
+
+ .sm\:hover\:border-red-500:hover {
+ border-color: #f56565;
+ }
+
+ .sm\:hover\:border-red-600:hover {
+ border-color: #e53e3e;
+ }
+
+ .sm\:hover\:border-red-700:hover {
+ border-color: #c53030;
+ }
+
+ .sm\:hover\:border-red-800:hover {
+ border-color: #9b2c2c;
+ }
+
+ .sm\:hover\:border-red-900:hover {
+ border-color: #742a2a;
+ }
+
+ .sm\:hover\:border-orange-100:hover {
+ border-color: #fffaf0;
+ }
+
+ .sm\:hover\:border-orange-200:hover {
+ border-color: #feebc8;
+ }
+
+ .sm\:hover\:border-orange-300:hover {
+ border-color: #fbd38d;
+ }
+
+ .sm\:hover\:border-orange-400:hover {
+ border-color: #f6ad55;
+ }
+
+ .sm\:hover\:border-orange-500:hover {
+ border-color: #ed8936;
+ }
+
+ .sm\:hover\:border-orange-600:hover {
+ border-color: #dd6b20;
+ }
+
+ .sm\:hover\:border-orange-700:hover {
+ border-color: #c05621;
+ }
+
+ .sm\:hover\:border-orange-800:hover {
+ border-color: #9c4221;
+ }
+
+ .sm\:hover\:border-orange-900:hover {
+ border-color: #7b341e;
+ }
+
+ .sm\:hover\:border-yellow-100:hover {
+ border-color: #fffff0;
+ }
+
+ .sm\:hover\:border-yellow-200:hover {
+ border-color: #fefcbf;
+ }
+
+ .sm\:hover\:border-yellow-300:hover {
+ border-color: #faf089;
+ }
+
+ .sm\:hover\:border-yellow-400:hover {
+ border-color: #f6e05e;
+ }
+
+ .sm\:hover\:border-yellow-500:hover {
+ border-color: #ecc94b;
+ }
+
+ .sm\:hover\:border-yellow-600:hover {
+ border-color: #d69e2e;
+ }
+
+ .sm\:hover\:border-yellow-700:hover {
+ border-color: #b7791f;
+ }
+
+ .sm\:hover\:border-yellow-800:hover {
+ border-color: #975a16;
+ }
+
+ .sm\:hover\:border-yellow-900:hover {
+ border-color: #744210;
+ }
+
+ .sm\:hover\:border-green-100:hover {
+ border-color: #f0fff4;
+ }
+
+ .sm\:hover\:border-green-200:hover {
+ border-color: #c6f6d5;
+ }
+
+ .sm\:hover\:border-green-300:hover {
+ border-color: #9ae6b4;
+ }
+
+ .sm\:hover\:border-green-400:hover {
+ border-color: #68d391;
+ }
+
+ .sm\:hover\:border-green-500:hover {
+ border-color: #48bb78;
+ }
+
+ .sm\:hover\:border-green-600:hover {
+ border-color: #38a169;
+ }
+
+ .sm\:hover\:border-green-700:hover {
+ border-color: #2f855a;
+ }
+
+ .sm\:hover\:border-green-800:hover {
+ border-color: #276749;
+ }
+
+ .sm\:hover\:border-green-900:hover {
+ border-color: #22543d;
+ }
+
+ .sm\:hover\:border-teal-100:hover {
+ border-color: #e6fffa;
+ }
+
+ .sm\:hover\:border-teal-200:hover {
+ border-color: #b2f5ea;
+ }
+
+ .sm\:hover\:border-teal-300:hover {
+ border-color: #81e6d9;
+ }
+
+ .sm\:hover\:border-teal-400:hover {
+ border-color: #4fd1c5;
+ }
+
+ .sm\:hover\:border-teal-500:hover {
+ border-color: #38b2ac;
+ }
+
+ .sm\:hover\:border-teal-600:hover {
+ border-color: #319795;
+ }
+
+ .sm\:hover\:border-teal-700:hover {
+ border-color: #2c7a7b;
+ }
+
+ .sm\:hover\:border-teal-800:hover {
+ border-color: #285e61;
+ }
+
+ .sm\:hover\:border-teal-900:hover {
+ border-color: #234e52;
+ }
+
+ .sm\:hover\:border-blue-100:hover {
+ border-color: #ebf8ff;
+ }
+
+ .sm\:hover\:border-blue-200:hover {
+ border-color: #bee3f8;
+ }
+
+ .sm\:hover\:border-blue-300:hover {
+ border-color: #90cdf4;
+ }
+
+ .sm\:hover\:border-blue-400:hover {
+ border-color: #63b3ed;
+ }
+
+ .sm\:hover\:border-blue-500:hover {
+ border-color: #4299e1;
+ }
+
+ .sm\:hover\:border-blue-600:hover {
+ border-color: #3182ce;
+ }
+
+ .sm\:hover\:border-blue-700:hover {
+ border-color: #2b6cb0;
+ }
+
+ .sm\:hover\:border-blue-800:hover {
+ border-color: #2c5282;
+ }
+
+ .sm\:hover\:border-blue-900:hover {
+ border-color: #2a4365;
+ }
+
+ .sm\:hover\:border-indigo-100:hover {
+ border-color: #ebf4ff;
+ }
+
+ .sm\:hover\:border-indigo-200:hover {
+ border-color: #c3dafe;
+ }
+
+ .sm\:hover\:border-indigo-300:hover {
+ border-color: #a3bffa;
+ }
+
+ .sm\:hover\:border-indigo-400:hover {
+ border-color: #7f9cf5;
+ }
+
+ .sm\:hover\:border-indigo-500:hover {
+ border-color: #667eea;
+ }
+
+ .sm\:hover\:border-indigo-600:hover {
+ border-color: #5a67d8;
+ }
+
+ .sm\:hover\:border-indigo-700:hover {
+ border-color: #4c51bf;
+ }
+
+ .sm\:hover\:border-indigo-800:hover {
+ border-color: #434190;
+ }
+
+ .sm\:hover\:border-indigo-900:hover {
+ border-color: #3c366b;
+ }
+
+ .sm\:hover\:border-purple-100:hover {
+ border-color: #faf5ff;
+ }
+
+ .sm\:hover\:border-purple-200:hover {
+ border-color: #e9d8fd;
+ }
+
+ .sm\:hover\:border-purple-300:hover {
+ border-color: #d6bcfa;
+ }
+
+ .sm\:hover\:border-purple-400:hover {
+ border-color: #b794f4;
+ }
+
+ .sm\:hover\:border-purple-500:hover {
+ border-color: #9f7aea;
+ }
+
+ .sm\:hover\:border-purple-600:hover {
+ border-color: #805ad5;
+ }
+
+ .sm\:hover\:border-purple-700:hover {
+ border-color: #6b46c1;
+ }
+
+ .sm\:hover\:border-purple-800:hover {
+ border-color: #553c9a;
+ }
+
+ .sm\:hover\:border-purple-900:hover {
+ border-color: #44337a;
+ }
+
+ .sm\:hover\:border-pink-100:hover {
+ border-color: #fff5f7;
+ }
+
+ .sm\:hover\:border-pink-200:hover {
+ border-color: #fed7e2;
+ }
+
+ .sm\:hover\:border-pink-300:hover {
+ border-color: #fbb6ce;
+ }
+
+ .sm\:hover\:border-pink-400:hover {
+ border-color: #f687b3;
+ }
+
+ .sm\:hover\:border-pink-500:hover {
+ border-color: #ed64a6;
+ }
+
+ .sm\:hover\:border-pink-600:hover {
+ border-color: #d53f8c;
+ }
+
+ .sm\:hover\:border-pink-700:hover {
+ border-color: #b83280;
+ }
+
+ .sm\:hover\:border-pink-800:hover {
+ border-color: #97266d;
+ }
+
+ .sm\:hover\:border-pink-900:hover {
+ border-color: #702459;
+ }
+
+ .sm\:focus\:border-transparent:focus {
+ border-color: transparent;
+ }
+
+ .sm\:focus\:border-black:focus {
+ border-color: #000;
+ }
+
+ .sm\:focus\:border-white:focus {
+ border-color: #fff;
+ }
+
+ .sm\:focus\:border-gray-100:focus {
+ border-color: #f7fafc;
+ }
+
+ .sm\:focus\:border-gray-200:focus {
+ border-color: #edf2f7;
+ }
+
+ .sm\:focus\:border-gray-300:focus {
+ border-color: #e2e8f0;
+ }
+
+ .sm\:focus\:border-gray-400:focus {
+ border-color: #cbd5e0;
+ }
+
+ .sm\:focus\:border-gray-500:focus {
+ border-color: #a0aec0;
+ }
+
+ .sm\:focus\:border-gray-600:focus {
+ border-color: #718096;
+ }
+
+ .sm\:focus\:border-gray-700:focus {
+ border-color: #4a5568;
+ }
+
+ .sm\:focus\:border-gray-800:focus {
+ border-color: #2d3748;
+ }
+
+ .sm\:focus\:border-gray-900:focus {
+ border-color: #1a202c;
+ }
+
+ .sm\:focus\:border-red-100:focus {
+ border-color: #fff5f5;
+ }
+
+ .sm\:focus\:border-red-200:focus {
+ border-color: #fed7d7;
+ }
+
+ .sm\:focus\:border-red-300:focus {
+ border-color: #feb2b2;
+ }
+
+ .sm\:focus\:border-red-400:focus {
+ border-color: #fc8181;
+ }
+
+ .sm\:focus\:border-red-500:focus {
+ border-color: #f56565;
+ }
+
+ .sm\:focus\:border-red-600:focus {
+ border-color: #e53e3e;
+ }
+
+ .sm\:focus\:border-red-700:focus {
+ border-color: #c53030;
+ }
+
+ .sm\:focus\:border-red-800:focus {
+ border-color: #9b2c2c;
+ }
+
+ .sm\:focus\:border-red-900:focus {
+ border-color: #742a2a;
+ }
+
+ .sm\:focus\:border-orange-100:focus {
+ border-color: #fffaf0;
+ }
+
+ .sm\:focus\:border-orange-200:focus {
+ border-color: #feebc8;
+ }
+
+ .sm\:focus\:border-orange-300:focus {
+ border-color: #fbd38d;
+ }
+
+ .sm\:focus\:border-orange-400:focus {
+ border-color: #f6ad55;
+ }
+
+ .sm\:focus\:border-orange-500:focus {
+ border-color: #ed8936;
+ }
+
+ .sm\:focus\:border-orange-600:focus {
+ border-color: #dd6b20;
+ }
+
+ .sm\:focus\:border-orange-700:focus {
+ border-color: #c05621;
+ }
+
+ .sm\:focus\:border-orange-800:focus {
+ border-color: #9c4221;
+ }
+
+ .sm\:focus\:border-orange-900:focus {
+ border-color: #7b341e;
+ }
+
+ .sm\:focus\:border-yellow-100:focus {
+ border-color: #fffff0;
+ }
+
+ .sm\:focus\:border-yellow-200:focus {
+ border-color: #fefcbf;
+ }
+
+ .sm\:focus\:border-yellow-300:focus {
+ border-color: #faf089;
+ }
+
+ .sm\:focus\:border-yellow-400:focus {
+ border-color: #f6e05e;
+ }
+
+ .sm\:focus\:border-yellow-500:focus {
+ border-color: #ecc94b;
+ }
+
+ .sm\:focus\:border-yellow-600:focus {
+ border-color: #d69e2e;
+ }
+
+ .sm\:focus\:border-yellow-700:focus {
+ border-color: #b7791f;
+ }
+
+ .sm\:focus\:border-yellow-800:focus {
+ border-color: #975a16;
+ }
+
+ .sm\:focus\:border-yellow-900:focus {
+ border-color: #744210;
+ }
+
+ .sm\:focus\:border-green-100:focus {
+ border-color: #f0fff4;
+ }
+
+ .sm\:focus\:border-green-200:focus {
+ border-color: #c6f6d5;
+ }
+
+ .sm\:focus\:border-green-300:focus {
+ border-color: #9ae6b4;
+ }
+
+ .sm\:focus\:border-green-400:focus {
+ border-color: #68d391;
+ }
+
+ .sm\:focus\:border-green-500:focus {
+ border-color: #48bb78;
+ }
+
+ .sm\:focus\:border-green-600:focus {
+ border-color: #38a169;
+ }
+
+ .sm\:focus\:border-green-700:focus {
+ border-color: #2f855a;
+ }
+
+ .sm\:focus\:border-green-800:focus {
+ border-color: #276749;
+ }
+
+ .sm\:focus\:border-green-900:focus {
+ border-color: #22543d;
+ }
+
+ .sm\:focus\:border-teal-100:focus {
+ border-color: #e6fffa;
+ }
+
+ .sm\:focus\:border-teal-200:focus {
+ border-color: #b2f5ea;
+ }
+
+ .sm\:focus\:border-teal-300:focus {
+ border-color: #81e6d9;
+ }
+
+ .sm\:focus\:border-teal-400:focus {
+ border-color: #4fd1c5;
+ }
+
+ .sm\:focus\:border-teal-500:focus {
+ border-color: #38b2ac;
+ }
+
+ .sm\:focus\:border-teal-600:focus {
+ border-color: #319795;
+ }
+
+ .sm\:focus\:border-teal-700:focus {
+ border-color: #2c7a7b;
+ }
+
+ .sm\:focus\:border-teal-800:focus {
+ border-color: #285e61;
+ }
+
+ .sm\:focus\:border-teal-900:focus {
+ border-color: #234e52;
+ }
+
+ .sm\:focus\:border-blue-100:focus {
+ border-color: #ebf8ff;
+ }
+
+ .sm\:focus\:border-blue-200:focus {
+ border-color: #bee3f8;
+ }
+
+ .sm\:focus\:border-blue-300:focus {
+ border-color: #90cdf4;
+ }
+
+ .sm\:focus\:border-blue-400:focus {
+ border-color: #63b3ed;
+ }
+
+ .sm\:focus\:border-blue-500:focus {
+ border-color: #4299e1;
+ }
+
+ .sm\:focus\:border-blue-600:focus {
+ border-color: #3182ce;
+ }
+
+ .sm\:focus\:border-blue-700:focus {
+ border-color: #2b6cb0;
+ }
+
+ .sm\:focus\:border-blue-800:focus {
+ border-color: #2c5282;
+ }
+
+ .sm\:focus\:border-blue-900:focus {
+ border-color: #2a4365;
+ }
+
+ .sm\:focus\:border-indigo-100:focus {
+ border-color: #ebf4ff;
+ }
+
+ .sm\:focus\:border-indigo-200:focus {
+ border-color: #c3dafe;
+ }
+
+ .sm\:focus\:border-indigo-300:focus {
+ border-color: #a3bffa;
+ }
+
+ .sm\:focus\:border-indigo-400:focus {
+ border-color: #7f9cf5;
+ }
+
+ .sm\:focus\:border-indigo-500:focus {
+ border-color: #667eea;
+ }
+
+ .sm\:focus\:border-indigo-600:focus {
+ border-color: #5a67d8;
+ }
+
+ .sm\:focus\:border-indigo-700:focus {
+ border-color: #4c51bf;
+ }
+
+ .sm\:focus\:border-indigo-800:focus {
+ border-color: #434190;
+ }
+
+ .sm\:focus\:border-indigo-900:focus {
+ border-color: #3c366b;
+ }
+
+ .sm\:focus\:border-purple-100:focus {
+ border-color: #faf5ff;
+ }
+
+ .sm\:focus\:border-purple-200:focus {
+ border-color: #e9d8fd;
+ }
+
+ .sm\:focus\:border-purple-300:focus {
+ border-color: #d6bcfa;
+ }
+
+ .sm\:focus\:border-purple-400:focus {
+ border-color: #b794f4;
+ }
+
+ .sm\:focus\:border-purple-500:focus {
+ border-color: #9f7aea;
+ }
+
+ .sm\:focus\:border-purple-600:focus {
+ border-color: #805ad5;
+ }
+
+ .sm\:focus\:border-purple-700:focus {
+ border-color: #6b46c1;
+ }
+
+ .sm\:focus\:border-purple-800:focus {
+ border-color: #553c9a;
+ }
+
+ .sm\:focus\:border-purple-900:focus {
+ border-color: #44337a;
+ }
+
+ .sm\:focus\:border-pink-100:focus {
+ border-color: #fff5f7;
+ }
+
+ .sm\:focus\:border-pink-200:focus {
+ border-color: #fed7e2;
+ }
+
+ .sm\:focus\:border-pink-300:focus {
+ border-color: #fbb6ce;
+ }
+
+ .sm\:focus\:border-pink-400:focus {
+ border-color: #f687b3;
+ }
+
+ .sm\:focus\:border-pink-500:focus {
+ border-color: #ed64a6;
+ }
+
+ .sm\:focus\:border-pink-600:focus {
+ border-color: #d53f8c;
+ }
+
+ .sm\:focus\:border-pink-700:focus {
+ border-color: #b83280;
+ }
+
+ .sm\:focus\:border-pink-800:focus {
+ border-color: #97266d;
+ }
+
+ .sm\:focus\:border-pink-900:focus {
+ border-color: #702459;
+ }
+
+ .sm\:rounded-none {
+ border-radius: 0;
+ }
+
+ .sm\:rounded-sm {
+ border-radius: 0.125rem;
+ }
+
+ .sm\:rounded {
+ border-radius: 0.25rem;
+ }
+
+ .sm\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .sm\:rounded-full {
+ border-radius: 9999px;
+ }
+
+ .sm\:rounded-t-none {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ .sm\:rounded-r-none {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+
+ .sm\:rounded-b-none {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .sm\:rounded-l-none {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .sm\:rounded-t-sm {
+ border-top-left-radius: 0.125rem;
+ border-top-right-radius: 0.125rem;
+ }
+
+ .sm\:rounded-r-sm {
+ border-top-right-radius: 0.125rem;
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .sm\:rounded-b-sm {
+ border-bottom-right-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .sm\:rounded-l-sm {
+ border-top-left-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .sm\:rounded-t {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+
+ .sm\:rounded-r {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .sm\:rounded-b {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .sm\:rounded-l {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .sm\:rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+ }
+
+ .sm\:rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .sm\:rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .sm\:rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .sm\:rounded-t-full {
+ border-top-left-radius: 9999px;
+ border-top-right-radius: 9999px;
+ }
+
+ .sm\:rounded-r-full {
+ border-top-right-radius: 9999px;
+ border-bottom-right-radius: 9999px;
+ }
+
+ .sm\:rounded-b-full {
+ border-bottom-right-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .sm\:rounded-l-full {
+ border-top-left-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .sm\:rounded-tl-none {
+ border-top-left-radius: 0;
+ }
+
+ .sm\:rounded-tr-none {
+ border-top-right-radius: 0;
+ }
+
+ .sm\:rounded-br-none {
+ border-bottom-right-radius: 0;
+ }
+
+ .sm\:rounded-bl-none {
+ border-bottom-left-radius: 0;
+ }
+
+ .sm\:rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+ }
+
+ .sm\:rounded-tr-sm {
+ border-top-right-radius: 0.125rem;
+ }
+
+ .sm\:rounded-br-sm {
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .sm\:rounded-bl-sm {
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .sm\:rounded-tl {
+ border-top-left-radius: 0.25rem;
+ }
+
+ .sm\:rounded-tr {
+ border-top-right-radius: 0.25rem;
+ }
+
+ .sm\:rounded-br {
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .sm\:rounded-bl {
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .sm\:rounded-tl-lg {
+ border-top-left-radius: 0.5rem;
+ }
+
+ .sm\:rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+ }
+
+ .sm\:rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .sm\:rounded-bl-lg {
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .sm\:rounded-tl-full {
+ border-top-left-radius: 9999px;
+ }
+
+ .sm\:rounded-tr-full {
+ border-top-right-radius: 9999px;
+ }
+
+ .sm\:rounded-br-full {
+ border-bottom-right-radius: 9999px;
+ }
+
+ .sm\:rounded-bl-full {
+ border-bottom-left-radius: 9999px;
+ }
+
+ .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-0 {
+ border-width: 0;
+ }
+
+ .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: 0;
+ }
+
+ .sm\:border-r-0 {
+ border-right-width: 0;
+ }
+
+ .sm\:border-b-0 {
+ border-bottom-width: 0;
+ }
+
+ .sm\:border-l-0 {
+ border-left-width: 0;
+ }
+
+ .sm\:border-t-2 {
+ border-top-width: 2px;
+ }
+
+ .sm\:border-r-2 {
+ border-right-width: 2px;
+ }
+
+ .sm\:border-b-2 {
+ border-bottom-width: 2px;
+ }
+
+ .sm\:border-l-2 {
+ border-left-width: 2px;
+ }
+
+ .sm\:border-t-4 {
+ border-top-width: 4px;
+ }
+
+ .sm\:border-r-4 {
+ border-right-width: 4px;
+ }
+
+ .sm\:border-b-4 {
+ border-bottom-width: 4px;
+ }
+
+ .sm\:border-l-4 {
+ border-left-width: 4px;
+ }
+
+ .sm\:border-t-8 {
+ border-top-width: 8px;
+ }
+
+ .sm\:border-r-8 {
+ border-right-width: 8px;
+ }
+
+ .sm\:border-b-8 {
+ border-bottom-width: 8px;
+ }
+
+ .sm\:border-l-8 {
+ border-left-width: 8px;
+ }
+
+ .sm\:border-t {
+ border-top-width: 1px;
+ }
+
+ .sm\:border-r {
+ border-right-width: 1px;
+ }
+
+ .sm\:border-b {
+ border-bottom-width: 1px;
+ }
+
+ .sm\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-not-allowed {
+ cursor: not-allowed;
+ }
+
+ .sm\:block {
+ display: block;
+ }
+
+ .sm\:inline-block {
+ display: inline-block;
+ }
+
+ .sm\:inline {
+ display: inline;
+ }
+
+ .sm\:flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .sm\:inline-flex {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ }
+
+ .sm\:table {
+ display: table;
+ }
+
+ .sm\:table-row {
+ display: table-row;
+ }
+
+ .sm\:table-cell {
+ display: table-cell;
+ }
+
+ .sm\:hidden {
+ display: none;
+ }
+
+ .sm\:flex-row {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+
+ .sm\:flex-row-reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+ }
+
+ .sm\:flex-col {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+
+ .sm\:flex-col-reverse {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+ }
+
+ .sm\:flex-wrap {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+
+ .sm\:flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+ }
+
+ .sm\:flex-no-wrap {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+
+ .sm\:items-start {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+
+ .sm\:items-end {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ }
+
+ .sm\:items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+
+ .sm\:items-baseline {
+ -webkit-box-align: baseline;
+ -ms-flex-align: baseline;
+ align-items: baseline;
+ }
+
+ .sm\:items-stretch {
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ }
+
+ .sm\:self-auto {
+ -ms-flex-item-align: auto;
+ align-self: auto;
+ }
+
+ .sm\:self-start {
+ -ms-flex-item-align: start;
+ align-self: flex-start;
+ }
+
+ .sm\:self-end {
+ -ms-flex-item-align: end;
+ align-self: flex-end;
+ }
+
+ .sm\:self-center {
+ -ms-flex-item-align: center;
+ align-self: center;
+ }
+
+ .sm\:self-stretch {
+ -ms-flex-item-align: stretch;
+ align-self: stretch;
+ }
+
+ .sm\:justify-start {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+
+ .sm\:justify-end {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ }
+
+ .sm\:justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+
+ .sm\:justify-between {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+
+ .sm\:justify-around {
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ }
+
+ .sm\:content-center {
+ -ms-flex-line-pack: center;
+ align-content: center;
+ }
+
+ .sm\:content-start {
+ -ms-flex-line-pack: start;
+ align-content: flex-start;
+ }
+
+ .sm\:content-end {
+ -ms-flex-line-pack: end;
+ align-content: flex-end;
+ }
+
+ .sm\:content-between {
+ -ms-flex-line-pack: justify;
+ align-content: space-between;
+ }
+
+ .sm\:content-around {
+ -ms-flex-line-pack: distribute;
+ align-content: space-around;
+ }
+
+ .sm\:flex-1 {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0%;
+ flex: 1 1 0%;
+ }
+
+ .sm\:flex-auto {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+
+ .sm\:flex-initial {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ }
+
+ .sm\:flex-none {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ }
+
+ .sm\:flex-grow-0 {
+ -webkit-box-flex: 0;
+ -ms-flex-positive: 0;
+ flex-grow: 0;
+ }
+
+ .sm\:flex-grow {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ }
+
+ .sm\:flex-shrink-0 {
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ }
+
+ .sm\:flex-shrink {
+ -ms-flex-negative: 1;
+ flex-shrink: 1;
+ }
+
+ .sm\:order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+
+ .sm\:order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+
+ .sm\:order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+
+ .sm\:order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+
+ .sm\:order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+
+ .sm\:order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+
+ .sm\:order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+
+ .sm\:order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+
+ .sm\:order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+
+ .sm\:order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+
+ .sm\:order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+
+ .sm\:order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+
+ .sm\:order-first {
+ -webkit-box-ordinal-group: -9998;
+ -ms-flex-order: -9999;
+ order: -9999;
+ }
+
+ .sm\:order-last {
+ -webkit-box-ordinal-group: 10000;
+ -ms-flex-order: 9999;
+ order: 9999;
+ }
+
+ .sm\:order-none {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+
+ .sm\:float-right {
+ float: right;
+ }
+
+ .sm\:float-left {
+ float: left;
+ }
+
+ .sm\:float-none {
+ float: none;
+ }
+
+ .sm\:clearfix:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+
+ .sm\:font-sans {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ }
+
+ .sm\:font-serif {
+ font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+ }
+
+ .sm\:font-mono {
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ }
+
+ .sm\:font-hairline {
+ font-weight: 100;
+ }
+
+ .sm\:font-thin {
+ 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\:hover\:font-hairline:hover {
+ font-weight: 100;
+ }
+
+ .sm\:hover\:font-thin:hover {
+ font-weight: 200;
+ }
+
+ .sm\:hover\:font-light:hover {
+ font-weight: 300;
+ }
+
+ .sm\:hover\:font-normal:hover {
+ font-weight: 400;
+ }
+
+ .sm\:hover\:font-medium:hover {
+ font-weight: 500;
+ }
+
+ .sm\:hover\:font-semibold:hover {
+ font-weight: 600;
+ }
+
+ .sm\:hover\:font-bold:hover {
+ font-weight: 700;
+ }
+
+ .sm\:hover\:font-extrabold:hover {
+ font-weight: 800;
+ }
+
+ .sm\:hover\:font-black:hover {
+ font-weight: 900;
+ }
+
+ .sm\:focus\:font-hairline:focus {
+ font-weight: 100;
+ }
+
+ .sm\:focus\:font-thin:focus {
+ font-weight: 200;
+ }
+
+ .sm\:focus\:font-light:focus {
+ font-weight: 300;
+ }
+
+ .sm\:focus\:font-normal:focus {
+ font-weight: 400;
+ }
+
+ .sm\:focus\:font-medium:focus {
+ font-weight: 500;
+ }
+
+ .sm\:focus\:font-semibold:focus {
+ font-weight: 600;
+ }
+
+ .sm\:focus\:font-bold:focus {
+ font-weight: 700;
+ }
+
+ .sm\:focus\:font-extrabold:focus {
+ font-weight: 800;
+ }
+
+ .sm\:focus\:font-black:focus {
+ font-weight: 900;
+ }
+
+ .sm\:h-0 {
+ height: 0;
+ }
+
+ .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-8 {
+ height: 2rem;
+ }
+
+ .sm\:h-10 {
+ height: 2.5rem;
+ }
+
+ .sm\:h-12 {
+ height: 3rem;
+ }
+
+ .sm\:h-16 {
+ height: 4rem;
+ }
+
+ .sm\:h-20 {
+ height: 5rem;
+ }
+
+ .sm\:h-24 {
+ height: 6rem;
+ }
+
+ .sm\:h-32 {
+ height: 8rem;
+ }
+
+ .sm\:h-40 {
+ height: 10rem;
+ }
+
+ .sm\:h-48 {
+ height: 12rem;
+ }
+
+ .sm\:h-56 {
+ height: 14rem;
+ }
+
+ .sm\:h-64 {
+ height: 16rem;
+ }
+
+ .sm\:h-auto {
+ height: auto;
+ }
+
+ .sm\:h-px {
+ height: 1px;
+ }
+
+ .sm\:h-full {
+ height: 100%;
+ }
+
+ .sm\:h-screen {
+ height: 100vh;
+ }
+
+ .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\: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\:m-0 {
+ margin: 0;
+ }
+
+ .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-8 {
+ margin: 2rem;
+ }
+
+ .sm\:m-10 {
+ margin: 2.5rem;
+ }
+
+ .sm\:m-12 {
+ margin: 3rem;
+ }
+
+ .sm\:m-16 {
+ margin: 4rem;
+ }
+
+ .sm\:m-20 {
+ margin: 5rem;
+ }
+
+ .sm\:m-24 {
+ margin: 6rem;
+ }
+
+ .sm\:m-32 {
+ margin: 8rem;
+ }
+
+ .sm\:m-40 {
+ margin: 10rem;
+ }
+
+ .sm\:m-48 {
+ margin: 12rem;
+ }
+
+ .sm\:m-56 {
+ margin: 14rem;
+ }
+
+ .sm\:m-64 {
+ margin: 16rem;
+ }
+
+ .sm\:m-auto {
+ margin: auto;
+ }
+
+ .sm\:m-px {
+ margin: 1px;
+ }
+
+ .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-8 {
+ margin: -2rem;
+ }
+
+ .sm\:-m-10 {
+ margin: -2.5rem;
+ }
+
+ .sm\:-m-12 {
+ margin: -3rem;
+ }
+
+ .sm\:-m-16 {
+ margin: -4rem;
+ }
+
+ .sm\:-m-20 {
+ margin: -5rem;
+ }
+
+ .sm\:-m-24 {
+ margin: -6rem;
+ }
+
+ .sm\:-m-32 {
+ margin: -8rem;
+ }
+
+ .sm\:-m-40 {
+ margin: -10rem;
+ }
+
+ .sm\:-m-48 {
+ margin: -12rem;
+ }
+
+ .sm\:-m-56 {
+ margin: -14rem;
+ }
+
+ .sm\:-m-64 {
+ margin: -16rem;
+ }
+
+ .sm\:-m-px {
+ margin: -1px;
+ }
+
+ .sm\:my-0 {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .sm\:mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+ }
+
+ .sm\:my-1 {
+ margin-top: 0.25rem;
+ margin-bottom: 0.25rem;
+ }
+
+ .sm\:mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+ }
+
+ .sm\:my-2 {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .sm\:mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+ }
+
+ .sm\:my-3 {
+ margin-top: 0.75rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .sm\:mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+ }
+
+ .sm\:my-4 {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .sm\:mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+ }
+
+ .sm\:my-5 {
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+ }
+
+ .sm\:mx-5 {
+ margin-left: 1.25rem;
+ margin-right: 1.25rem;
+ }
+
+ .sm\:my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .sm\:mx-6 {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .sm\:my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .sm\:mx-8 {
+ margin-left: 2rem;
+ margin-right: 2rem;
+ }
+
+ .sm\:my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+ }
+
+ .sm\:mx-10 {
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+ }
+
+ .sm\:my-12 {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+ }
+
+ .sm\:mx-12 {
+ margin-left: 3rem;
+ margin-right: 3rem;
+ }
+
+ .sm\:my-16 {
+ margin-top: 4rem;
+ margin-bottom: 4rem;
+ }
+
+ .sm\:mx-16 {
+ margin-left: 4rem;
+ margin-right: 4rem;
+ }
+
+ .sm\:my-20 {
+ margin-top: 5rem;
+ margin-bottom: 5rem;
+ }
+
+ .sm\:mx-20 {
+ margin-left: 5rem;
+ margin-right: 5rem;
+ }
+
+ .sm\:my-24 {
+ margin-top: 6rem;
+ margin-bottom: 6rem;
+ }
+
+ .sm\:mx-24 {
+ margin-left: 6rem;
+ margin-right: 6rem;
+ }
+
+ .sm\:my-32 {
+ margin-top: 8rem;
+ margin-bottom: 8rem;
+ }
+
+ .sm\:mx-32 {
+ margin-left: 8rem;
+ margin-right: 8rem;
+ }
+
+ .sm\:my-40 {
+ margin-top: 10rem;
+ margin-bottom: 10rem;
+ }
+
+ .sm\:mx-40 {
+ margin-left: 10rem;
+ margin-right: 10rem;
+ }
+
+ .sm\:my-48 {
+ margin-top: 12rem;
+ margin-bottom: 12rem;
+ }
+
+ .sm\:mx-48 {
+ margin-left: 12rem;
+ margin-right: 12rem;
+ }
+
+ .sm\:my-56 {
+ margin-top: 14rem;
+ margin-bottom: 14rem;
+ }
+
+ .sm\:mx-56 {
+ margin-left: 14rem;
+ margin-right: 14rem;
+ }
+
+ .sm\:my-64 {
+ margin-top: 16rem;
+ margin-bottom: 16rem;
+ }
+
+ .sm\:mx-64 {
+ margin-left: 16rem;
+ margin-right: 16rem;
+ }
+
+ .sm\:my-auto {
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+
+ .sm\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .sm\:my-px {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ }
+
+ .sm\:mx-px {
+ margin-left: 1px;
+ margin-right: 1px;
+ }
+
+ .sm\:-my-1 {
+ margin-top: -0.25rem;
+ margin-bottom: -0.25rem;
+ }
+
+ .sm\:-mx-1 {
+ margin-left: -0.25rem;
+ margin-right: -0.25rem;
+ }
+
+ .sm\:-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+ }
+
+ .sm\:-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+ }
+
+ .sm\:-my-3 {
+ margin-top: -0.75rem;
+ margin-bottom: -0.75rem;
+ }
+
+ .sm\:-mx-3 {
+ margin-left: -0.75rem;
+ margin-right: -0.75rem;
+ }
+
+ .sm\:-my-4 {
+ margin-top: -1rem;
+ margin-bottom: -1rem;
+ }
+
+ .sm\:-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+ }
+
+ .sm\:-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+ }
+
+ .sm\:-mx-5 {
+ margin-left: -1.25rem;
+ margin-right: -1.25rem;
+ }
+
+ .sm\:-my-6 {
+ margin-top: -1.5rem;
+ margin-bottom: -1.5rem;
+ }
+
+ .sm\:-mx-6 {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+ }
+
+ .sm\:-my-8 {
+ margin-top: -2rem;
+ margin-bottom: -2rem;
+ }
+
+ .sm\:-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+ }
+
+ .sm\:-my-10 {
+ margin-top: -2.5rem;
+ margin-bottom: -2.5rem;
+ }
+
+ .sm\:-mx-10 {
+ margin-left: -2.5rem;
+ margin-right: -2.5rem;
+ }
+
+ .sm\:-my-12 {
+ margin-top: -3rem;
+ margin-bottom: -3rem;
+ }
+
+ .sm\:-mx-12 {
+ margin-left: -3rem;
+ margin-right: -3rem;
+ }
+
+ .sm\:-my-16 {
+ margin-top: -4rem;
+ margin-bottom: -4rem;
+ }
+
+ .sm\:-mx-16 {
+ margin-left: -4rem;
+ margin-right: -4rem;
+ }
+
+ .sm\:-my-20 {
+ margin-top: -5rem;
+ margin-bottom: -5rem;
+ }
+
+ .sm\:-mx-20 {
+ margin-left: -5rem;
+ margin-right: -5rem;
+ }
+
+ .sm\:-my-24 {
+ margin-top: -6rem;
+ margin-bottom: -6rem;
+ }
+
+ .sm\:-mx-24 {
+ margin-left: -6rem;
+ margin-right: -6rem;
+ }
+
+ .sm\:-my-32 {
+ margin-top: -8rem;
+ margin-bottom: -8rem;
+ }
+
+ .sm\:-mx-32 {
+ margin-left: -8rem;
+ margin-right: -8rem;
+ }
+
+ .sm\:-my-40 {
+ margin-top: -10rem;
+ margin-bottom: -10rem;
+ }
+
+ .sm\:-mx-40 {
+ margin-left: -10rem;
+ margin-right: -10rem;
+ }
+
+ .sm\:-my-48 {
+ margin-top: -12rem;
+ margin-bottom: -12rem;
+ }
+
+ .sm\:-mx-48 {
+ margin-left: -12rem;
+ margin-right: -12rem;
+ }
+
+ .sm\:-my-56 {
+ margin-top: -14rem;
+ margin-bottom: -14rem;
+ }
+
+ .sm\:-mx-56 {
+ margin-left: -14rem;
+ margin-right: -14rem;
+ }
+
+ .sm\:-my-64 {
+ margin-top: -16rem;
+ margin-bottom: -16rem;
+ }
+
+ .sm\:-mx-64 {
+ margin-left: -16rem;
+ margin-right: -16rem;
+ }
+
+ .sm\:-my-px {
+ margin-top: -1px;
+ margin-bottom: -1px;
+ }
+
+ .sm\:-mx-px {
+ margin-left: -1px;
+ margin-right: -1px;
+ }
+
+ .sm\:mt-0 {
+ margin-top: 0;
+ }
+
+ .sm\:mr-0 {
+ margin-right: 0;
+ }
+
+ .sm\:mb-0 {
+ margin-bottom: 0;
+ }
+
+ .sm\:ml-0 {
+ margin-left: 0;
+ }
+
+ .sm\:mt-1 {
+ margin-top: 0.25rem;
+ }
+
+ .sm\:mr-1 {
+ margin-right: 0.25rem;
+ }
+
+ .sm\:mb-1 {
+ margin-bottom: 0.25rem;
+ }
+
+ .sm\:ml-1 {
+ margin-left: 0.25rem;
+ }
+
+ .sm\:mt-2 {
+ margin-top: 0.5rem;
+ }
+
+ .sm\:mr-2 {
+ margin-right: 0.5rem;
+ }
+
+ .sm\:mb-2 {
+ margin-bottom: 0.5rem;
+ }
+
+ .sm\:ml-2 {
+ margin-left: 0.5rem;
+ }
+
+ .sm\:mt-3 {
+ margin-top: 0.75rem;
+ }
+
+ .sm\:mr-3 {
+ margin-right: 0.75rem;
+ }
+
+ .sm\:mb-3 {
+ margin-bottom: 0.75rem;
+ }
+
+ .sm\:ml-3 {
+ margin-left: 0.75rem;
+ }
+
+ .sm\:mt-4 {
+ margin-top: 1rem;
+ }
+
+ .sm\:mr-4 {
+ margin-right: 1rem;
+ }
+
+ .sm\:mb-4 {
+ margin-bottom: 1rem;
+ }
+
+ .sm\:ml-4 {
+ margin-left: 1rem;
+ }
+
+ .sm\:mt-5 {
+ margin-top: 1.25rem;
+ }
+
+ .sm\:mr-5 {
+ margin-right: 1.25rem;
+ }
+
+ .sm\:mb-5 {
+ margin-bottom: 1.25rem;
+ }
+
+ .sm\:ml-5 {
+ margin-left: 1.25rem;
+ }
+
+ .sm\:mt-6 {
+ margin-top: 1.5rem;
+ }
+
+ .sm\:mr-6 {
+ margin-right: 1.5rem;
+ }
+
+ .sm\:mb-6 {
+ margin-bottom: 1.5rem;
+ }
+
+ .sm\:ml-6 {
+ margin-left: 1.5rem;
+ }
+
+ .sm\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .sm\:mr-8 {
+ margin-right: 2rem;
+ }
+
+ .sm\:mb-8 {
+ margin-bottom: 2rem;
+ }
+
+ .sm\:ml-8 {
+ margin-left: 2rem;
+ }
+
+ .sm\:mt-10 {
+ margin-top: 2.5rem;
+ }
+
+ .sm\:mr-10 {
+ margin-right: 2.5rem;
+ }
+
+ .sm\:mb-10 {
+ margin-bottom: 2.5rem;
+ }
+
+ .sm\:ml-10 {
+ margin-left: 2.5rem;
+ }
+
+ .sm\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .sm\:mr-12 {
+ margin-right: 3rem;
+ }
+
+ .sm\:mb-12 {
+ margin-bottom: 3rem;
+ }
+
+ .sm\:ml-12 {
+ margin-left: 3rem;
+ }
+
+ .sm\:mt-16 {
+ margin-top: 4rem;
+ }
+
+ .sm\:mr-16 {
+ margin-right: 4rem;
+ }
+
+ .sm\:mb-16 {
+ margin-bottom: 4rem;
+ }
+
+ .sm\:ml-16 {
+ margin-left: 4rem;
+ }
+
+ .sm\:mt-20 {
+ margin-top: 5rem;
+ }
+
+ .sm\:mr-20 {
+ margin-right: 5rem;
+ }
+
+ .sm\:mb-20 {
+ margin-bottom: 5rem;
+ }
+
+ .sm\:ml-20 {
+ margin-left: 5rem;
+ }
+
+ .sm\:mt-24 {
+ margin-top: 6rem;
+ }
+
+ .sm\:mr-24 {
+ margin-right: 6rem;
+ }
+
+ .sm\:mb-24 {
+ margin-bottom: 6rem;
+ }
+
+ .sm\:ml-24 {
+ margin-left: 6rem;
+ }
+
+ .sm\:mt-32 {
+ margin-top: 8rem;
+ }
+
+ .sm\:mr-32 {
+ margin-right: 8rem;
+ }
+
+ .sm\:mb-32 {
+ margin-bottom: 8rem;
+ }
+
+ .sm\:ml-32 {
+ margin-left: 8rem;
+ }
+
+ .sm\:mt-40 {
+ margin-top: 10rem;
+ }
+
+ .sm\:mr-40 {
+ margin-right: 10rem;
+ }
+
+ .sm\:mb-40 {
+ margin-bottom: 10rem;
+ }
+
+ .sm\:ml-40 {
+ margin-left: 10rem;
+ }
+
+ .sm\:mt-48 {
+ margin-top: 12rem;
+ }
+
+ .sm\:mr-48 {
+ margin-right: 12rem;
+ }
+
+ .sm\:mb-48 {
+ margin-bottom: 12rem;
+ }
+
+ .sm\:ml-48 {
+ margin-left: 12rem;
+ }
+
+ .sm\:mt-56 {
+ margin-top: 14rem;
+ }
+
+ .sm\:mr-56 {
+ margin-right: 14rem;
+ }
+
+ .sm\:mb-56 {
+ margin-bottom: 14rem;
+ }
+
+ .sm\:ml-56 {
+ margin-left: 14rem;
+ }
+
+ .sm\:mt-64 {
+ margin-top: 16rem;
+ }
+
+ .sm\:mr-64 {
+ margin-right: 16rem;
+ }
+
+ .sm\:mb-64 {
+ margin-bottom: 16rem;
+ }
+
+ .sm\:ml-64 {
+ margin-left: 16rem;
+ }
+
+ .sm\:mt-auto {
+ margin-top: auto;
+ }
+
+ .sm\:mr-auto {
+ margin-right: auto;
+ }
+
+ .sm\:mb-auto {
+ margin-bottom: auto;
+ }
+
+ .sm\:ml-auto {
+ margin-left: auto;
+ }
+
+ .sm\:mt-px {
+ margin-top: 1px;
+ }
+
+ .sm\:mr-px {
+ margin-right: 1px;
+ }
+
+ .sm\:mb-px {
+ margin-bottom: 1px;
+ }
+
+ .sm\:ml-px {
+ margin-left: 1px;
+ }
+
+ .sm\:-mt-1 {
+ margin-top: -0.25rem;
+ }
+
+ .sm\:-mr-1 {
+ margin-right: -0.25rem;
+ }
+
+ .sm\:-mb-1 {
+ margin-bottom: -0.25rem;
+ }
+
+ .sm\:-ml-1 {
+ margin-left: -0.25rem;
+ }
+
+ .sm\:-mt-2 {
+ margin-top: -0.5rem;
+ }
+
+ .sm\:-mr-2 {
+ margin-right: -0.5rem;
+ }
+
+ .sm\:-mb-2 {
+ margin-bottom: -0.5rem;
+ }
+
+ .sm\:-ml-2 {
+ margin-left: -0.5rem;
+ }
+
+ .sm\:-mt-3 {
+ margin-top: -0.75rem;
+ }
+
+ .sm\:-mr-3 {
+ margin-right: -0.75rem;
+ }
+
+ .sm\:-mb-3 {
+ margin-bottom: -0.75rem;
+ }
+
+ .sm\:-ml-3 {
+ margin-left: -0.75rem;
+ }
+
+ .sm\:-mt-4 {
+ margin-top: -1rem;
+ }
+
+ .sm\:-mr-4 {
+ margin-right: -1rem;
+ }
+
+ .sm\:-mb-4 {
+ margin-bottom: -1rem;
+ }
+
+ .sm\:-ml-4 {
+ margin-left: -1rem;
+ }
+
+ .sm\:-mt-5 {
+ margin-top: -1.25rem;
+ }
+
+ .sm\:-mr-5 {
+ margin-right: -1.25rem;
+ }
+
+ .sm\:-mb-5 {
+ margin-bottom: -1.25rem;
+ }
+
+ .sm\:-ml-5 {
+ margin-left: -1.25rem;
+ }
+
+ .sm\:-mt-6 {
+ margin-top: -1.5rem;
+ }
+
+ .sm\:-mr-6 {
+ margin-right: -1.5rem;
+ }
+
+ .sm\:-mb-6 {
+ margin-bottom: -1.5rem;
+ }
+
+ .sm\:-ml-6 {
+ margin-left: -1.5rem;
+ }
+
+ .sm\:-mt-8 {
+ margin-top: -2rem;
+ }
+
+ .sm\:-mr-8 {
+ margin-right: -2rem;
+ }
+
+ .sm\:-mb-8 {
+ margin-bottom: -2rem;
+ }
+
+ .sm\:-ml-8 {
+ margin-left: -2rem;
+ }
+
+ .sm\:-mt-10 {
+ margin-top: -2.5rem;
+ }
+
+ .sm\:-mr-10 {
+ margin-right: -2.5rem;
+ }
+
+ .sm\:-mb-10 {
+ margin-bottom: -2.5rem;
+ }
+
+ .sm\:-ml-10 {
+ margin-left: -2.5rem;
+ }
+
+ .sm\:-mt-12 {
+ margin-top: -3rem;
+ }
+
+ .sm\:-mr-12 {
+ margin-right: -3rem;
+ }
+
+ .sm\:-mb-12 {
+ margin-bottom: -3rem;
+ }
+
+ .sm\:-ml-12 {
+ margin-left: -3rem;
+ }
+
+ .sm\:-mt-16 {
+ margin-top: -4rem;
+ }
+
+ .sm\:-mr-16 {
+ margin-right: -4rem;
+ }
+
+ .sm\:-mb-16 {
+ margin-bottom: -4rem;
+ }
+
+ .sm\:-ml-16 {
+ margin-left: -4rem;
+ }
+
+ .sm\:-mt-20 {
+ margin-top: -5rem;
+ }
+
+ .sm\:-mr-20 {
+ margin-right: -5rem;
+ }
+
+ .sm\:-mb-20 {
+ margin-bottom: -5rem;
+ }
+
+ .sm\:-ml-20 {
+ margin-left: -5rem;
+ }
+
+ .sm\:-mt-24 {
+ margin-top: -6rem;
+ }
+
+ .sm\:-mr-24 {
+ margin-right: -6rem;
+ }
+
+ .sm\:-mb-24 {
+ margin-bottom: -6rem;
+ }
+
+ .sm\:-ml-24 {
+ margin-left: -6rem;
+ }
+
+ .sm\:-mt-32 {
+ margin-top: -8rem;
+ }
+
+ .sm\:-mr-32 {
+ margin-right: -8rem;
+ }
+
+ .sm\:-mb-32 {
+ margin-bottom: -8rem;
+ }
+
+ .sm\:-ml-32 {
+ margin-left: -8rem;
+ }
+
+ .sm\:-mt-40 {
+ margin-top: -10rem;
+ }
+
+ .sm\:-mr-40 {
+ margin-right: -10rem;
+ }
+
+ .sm\:-mb-40 {
+ margin-bottom: -10rem;
+ }
+
+ .sm\:-ml-40 {
+ margin-left: -10rem;
+ }
+
+ .sm\:-mt-48 {
+ margin-top: -12rem;
+ }
+
+ .sm\:-mr-48 {
+ margin-right: -12rem;
+ }
+
+ .sm\:-mb-48 {
+ margin-bottom: -12rem;
+ }
+
+ .sm\:-ml-48 {
+ margin-left: -12rem;
+ }
+
+ .sm\:-mt-56 {
+ margin-top: -14rem;
+ }
+
+ .sm\:-mr-56 {
+ margin-right: -14rem;
+ }
+
+ .sm\:-mb-56 {
+ margin-bottom: -14rem;
+ }
+
+ .sm\:-ml-56 {
+ margin-left: -14rem;
+ }
+
+ .sm\:-mt-64 {
+ margin-top: -16rem;
+ }
+
+ .sm\:-mr-64 {
+ margin-right: -16rem;
+ }
+
+ .sm\:-mb-64 {
+ margin-bottom: -16rem;
+ }
+
+ .sm\:-ml-64 {
+ margin-left: -16rem;
+ }
+
+ .sm\:-mt-px {
+ margin-top: -1px;
+ }
+
+ .sm\:-mr-px {
+ margin-right: -1px;
+ }
+
+ .sm\:-mb-px {
+ margin-bottom: -1px;
+ }
+
+ .sm\:-ml-px {
+ margin-left: -1px;
+ }
+
+ .sm\:max-h-full {
+ max-height: 100%;
+ }
+
+ .sm\:max-h-screen {
+ max-height: 100vh;
+ }
+
+ .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-full {
+ max-width: 100%;
+ }
+
+ .sm\:min-h-0 {
+ min-height: 0;
+ }
+
+ .sm\:min-h-full {
+ min-height: 100%;
+ }
+
+ .sm\:min-h-screen {
+ min-height: 100vh;
+ }
+
+ .sm\:min-w-0 {
+ min-width: 0;
+ }
+
+ .sm\:min-w-full {
+ min-width: 100%;
+ }
+
+ .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\:opacity-0 {
+ opacity: 0;
+ }
+
+ .sm\:opacity-25 {
+ opacity: 0.25;
+ }
+
+ .sm\:opacity-50 {
+ opacity: 0.5;
+ }
+
+ .sm\:opacity-75 {
+ opacity: 0.75;
+ }
+
+ .sm\:opacity-100 {
+ opacity: 1;
+ }
+
+ .sm\:hover\:opacity-0:hover {
+ opacity: 0;
+ }
+
+ .sm\:hover\:opacity-25:hover {
+ opacity: 0.25;
+ }
+
+ .sm\:hover\:opacity-50:hover {
+ opacity: 0.5;
+ }
+
+ .sm\:hover\:opacity-75:hover {
+ opacity: 0.75;
+ }
+
+ .sm\:hover\:opacity-100:hover {
+ opacity: 1;
+ }
+
+ .sm\:focus\:opacity-0:focus {
+ opacity: 0;
+ }
+
+ .sm\:focus\:opacity-25:focus {
+ opacity: 0.25;
+ }
+
+ .sm\:focus\:opacity-50:focus {
+ opacity: 0.5;
+ }
+
+ .sm\:focus\:opacity-75:focus {
+ opacity: 0.75;
+ }
+
+ .sm\:focus\:opacity-100:focus {
+ opacity: 1;
+ }
+
+ .sm\:outline-none {
+ outline: 0;
+ }
+
+ .sm\:focus\:outline-none:focus {
+ outline: 0;
+ }
+
+ .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\:scrolling-touch {
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .sm\:scrolling-auto {
+ -webkit-overflow-scrolling: auto;
+ }
+
+ .sm\:p-0 {
+ padding: 0;
+ }
+
+ .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-8 {
+ padding: 2rem;
+ }
+
+ .sm\:p-10 {
+ padding: 2.5rem;
+ }
+
+ .sm\:p-12 {
+ padding: 3rem;
+ }
+
+ .sm\:p-16 {
+ padding: 4rem;
+ }
+
+ .sm\:p-20 {
+ padding: 5rem;
+ }
+
+ .sm\:p-24 {
+ padding: 6rem;
+ }
+
+ .sm\:p-32 {
+ padding: 8rem;
+ }
+
+ .sm\:p-40 {
+ padding: 10rem;
+ }
+
+ .sm\:p-48 {
+ padding: 12rem;
+ }
+
+ .sm\:p-56 {
+ padding: 14rem;
+ }
+
+ .sm\:p-64 {
+ padding: 16rem;
+ }
+
+ .sm\:p-px {
+ padding: 1px;
+ }
+
+ .sm\:py-0 {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+
+ .sm\:px-0 {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .sm\:py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ }
+
+ .sm\:px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+ }
+
+ .sm\:py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ }
+
+ .sm\:px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ }
+
+ .sm\:py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ }
+
+ .sm\:px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ }
+
+ .sm\:py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+
+ .sm\:px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+
+ .sm\:py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+ }
+
+ .sm\:px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ }
+
+ .sm\:py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+ }
+
+ .sm\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .sm\:py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+ }
+
+ .sm\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
+
+ .sm\:py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+ }
+
+ .sm\:px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+ }
+
+ .sm\:py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ .sm\:px-12 {
+ padding-left: 3rem;
+ padding-right: 3rem;
+ }
+
+ .sm\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .sm\:px-16 {
+ padding-left: 4rem;
+ padding-right: 4rem;
+ }
+
+ .sm\:py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+ }
+
+ .sm\:px-20 {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .sm\:py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+ }
+
+ .sm\:px-24 {
+ padding-left: 6rem;
+ padding-right: 6rem;
+ }
+
+ .sm\:py-32 {
+ padding-top: 8rem;
+ padding-bottom: 8rem;
+ }
+
+ .sm\:px-32 {
+ padding-left: 8rem;
+ padding-right: 8rem;
+ }
+
+ .sm\:py-40 {
+ padding-top: 10rem;
+ padding-bottom: 10rem;
+ }
+
+ .sm\:px-40 {
+ padding-left: 10rem;
+ padding-right: 10rem;
+ }
+
+ .sm\:py-48 {
+ padding-top: 12rem;
+ padding-bottom: 12rem;
+ }
+
+ .sm\:px-48 {
+ padding-left: 12rem;
+ padding-right: 12rem;
+ }
+
+ .sm\:py-56 {
+ padding-top: 14rem;
+ padding-bottom: 14rem;
+ }
+
+ .sm\:px-56 {
+ padding-left: 14rem;
+ padding-right: 14rem;
+ }
+
+ .sm\:py-64 {
+ padding-top: 16rem;
+ padding-bottom: 16rem;
+ }
+
+ .sm\:px-64 {
+ padding-left: 16rem;
+ padding-right: 16rem;
+ }
+
+ .sm\:py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+ }
+
+ .sm\:px-px {
+ padding-left: 1px;
+ padding-right: 1px;
+ }
+
+ .sm\:pt-0 {
+ padding-top: 0;
+ }
+
+ .sm\:pr-0 {
+ padding-right: 0;
+ }
+
+ .sm\:pb-0 {
+ padding-bottom: 0;
+ }
+
+ .sm\:pl-0 {
+ padding-left: 0;
+ }
+
+ .sm\:pt-1 {
+ padding-top: 0.25rem;
+ }
+
+ .sm\:pr-1 {
+ padding-right: 0.25rem;
+ }
+
+ .sm\:pb-1 {
+ padding-bottom: 0.25rem;
+ }
+
+ .sm\:pl-1 {
+ padding-left: 0.25rem;
+ }
+
+ .sm\:pt-2 {
+ padding-top: 0.5rem;
+ }
+
+ .sm\:pr-2 {
+ padding-right: 0.5rem;
+ }
+
+ .sm\:pb-2 {
+ padding-bottom: 0.5rem;
+ }
+
+ .sm\:pl-2 {
+ padding-left: 0.5rem;
+ }
+
+ .sm\:pt-3 {
+ padding-top: 0.75rem;
+ }
+
+ .sm\:pr-3 {
+ padding-right: 0.75rem;
+ }
+
+ .sm\:pb-3 {
+ padding-bottom: 0.75rem;
+ }
+
+ .sm\:pl-3 {
+ padding-left: 0.75rem;
+ }
+
+ .sm\:pt-4 {
+ padding-top: 1rem;
+ }
+
+ .sm\:pr-4 {
+ padding-right: 1rem;
+ }
+
+ .sm\:pb-4 {
+ padding-bottom: 1rem;
+ }
+
+ .sm\:pl-4 {
+ padding-left: 1rem;
+ }
+
+ .sm\:pt-5 {
+ padding-top: 1.25rem;
+ }
+
+ .sm\:pr-5 {
+ padding-right: 1.25rem;
+ }
+
+ .sm\:pb-5 {
+ padding-bottom: 1.25rem;
+ }
+
+ .sm\:pl-5 {
+ padding-left: 1.25rem;
+ }
+
+ .sm\:pt-6 {
+ padding-top: 1.5rem;
+ }
+
+ .sm\:pr-6 {
+ padding-right: 1.5rem;
+ }
+
+ .sm\:pb-6 {
+ padding-bottom: 1.5rem;
+ }
+
+ .sm\:pl-6 {
+ padding-left: 1.5rem;
+ }
+
+ .sm\:pt-8 {
+ padding-top: 2rem;
+ }
+
+ .sm\:pr-8 {
+ padding-right: 2rem;
+ }
+
+ .sm\:pb-8 {
+ padding-bottom: 2rem;
+ }
+
+ .sm\:pl-8 {
+ padding-left: 2rem;
+ }
+
+ .sm\:pt-10 {
+ padding-top: 2.5rem;
+ }
+
+ .sm\:pr-10 {
+ padding-right: 2.5rem;
+ }
+
+ .sm\:pb-10 {
+ padding-bottom: 2.5rem;
+ }
+
+ .sm\:pl-10 {
+ padding-left: 2.5rem;
+ }
+
+ .sm\:pt-12 {
+ padding-top: 3rem;
+ }
+
+ .sm\:pr-12 {
+ padding-right: 3rem;
+ }
+
+ .sm\:pb-12 {
+ padding-bottom: 3rem;
+ }
+
+ .sm\:pl-12 {
+ padding-left: 3rem;
+ }
+
+ .sm\:pt-16 {
+ padding-top: 4rem;
+ }
+
+ .sm\:pr-16 {
+ padding-right: 4rem;
+ }
+
+ .sm\:pb-16 {
+ padding-bottom: 4rem;
+ }
+
+ .sm\:pl-16 {
+ padding-left: 4rem;
+ }
+
+ .sm\:pt-20 {
+ padding-top: 5rem;
+ }
+
+ .sm\:pr-20 {
+ padding-right: 5rem;
+ }
+
+ .sm\:pb-20 {
+ padding-bottom: 5rem;
+ }
+
+ .sm\:pl-20 {
+ padding-left: 5rem;
+ }
+
+ .sm\:pt-24 {
+ padding-top: 6rem;
+ }
+
+ .sm\:pr-24 {
+ padding-right: 6rem;
+ }
+
+ .sm\:pb-24 {
+ padding-bottom: 6rem;
+ }
+
+ .sm\:pl-24 {
+ padding-left: 6rem;
+ }
+
+ .sm\:pt-32 {
+ padding-top: 8rem;
+ }
+
+ .sm\:pr-32 {
+ padding-right: 8rem;
+ }
+
+ .sm\:pb-32 {
+ padding-bottom: 8rem;
+ }
+
+ .sm\:pl-32 {
+ padding-left: 8rem;
+ }
+
+ .sm\:pt-40 {
+ padding-top: 10rem;
+ }
+
+ .sm\:pr-40 {
+ padding-right: 10rem;
+ }
+
+ .sm\:pb-40 {
+ padding-bottom: 10rem;
+ }
+
+ .sm\:pl-40 {
+ padding-left: 10rem;
+ }
+
+ .sm\:pt-48 {
+ padding-top: 12rem;
+ }
+
+ .sm\:pr-48 {
+ padding-right: 12rem;
+ }
+
+ .sm\:pb-48 {
+ padding-bottom: 12rem;
+ }
+
+ .sm\:pl-48 {
+ padding-left: 12rem;
+ }
+
+ .sm\:pt-56 {
+ padding-top: 14rem;
+ }
+
+ .sm\:pr-56 {
+ padding-right: 14rem;
+ }
+
+ .sm\:pb-56 {
+ padding-bottom: 14rem;
+ }
+
+ .sm\:pl-56 {
+ padding-left: 14rem;
+ }
+
+ .sm\:pt-64 {
+ padding-top: 16rem;
+ }
+
+ .sm\:pr-64 {
+ padding-right: 16rem;
+ }
+
+ .sm\:pb-64 {
+ padding-bottom: 16rem;
+ }
+
+ .sm\:pl-64 {
+ padding-left: 16rem;
+ }
+
+ .sm\:pt-px {
+ padding-top: 1px;
+ }
+
+ .sm\:pr-px {
+ padding-right: 1px;
+ }
+
+ .sm\:pb-px {
+ padding-bottom: 1px;
+ }
+
+ .sm\:pl-px {
+ padding-left: 1px;
+ }
+
+ .sm\:placeholder-transparent::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:placeholder-transparent::-moz-placeholder {
+ color: transparent;
+ }
+
+ .sm\:placeholder-transparent:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:placeholder-transparent::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:placeholder-transparent::placeholder {
+ color: transparent;
+ }
+
+ .sm\:placeholder-black::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:placeholder-black::-moz-placeholder {
+ color: #000;
+ }
+
+ .sm\:placeholder-black:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:placeholder-black::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:placeholder-black::placeholder {
+ color: #000;
+ }
+
+ .sm\:placeholder-white::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:placeholder-white::-moz-placeholder {
+ color: #fff;
+ }
+
+ .sm\:placeholder-white:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:placeholder-white::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:placeholder-white::placeholder {
+ color: #fff;
+ }
+
+ .sm\:placeholder-gray-100::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:placeholder-gray-100::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:placeholder-gray-100:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:placeholder-gray-100::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:placeholder-gray-100::placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:placeholder-gray-200::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:placeholder-gray-200::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:placeholder-gray-200:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:placeholder-gray-200::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:placeholder-gray-200::placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:placeholder-gray-300::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:placeholder-gray-300::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:placeholder-gray-300:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:placeholder-gray-300::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:placeholder-gray-300::placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:placeholder-gray-400::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:placeholder-gray-400::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:placeholder-gray-400:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:placeholder-gray-400::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:placeholder-gray-400::placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:placeholder-gray-500::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:placeholder-gray-500::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:placeholder-gray-500:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:placeholder-gray-500::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:placeholder-gray-500::placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:placeholder-gray-600::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:placeholder-gray-600::-moz-placeholder {
+ color: #718096;
+ }
+
+ .sm\:placeholder-gray-600:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:placeholder-gray-600::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:placeholder-gray-600::placeholder {
+ color: #718096;
+ }
+
+ .sm\:placeholder-gray-700::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:placeholder-gray-700::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:placeholder-gray-700:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:placeholder-gray-700::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:placeholder-gray-700::placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:placeholder-gray-800::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:placeholder-gray-800::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:placeholder-gray-800:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:placeholder-gray-800::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:placeholder-gray-800::placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:placeholder-gray-900::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:placeholder-gray-900::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:placeholder-gray-900:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:placeholder-gray-900::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:placeholder-gray-900::placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:placeholder-red-100::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:placeholder-red-100::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:placeholder-red-100:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:placeholder-red-100::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:placeholder-red-100::placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:placeholder-red-200::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:placeholder-red-200::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:placeholder-red-200:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:placeholder-red-200::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:placeholder-red-200::placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:placeholder-red-300::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:placeholder-red-300::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:placeholder-red-300:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:placeholder-red-300::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:placeholder-red-300::placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:placeholder-red-400::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:placeholder-red-400::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:placeholder-red-400:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:placeholder-red-400::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:placeholder-red-400::placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:placeholder-red-500::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:placeholder-red-500::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:placeholder-red-500:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:placeholder-red-500::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:placeholder-red-500::placeholder {
+ color: #f56565;
+ }
+
+ .sm\:placeholder-red-600::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:placeholder-red-600::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:placeholder-red-600:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:placeholder-red-600::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:placeholder-red-600::placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:placeholder-red-700::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:placeholder-red-700::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:placeholder-red-700:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:placeholder-red-700::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:placeholder-red-700::placeholder {
+ color: #c53030;
+ }
+
+ .sm\:placeholder-red-800::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:placeholder-red-800::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:placeholder-red-800:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:placeholder-red-800::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:placeholder-red-800::placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:placeholder-red-900::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:placeholder-red-900::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:placeholder-red-900:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:placeholder-red-900::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:placeholder-red-900::placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:placeholder-orange-100::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:placeholder-orange-100::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:placeholder-orange-100:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:placeholder-orange-100::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:placeholder-orange-100::placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:placeholder-orange-200::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:placeholder-orange-200::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:placeholder-orange-200:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:placeholder-orange-200::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:placeholder-orange-200::placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:placeholder-orange-300::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:placeholder-orange-300::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:placeholder-orange-300:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:placeholder-orange-300::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:placeholder-orange-300::placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:placeholder-orange-400::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:placeholder-orange-400::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:placeholder-orange-400:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:placeholder-orange-400::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:placeholder-orange-400::placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:placeholder-orange-500::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:placeholder-orange-500::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:placeholder-orange-500:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:placeholder-orange-500::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:placeholder-orange-500::placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:placeholder-orange-600::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:placeholder-orange-600::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:placeholder-orange-600:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:placeholder-orange-600::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:placeholder-orange-600::placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:placeholder-orange-700::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:placeholder-orange-700::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:placeholder-orange-700:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:placeholder-orange-700::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:placeholder-orange-700::placeholder {
+ color: #c05621;
+ }
+
+ .sm\:placeholder-orange-800::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:placeholder-orange-800::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:placeholder-orange-800:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:placeholder-orange-800::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:placeholder-orange-800::placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:placeholder-orange-900::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:placeholder-orange-900::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:placeholder-orange-900:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:placeholder-orange-900::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:placeholder-orange-900::placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:placeholder-yellow-100::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:placeholder-yellow-100::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:placeholder-yellow-100:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:placeholder-yellow-100::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:placeholder-yellow-100::placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:placeholder-yellow-200::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:placeholder-yellow-200::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:placeholder-yellow-200:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:placeholder-yellow-200::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:placeholder-yellow-200::placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:placeholder-yellow-300::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:placeholder-yellow-300::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:placeholder-yellow-300:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:placeholder-yellow-300::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:placeholder-yellow-300::placeholder {
+ color: #faf089;
+ }
+
+ .sm\:placeholder-yellow-400::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:placeholder-yellow-400::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:placeholder-yellow-400:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:placeholder-yellow-400::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:placeholder-yellow-400::placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:placeholder-yellow-500::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:placeholder-yellow-500::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:placeholder-yellow-500:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:placeholder-yellow-500::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:placeholder-yellow-500::placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:placeholder-yellow-600::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:placeholder-yellow-600::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:placeholder-yellow-600:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:placeholder-yellow-600::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:placeholder-yellow-600::placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:placeholder-yellow-700::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:placeholder-yellow-700::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:placeholder-yellow-700:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:placeholder-yellow-700::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:placeholder-yellow-700::placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:placeholder-yellow-800::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:placeholder-yellow-800::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:placeholder-yellow-800:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:placeholder-yellow-800::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:placeholder-yellow-800::placeholder {
+ color: #975a16;
+ }
+
+ .sm\:placeholder-yellow-900::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:placeholder-yellow-900::-moz-placeholder {
+ color: #744210;
+ }
+
+ .sm\:placeholder-yellow-900:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:placeholder-yellow-900::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:placeholder-yellow-900::placeholder {
+ color: #744210;
+ }
+
+ .sm\:placeholder-green-100::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:placeholder-green-100::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:placeholder-green-100:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:placeholder-green-100::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:placeholder-green-100::placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:placeholder-green-200::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:placeholder-green-200::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:placeholder-green-200:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:placeholder-green-200::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:placeholder-green-200::placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:placeholder-green-300::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:placeholder-green-300::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:placeholder-green-300:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:placeholder-green-300::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:placeholder-green-300::placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:placeholder-green-400::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:placeholder-green-400::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:placeholder-green-400:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:placeholder-green-400::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:placeholder-green-400::placeholder {
+ color: #68d391;
+ }
+
+ .sm\:placeholder-green-500::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:placeholder-green-500::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:placeholder-green-500:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:placeholder-green-500::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:placeholder-green-500::placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:placeholder-green-600::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:placeholder-green-600::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:placeholder-green-600:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:placeholder-green-600::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:placeholder-green-600::placeholder {
+ color: #38a169;
+ }
+
+ .sm\:placeholder-green-700::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:placeholder-green-700::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:placeholder-green-700:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:placeholder-green-700::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:placeholder-green-700::placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:placeholder-green-800::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:placeholder-green-800::-moz-placeholder {
+ color: #276749;
+ }
+
+ .sm\:placeholder-green-800:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:placeholder-green-800::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:placeholder-green-800::placeholder {
+ color: #276749;
+ }
+
+ .sm\:placeholder-green-900::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:placeholder-green-900::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:placeholder-green-900:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:placeholder-green-900::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:placeholder-green-900::placeholder {
+ color: #22543d;
+ }
+
+ .sm\:placeholder-teal-100::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:placeholder-teal-100::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:placeholder-teal-100:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:placeholder-teal-100::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:placeholder-teal-100::placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:placeholder-teal-200::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:placeholder-teal-200::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:placeholder-teal-200:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:placeholder-teal-200::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:placeholder-teal-200::placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:placeholder-teal-300::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:placeholder-teal-300::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:placeholder-teal-300:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:placeholder-teal-300::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:placeholder-teal-300::placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:placeholder-teal-400::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:placeholder-teal-400::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:placeholder-teal-400:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:placeholder-teal-400::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:placeholder-teal-400::placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:placeholder-teal-500::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:placeholder-teal-500::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:placeholder-teal-500:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:placeholder-teal-500::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:placeholder-teal-500::placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:placeholder-teal-600::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:placeholder-teal-600::-moz-placeholder {
+ color: #319795;
+ }
+
+ .sm\:placeholder-teal-600:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:placeholder-teal-600::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:placeholder-teal-600::placeholder {
+ color: #319795;
+ }
+
+ .sm\:placeholder-teal-700::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:placeholder-teal-700::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:placeholder-teal-700:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:placeholder-teal-700::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:placeholder-teal-700::placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:placeholder-teal-800::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:placeholder-teal-800::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:placeholder-teal-800:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:placeholder-teal-800::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:placeholder-teal-800::placeholder {
+ color: #285e61;
+ }
+
+ .sm\:placeholder-teal-900::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:placeholder-teal-900::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:placeholder-teal-900:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:placeholder-teal-900::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:placeholder-teal-900::placeholder {
+ color: #234e52;
+ }
+
+ .sm\:placeholder-blue-100::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:placeholder-blue-100::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:placeholder-blue-100:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:placeholder-blue-100::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:placeholder-blue-100::placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:placeholder-blue-200::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:placeholder-blue-200::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:placeholder-blue-200:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:placeholder-blue-200::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:placeholder-blue-200::placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:placeholder-blue-300::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:placeholder-blue-300::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:placeholder-blue-300:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:placeholder-blue-300::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:placeholder-blue-300::placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:placeholder-blue-400::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:placeholder-blue-400::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:placeholder-blue-400:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:placeholder-blue-400::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:placeholder-blue-400::placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:placeholder-blue-500::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:placeholder-blue-500::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:placeholder-blue-500:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:placeholder-blue-500::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:placeholder-blue-500::placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:placeholder-blue-600::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:placeholder-blue-600::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:placeholder-blue-600:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:placeholder-blue-600::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:placeholder-blue-600::placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:placeholder-blue-700::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:placeholder-blue-700::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:placeholder-blue-700:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:placeholder-blue-700::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:placeholder-blue-700::placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:placeholder-blue-800::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:placeholder-blue-800::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:placeholder-blue-800:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:placeholder-blue-800::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:placeholder-blue-800::placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:placeholder-blue-900::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:placeholder-blue-900::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:placeholder-blue-900:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:placeholder-blue-900::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:placeholder-blue-900::placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:placeholder-indigo-100::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:placeholder-indigo-100::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:placeholder-indigo-100:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:placeholder-indigo-100::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:placeholder-indigo-100::placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:placeholder-indigo-200::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:placeholder-indigo-200::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:placeholder-indigo-200:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:placeholder-indigo-200::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:placeholder-indigo-200::placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:placeholder-indigo-300::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:placeholder-indigo-300::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:placeholder-indigo-300:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:placeholder-indigo-300::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:placeholder-indigo-300::placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:placeholder-indigo-400::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:placeholder-indigo-400::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:placeholder-indigo-400:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:placeholder-indigo-400::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:placeholder-indigo-400::placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:placeholder-indigo-500::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:placeholder-indigo-500::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:placeholder-indigo-500:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:placeholder-indigo-500::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:placeholder-indigo-500::placeholder {
+ color: #667eea;
+ }
+
+ .sm\:placeholder-indigo-600::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:placeholder-indigo-600::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:placeholder-indigo-600:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:placeholder-indigo-600::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:placeholder-indigo-600::placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:placeholder-indigo-700::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:placeholder-indigo-700::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:placeholder-indigo-700:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:placeholder-indigo-700::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:placeholder-indigo-700::placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:placeholder-indigo-800::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:placeholder-indigo-800::-moz-placeholder {
+ color: #434190;
+ }
+
+ .sm\:placeholder-indigo-800:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:placeholder-indigo-800::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:placeholder-indigo-800::placeholder {
+ color: #434190;
+ }
+
+ .sm\:placeholder-indigo-900::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:placeholder-indigo-900::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:placeholder-indigo-900:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:placeholder-indigo-900::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:placeholder-indigo-900::placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:placeholder-purple-100::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:placeholder-purple-100::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:placeholder-purple-100:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:placeholder-purple-100::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:placeholder-purple-100::placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:placeholder-purple-200::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:placeholder-purple-200::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:placeholder-purple-200:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:placeholder-purple-200::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:placeholder-purple-200::placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:placeholder-purple-300::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:placeholder-purple-300::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:placeholder-purple-300:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:placeholder-purple-300::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:placeholder-purple-300::placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:placeholder-purple-400::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:placeholder-purple-400::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:placeholder-purple-400:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:placeholder-purple-400::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:placeholder-purple-400::placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:placeholder-purple-500::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:placeholder-purple-500::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:placeholder-purple-500:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:placeholder-purple-500::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:placeholder-purple-500::placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:placeholder-purple-600::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:placeholder-purple-600::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:placeholder-purple-600:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:placeholder-purple-600::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:placeholder-purple-600::placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:placeholder-purple-700::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:placeholder-purple-700::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:placeholder-purple-700:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:placeholder-purple-700::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:placeholder-purple-700::placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:placeholder-purple-800::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:placeholder-purple-800::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:placeholder-purple-800:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:placeholder-purple-800::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:placeholder-purple-800::placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:placeholder-purple-900::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:placeholder-purple-900::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:placeholder-purple-900:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:placeholder-purple-900::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:placeholder-purple-900::placeholder {
+ color: #44337a;
+ }
+
+ .sm\:placeholder-pink-100::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:placeholder-pink-100::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:placeholder-pink-100:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:placeholder-pink-100::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:placeholder-pink-100::placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:placeholder-pink-200::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:placeholder-pink-200::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:placeholder-pink-200:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:placeholder-pink-200::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:placeholder-pink-200::placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:placeholder-pink-300::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:placeholder-pink-300::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:placeholder-pink-300:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:placeholder-pink-300::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:placeholder-pink-300::placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:placeholder-pink-400::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:placeholder-pink-400::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:placeholder-pink-400:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:placeholder-pink-400::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:placeholder-pink-400::placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:placeholder-pink-500::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:placeholder-pink-500::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:placeholder-pink-500:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:placeholder-pink-500::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:placeholder-pink-500::placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:placeholder-pink-600::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:placeholder-pink-600::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:placeholder-pink-600:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:placeholder-pink-600::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:placeholder-pink-600::placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:placeholder-pink-700::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:placeholder-pink-700::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:placeholder-pink-700:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:placeholder-pink-700::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:placeholder-pink-700::placeholder {
+ color: #b83280;
+ }
+
+ .sm\:placeholder-pink-800::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:placeholder-pink-800::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:placeholder-pink-800:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:placeholder-pink-800::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:placeholder-pink-800::placeholder {
+ color: #97266d;
+ }
+
+ .sm\:placeholder-pink-900::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:placeholder-pink-900::-moz-placeholder {
+ color: #702459;
+ }
+
+ .sm\:placeholder-pink-900:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:placeholder-pink-900::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:placeholder-pink-900::placeholder {
+ color: #702459;
+ }
+
+ .sm\:focus\:placeholder-transparent:focus::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:focus\:placeholder-transparent:focus::-moz-placeholder {
+ color: transparent;
+ }
+
+ .sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:focus\:placeholder-transparent:focus::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .sm\:focus\:placeholder-transparent:focus::placeholder {
+ color: transparent;
+ }
+
+ .sm\:focus\:placeholder-black:focus::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:focus\:placeholder-black:focus::-moz-placeholder {
+ color: #000;
+ }
+
+ .sm\:focus\:placeholder-black:focus:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:focus\:placeholder-black:focus::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .sm\:focus\:placeholder-black:focus::placeholder {
+ color: #000;
+ }
+
+ .sm\:focus\:placeholder-white:focus::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:focus\:placeholder-white:focus::-moz-placeholder {
+ color: #fff;
+ }
+
+ .sm\:focus\:placeholder-white:focus:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:focus\:placeholder-white:focus::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .sm\:focus\:placeholder-white:focus::placeholder {
+ color: #fff;
+ }
+
+ .sm\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:placeholder-gray-100:focus::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:placeholder-gray-100:focus::placeholder {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:placeholder-gray-200:focus::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:placeholder-gray-200:focus::placeholder {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:placeholder-gray-300:focus::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:placeholder-gray-300:focus::placeholder {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:placeholder-gray-400:focus::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:placeholder-gray-400:focus::placeholder {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:placeholder-gray-500:focus::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:placeholder-gray-500:focus::placeholder {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder {
+ color: #718096;
+ }
+
+ .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:focus\:placeholder-gray-600:focus::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .sm\:focus\:placeholder-gray-600:focus::placeholder {
+ color: #718096;
+ }
+
+ .sm\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:placeholder-gray-700:focus::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:placeholder-gray-700:focus::placeholder {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:placeholder-gray-800:focus::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:placeholder-gray-800:focus::placeholder {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:placeholder-gray-900:focus::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:placeholder-gray-900:focus::placeholder {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:placeholder-red-100:focus::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:placeholder-red-100:focus::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:placeholder-red-100:focus::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:placeholder-red-100:focus::placeholder {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:placeholder-red-200:focus::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:placeholder-red-200:focus::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:placeholder-red-200:focus::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:placeholder-red-200:focus::placeholder {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:placeholder-red-300:focus::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:placeholder-red-300:focus::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:placeholder-red-300:focus::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:placeholder-red-300:focus::placeholder {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:placeholder-red-400:focus::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:placeholder-red-400:focus::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:placeholder-red-400:focus::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:placeholder-red-400:focus::placeholder {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:placeholder-red-500:focus::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:focus\:placeholder-red-500:focus::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:focus\:placeholder-red-500:focus::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .sm\:focus\:placeholder-red-500:focus::placeholder {
+ color: #f56565;
+ }
+
+ .sm\:focus\:placeholder-red-600:focus::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:placeholder-red-600:focus::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:placeholder-red-600:focus::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:placeholder-red-600:focus::placeholder {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:placeholder-red-700:focus::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:focus\:placeholder-red-700:focus::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:focus\:placeholder-red-700:focus::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .sm\:focus\:placeholder-red-700:focus::placeholder {
+ color: #c53030;
+ }
+
+ .sm\:focus\:placeholder-red-800:focus::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:placeholder-red-800:focus::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:placeholder-red-800:focus::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:placeholder-red-800:focus::placeholder {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:placeholder-red-900:focus::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:placeholder-red-900:focus::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:placeholder-red-900:focus::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:placeholder-red-900:focus::placeholder {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:placeholder-orange-100:focus::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:placeholder-orange-100:focus::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:placeholder-orange-100:focus:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:placeholder-orange-100:focus::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:placeholder-orange-100:focus::placeholder {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:placeholder-orange-200:focus::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:placeholder-orange-200:focus::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:placeholder-orange-200:focus:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:placeholder-orange-200:focus::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:placeholder-orange-200:focus::placeholder {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:placeholder-orange-300:focus::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:placeholder-orange-300:focus::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:placeholder-orange-300:focus:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:placeholder-orange-300:focus::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:placeholder-orange-300:focus::placeholder {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:placeholder-orange-400:focus::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:placeholder-orange-400:focus::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:placeholder-orange-400:focus:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:placeholder-orange-400:focus::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:placeholder-orange-400:focus::placeholder {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:placeholder-orange-500:focus::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:placeholder-orange-500:focus::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:placeholder-orange-500:focus:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:placeholder-orange-500:focus::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:placeholder-orange-500:focus::placeholder {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:placeholder-orange-600:focus::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:placeholder-orange-600:focus::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:placeholder-orange-600:focus:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:placeholder-orange-600:focus::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:placeholder-orange-600:focus::placeholder {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:placeholder-orange-700:focus::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:focus\:placeholder-orange-700:focus::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:focus\:placeholder-orange-700:focus:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:focus\:placeholder-orange-700:focus::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .sm\:focus\:placeholder-orange-700:focus::placeholder {
+ color: #c05621;
+ }
+
+ .sm\:focus\:placeholder-orange-800:focus::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:placeholder-orange-800:focus::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:placeholder-orange-800:focus:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:placeholder-orange-800:focus::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:placeholder-orange-800:focus::placeholder {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:placeholder-orange-900:focus::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:placeholder-orange-900:focus::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:placeholder-orange-900:focus:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:placeholder-orange-900:focus::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:placeholder-orange-900:focus::placeholder {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:placeholder-yellow-100:focus::placeholder {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:placeholder-yellow-200:focus::placeholder {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .sm\:focus\:placeholder-yellow-300:focus::placeholder {
+ color: #faf089;
+ }
+
+ .sm\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:placeholder-yellow-400:focus::placeholder {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:placeholder-yellow-500:focus::placeholder {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:placeholder-yellow-600:focus::placeholder {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:placeholder-yellow-700:focus::placeholder {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .sm\:focus\:placeholder-yellow-800:focus::placeholder {
+ color: #975a16;
+ }
+
+ .sm\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder {
+ color: #744210;
+ }
+
+ .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .sm\:focus\:placeholder-yellow-900:focus::placeholder {
+ color: #744210;
+ }
+
+ .sm\:focus\:placeholder-green-100:focus::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:placeholder-green-100:focus::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:placeholder-green-100:focus::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:placeholder-green-100:focus::placeholder {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:placeholder-green-200:focus::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:placeholder-green-200:focus::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:placeholder-green-200:focus::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:placeholder-green-200:focus::placeholder {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:placeholder-green-300:focus::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:placeholder-green-300:focus::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:placeholder-green-300:focus::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:placeholder-green-300:focus::placeholder {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:placeholder-green-400:focus::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:focus\:placeholder-green-400:focus::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:focus\:placeholder-green-400:focus::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .sm\:focus\:placeholder-green-400:focus::placeholder {
+ color: #68d391;
+ }
+
+ .sm\:focus\:placeholder-green-500:focus::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:placeholder-green-500:focus::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:placeholder-green-500:focus::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:placeholder-green-500:focus::placeholder {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:placeholder-green-600:focus::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:focus\:placeholder-green-600:focus::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:focus\:placeholder-green-600:focus::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .sm\:focus\:placeholder-green-600:focus::placeholder {
+ color: #38a169;
+ }
+
+ .sm\:focus\:placeholder-green-700:focus::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:placeholder-green-700:focus::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:placeholder-green-700:focus::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:placeholder-green-700:focus::placeholder {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:placeholder-green-800:focus::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:focus\:placeholder-green-800:focus::-moz-placeholder {
+ color: #276749;
+ }
+
+ .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:focus\:placeholder-green-800:focus::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .sm\:focus\:placeholder-green-800:focus::placeholder {
+ color: #276749;
+ }
+
+ .sm\:focus\:placeholder-green-900:focus::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:focus\:placeholder-green-900:focus::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:focus\:placeholder-green-900:focus::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .sm\:focus\:placeholder-green-900:focus::placeholder {
+ color: #22543d;
+ }
+
+ .sm\:focus\:placeholder-teal-100:focus::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:placeholder-teal-100:focus::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:placeholder-teal-100:focus:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:placeholder-teal-100:focus::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:placeholder-teal-100:focus::placeholder {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:placeholder-teal-200:focus::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:placeholder-teal-200:focus::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:placeholder-teal-200:focus:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:placeholder-teal-200:focus::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:placeholder-teal-200:focus::placeholder {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:placeholder-teal-300:focus::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:placeholder-teal-300:focus::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:placeholder-teal-300:focus:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:placeholder-teal-300:focus::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:placeholder-teal-300:focus::placeholder {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:placeholder-teal-400:focus::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:placeholder-teal-400:focus::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:placeholder-teal-400:focus:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:placeholder-teal-400:focus::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:placeholder-teal-400:focus::placeholder {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:placeholder-teal-500:focus::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:placeholder-teal-500:focus::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:placeholder-teal-500:focus:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:placeholder-teal-500:focus::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:placeholder-teal-500:focus::placeholder {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:placeholder-teal-600:focus::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:focus\:placeholder-teal-600:focus::-moz-placeholder {
+ color: #319795;
+ }
+
+ .sm\:focus\:placeholder-teal-600:focus:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:focus\:placeholder-teal-600:focus::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .sm\:focus\:placeholder-teal-600:focus::placeholder {
+ color: #319795;
+ }
+
+ .sm\:focus\:placeholder-teal-700:focus::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:placeholder-teal-700:focus::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:placeholder-teal-700:focus:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:placeholder-teal-700:focus::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:placeholder-teal-700:focus::placeholder {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:placeholder-teal-800:focus::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:focus\:placeholder-teal-800:focus::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:focus\:placeholder-teal-800:focus:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:focus\:placeholder-teal-800:focus::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .sm\:focus\:placeholder-teal-800:focus::placeholder {
+ color: #285e61;
+ }
+
+ .sm\:focus\:placeholder-teal-900:focus::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:focus\:placeholder-teal-900:focus::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:focus\:placeholder-teal-900:focus:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:focus\:placeholder-teal-900:focus::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .sm\:focus\:placeholder-teal-900:focus::placeholder {
+ color: #234e52;
+ }
+
+ .sm\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:placeholder-blue-100:focus::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:placeholder-blue-100:focus::placeholder {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:placeholder-blue-200:focus::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:placeholder-blue-200:focus::placeholder {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:placeholder-blue-300:focus::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:placeholder-blue-300:focus::placeholder {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:placeholder-blue-400:focus::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:placeholder-blue-400:focus::placeholder {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:placeholder-blue-500:focus::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:placeholder-blue-500:focus::placeholder {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:placeholder-blue-600:focus::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:placeholder-blue-600:focus::placeholder {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:placeholder-blue-700:focus::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:placeholder-blue-700:focus::placeholder {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:placeholder-blue-800:focus::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:placeholder-blue-800:focus::placeholder {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:placeholder-blue-900:focus::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:placeholder-blue-900:focus::placeholder {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:placeholder-indigo-100:focus::placeholder {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:placeholder-indigo-200:focus::placeholder {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:placeholder-indigo-300:focus::placeholder {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:placeholder-indigo-400:focus::placeholder {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .sm\:focus\:placeholder-indigo-500:focus::placeholder {
+ color: #667eea;
+ }
+
+ .sm\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:placeholder-indigo-600:focus::placeholder {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:placeholder-indigo-700:focus::placeholder {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder {
+ color: #434190;
+ }
+
+ .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .sm\:focus\:placeholder-indigo-800:focus::placeholder {
+ color: #434190;
+ }
+
+ .sm\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:placeholder-indigo-900:focus::placeholder {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:placeholder-purple-100:focus::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:placeholder-purple-100:focus::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:placeholder-purple-100:focus:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:placeholder-purple-100:focus::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:placeholder-purple-100:focus::placeholder {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:placeholder-purple-200:focus::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:placeholder-purple-200:focus::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:placeholder-purple-200:focus:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:placeholder-purple-200:focus::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:placeholder-purple-200:focus::placeholder {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:placeholder-purple-300:focus::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:placeholder-purple-300:focus::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:placeholder-purple-300:focus:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:placeholder-purple-300:focus::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:placeholder-purple-300:focus::placeholder {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:placeholder-purple-400:focus::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:placeholder-purple-400:focus::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:placeholder-purple-400:focus:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:placeholder-purple-400:focus::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:placeholder-purple-400:focus::placeholder {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:placeholder-purple-500:focus::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:placeholder-purple-500:focus::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:placeholder-purple-500:focus:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:placeholder-purple-500:focus::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:placeholder-purple-500:focus::placeholder {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:placeholder-purple-600:focus::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:placeholder-purple-600:focus::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:placeholder-purple-600:focus:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:placeholder-purple-600:focus::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:placeholder-purple-600:focus::placeholder {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:placeholder-purple-700:focus::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:placeholder-purple-700:focus::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:placeholder-purple-700:focus:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:placeholder-purple-700:focus::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:placeholder-purple-700:focus::placeholder {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:placeholder-purple-800:focus::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:placeholder-purple-800:focus::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:placeholder-purple-800:focus:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:placeholder-purple-800:focus::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:placeholder-purple-800:focus::placeholder {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:placeholder-purple-900:focus::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:focus\:placeholder-purple-900:focus::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:focus\:placeholder-purple-900:focus:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:focus\:placeholder-purple-900:focus::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .sm\:focus\:placeholder-purple-900:focus::placeholder {
+ color: #44337a;
+ }
+
+ .sm\:focus\:placeholder-pink-100:focus::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:placeholder-pink-100:focus::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:placeholder-pink-100:focus:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:placeholder-pink-100:focus::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:placeholder-pink-100:focus::placeholder {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:placeholder-pink-200:focus::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:placeholder-pink-200:focus::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:placeholder-pink-200:focus:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:placeholder-pink-200:focus::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:placeholder-pink-200:focus::placeholder {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:placeholder-pink-300:focus::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:placeholder-pink-300:focus::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:placeholder-pink-300:focus:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:placeholder-pink-300:focus::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:placeholder-pink-300:focus::placeholder {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:placeholder-pink-400:focus::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:placeholder-pink-400:focus::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:placeholder-pink-400:focus:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:placeholder-pink-400:focus::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:placeholder-pink-400:focus::placeholder {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:placeholder-pink-500:focus::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:placeholder-pink-500:focus::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:placeholder-pink-500:focus:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:placeholder-pink-500:focus::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:placeholder-pink-500:focus::placeholder {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:placeholder-pink-600:focus::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:placeholder-pink-600:focus::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:placeholder-pink-600:focus:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:placeholder-pink-600:focus::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:placeholder-pink-600:focus::placeholder {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:placeholder-pink-700:focus::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:focus\:placeholder-pink-700:focus::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:focus\:placeholder-pink-700:focus:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:focus\:placeholder-pink-700:focus::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .sm\:focus\:placeholder-pink-700:focus::placeholder {
+ color: #b83280;
+ }
+
+ .sm\:focus\:placeholder-pink-800:focus::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:focus\:placeholder-pink-800:focus::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:focus\:placeholder-pink-800:focus:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:focus\:placeholder-pink-800:focus::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .sm\:focus\:placeholder-pink-800:focus::placeholder {
+ color: #97266d;
+ }
+
+ .sm\:focus\:placeholder-pink-900:focus::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:focus\:placeholder-pink-900:focus::-moz-placeholder {
+ color: #702459;
+ }
+
+ .sm\:focus\:placeholder-pink-900:focus:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:focus\:placeholder-pink-900:focus::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .sm\:focus\:placeholder-pink-900:focus::placeholder {
+ color: #702459;
+ }
+
+ .sm\:pointer-events-none {
+ pointer-events: none;
+ }
+
+ .sm\:pointer-events-auto {
+ pointer-events: auto;
+ }
+
+ .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: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ }
+
+ .sm\:inset-auto {
+ top: auto;
+ right: auto;
+ bottom: auto;
+ left: auto;
+ }
+
+ .sm\:inset-y-0 {
+ top: 0;
+ bottom: 0;
+ }
+
+ .sm\:inset-x-0 {
+ right: 0;
+ left: 0;
+ }
+
+ .sm\:inset-y-auto {
+ top: auto;
+ bottom: auto;
+ }
+
+ .sm\:inset-x-auto {
+ right: auto;
+ left: auto;
+ }
+
+ .sm\:top-0 {
+ top: 0;
+ }
+
+ .sm\:right-0 {
+ right: 0;
+ }
+
+ .sm\:bottom-0 {
+ bottom: 0;
+ }
+
+ .sm\:left-0 {
+ left: 0;
+ }
+
+ .sm\:top-auto {
+ top: auto;
+ }
+
+ .sm\:right-auto {
+ right: auto;
+ }
+
+ .sm\:bottom-auto {
+ bottom: auto;
+ }
+
+ .sm\:left-auto {
+ left: auto;
+ }
+
+ .sm\:resize-none {
+ resize: none;
+ }
+
+ .sm\:resize-y {
+ resize: vertical;
+ }
+
+ .sm\:resize-x {
+ resize: horizontal;
+ }
+
+ .sm\:resize {
+ resize: both;
+ }
+
+ .sm\:shadow {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:shadow-md {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:shadow-lg {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .sm\:shadow-xl {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .sm\:shadow-2xl {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .sm\:shadow-inner {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:shadow-outline {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .sm\:shadow-none {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .sm\:hover\:shadow:hover {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:hover\:shadow-md:hover {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:hover\:shadow-lg:hover {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .sm\:hover\:shadow-xl:hover {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .sm\:hover\:shadow-2xl:hover {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .sm\:hover\:shadow-inner:hover {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:hover\:shadow-outline:hover {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .sm\:hover\:shadow-none:hover {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .sm\:focus\:shadow:focus {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:focus\:shadow-md:focus {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:focus\:shadow-lg:focus {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .sm\:focus\:shadow-xl:focus {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .sm\:focus\:shadow-2xl:focus {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .sm\:focus\:shadow-inner:focus {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .sm\:focus\:shadow-outline:focus {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .sm\:focus\:shadow-none:focus {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .sm\:fill-current {
+ fill: currentColor;
+ }
+
+ .sm\:stroke-current {
+ stroke: currentColor;
+ }
+
+ .sm\:table-auto {
+ table-layout: auto;
+ }
+
+ .sm\:table-fixed {
+ table-layout: fixed;
+ }
+
+ .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\:text-transparent {
+ color: transparent;
+ }
+
+ .sm\:text-black {
+ color: #000;
+ }
+
+ .sm\:text-white {
+ color: #fff;
+ }
+
+ .sm\:text-gray-100 {
+ color: #f7fafc;
+ }
+
+ .sm\:text-gray-200 {
+ color: #edf2f7;
+ }
+
+ .sm\:text-gray-300 {
+ color: #e2e8f0;
+ }
+
+ .sm\:text-gray-400 {
+ color: #cbd5e0;
+ }
+
+ .sm\:text-gray-500 {
+ color: #a0aec0;
+ }
+
+ .sm\:text-gray-600 {
+ color: #718096;
+ }
+
+ .sm\:text-gray-700 {
+ color: #4a5568;
+ }
+
+ .sm\:text-gray-800 {
+ color: #2d3748;
+ }
+
+ .sm\:text-gray-900 {
+ color: #1a202c;
+ }
+
+ .sm\:text-red-100 {
+ color: #fff5f5;
+ }
+
+ .sm\:text-red-200 {
+ color: #fed7d7;
+ }
+
+ .sm\:text-red-300 {
+ color: #feb2b2;
+ }
+
+ .sm\:text-red-400 {
+ color: #fc8181;
+ }
+
+ .sm\:text-red-500 {
+ color: #f56565;
+ }
+
+ .sm\:text-red-600 {
+ color: #e53e3e;
+ }
+
+ .sm\:text-red-700 {
+ color: #c53030;
+ }
+
+ .sm\:text-red-800 {
+ color: #9b2c2c;
+ }
+
+ .sm\:text-red-900 {
+ color: #742a2a;
+ }
+
+ .sm\:text-orange-100 {
+ color: #fffaf0;
+ }
+
+ .sm\:text-orange-200 {
+ color: #feebc8;
+ }
+
+ .sm\:text-orange-300 {
+ color: #fbd38d;
+ }
+
+ .sm\:text-orange-400 {
+ color: #f6ad55;
+ }
+
+ .sm\:text-orange-500 {
+ color: #ed8936;
+ }
+
+ .sm\:text-orange-600 {
+ color: #dd6b20;
+ }
+
+ .sm\:text-orange-700 {
+ color: #c05621;
+ }
+
+ .sm\:text-orange-800 {
+ color: #9c4221;
+ }
+
+ .sm\:text-orange-900 {
+ color: #7b341e;
+ }
+
+ .sm\:text-yellow-100 {
+ color: #fffff0;
+ }
+
+ .sm\:text-yellow-200 {
+ color: #fefcbf;
+ }
+
+ .sm\:text-yellow-300 {
+ color: #faf089;
+ }
+
+ .sm\:text-yellow-400 {
+ color: #f6e05e;
+ }
+
+ .sm\:text-yellow-500 {
+ color: #ecc94b;
+ }
+
+ .sm\:text-yellow-600 {
+ color: #d69e2e;
+ }
+
+ .sm\:text-yellow-700 {
+ color: #b7791f;
+ }
+
+ .sm\:text-yellow-800 {
+ color: #975a16;
+ }
+
+ .sm\:text-yellow-900 {
+ color: #744210;
+ }
+
+ .sm\:text-green-100 {
+ color: #f0fff4;
+ }
+
+ .sm\:text-green-200 {
+ color: #c6f6d5;
+ }
+
+ .sm\:text-green-300 {
+ color: #9ae6b4;
+ }
+
+ .sm\:text-green-400 {
+ color: #68d391;
+ }
+
+ .sm\:text-green-500 {
+ color: #48bb78;
+ }
+
+ .sm\:text-green-600 {
+ color: #38a169;
+ }
+
+ .sm\:text-green-700 {
+ color: #2f855a;
+ }
+
+ .sm\:text-green-800 {
+ color: #276749;
+ }
+
+ .sm\:text-green-900 {
+ color: #22543d;
+ }
+
+ .sm\:text-teal-100 {
+ color: #e6fffa;
+ }
+
+ .sm\:text-teal-200 {
+ color: #b2f5ea;
+ }
+
+ .sm\:text-teal-300 {
+ color: #81e6d9;
+ }
+
+ .sm\:text-teal-400 {
+ color: #4fd1c5;
+ }
+
+ .sm\:text-teal-500 {
+ color: #38b2ac;
+ }
+
+ .sm\:text-teal-600 {
+ color: #319795;
+ }
+
+ .sm\:text-teal-700 {
+ color: #2c7a7b;
+ }
+
+ .sm\:text-teal-800 {
+ color: #285e61;
+ }
+
+ .sm\:text-teal-900 {
+ color: #234e52;
+ }
+
+ .sm\:text-blue-100 {
+ color: #ebf8ff;
+ }
+
+ .sm\:text-blue-200 {
+ color: #bee3f8;
+ }
+
+ .sm\:text-blue-300 {
+ color: #90cdf4;
+ }
+
+ .sm\:text-blue-400 {
+ color: #63b3ed;
+ }
+
+ .sm\:text-blue-500 {
+ color: #4299e1;
+ }
+
+ .sm\:text-blue-600 {
+ color: #3182ce;
+ }
+
+ .sm\:text-blue-700 {
+ color: #2b6cb0;
+ }
+
+ .sm\:text-blue-800 {
+ color: #2c5282;
+ }
+
+ .sm\:text-blue-900 {
+ color: #2a4365;
+ }
+
+ .sm\:text-indigo-100 {
+ color: #ebf4ff;
+ }
+
+ .sm\:text-indigo-200 {
+ color: #c3dafe;
+ }
+
+ .sm\:text-indigo-300 {
+ color: #a3bffa;
+ }
+
+ .sm\:text-indigo-400 {
+ color: #7f9cf5;
+ }
+
+ .sm\:text-indigo-500 {
+ color: #667eea;
+ }
+
+ .sm\:text-indigo-600 {
+ color: #5a67d8;
+ }
+
+ .sm\:text-indigo-700 {
+ color: #4c51bf;
+ }
+
+ .sm\:text-indigo-800 {
+ color: #434190;
+ }
+
+ .sm\:text-indigo-900 {
+ color: #3c366b;
+ }
+
+ .sm\:text-purple-100 {
+ color: #faf5ff;
+ }
+
+ .sm\:text-purple-200 {
+ color: #e9d8fd;
+ }
+
+ .sm\:text-purple-300 {
+ color: #d6bcfa;
+ }
+
+ .sm\:text-purple-400 {
+ color: #b794f4;
+ }
+
+ .sm\:text-purple-500 {
+ color: #9f7aea;
+ }
+
+ .sm\:text-purple-600 {
+ color: #805ad5;
+ }
+
+ .sm\:text-purple-700 {
+ color: #6b46c1;
+ }
+
+ .sm\:text-purple-800 {
+ color: #553c9a;
+ }
+
+ .sm\:text-purple-900 {
+ color: #44337a;
+ }
+
+ .sm\:text-pink-100 {
+ color: #fff5f7;
+ }
+
+ .sm\:text-pink-200 {
+ color: #fed7e2;
+ }
+
+ .sm\:text-pink-300 {
+ color: #fbb6ce;
+ }
+
+ .sm\:text-pink-400 {
+ color: #f687b3;
+ }
+
+ .sm\:text-pink-500 {
+ color: #ed64a6;
+ }
+
+ .sm\:text-pink-600 {
+ color: #d53f8c;
+ }
+
+ .sm\:text-pink-700 {
+ color: #b83280;
+ }
+
+ .sm\:text-pink-800 {
+ color: #97266d;
+ }
+
+ .sm\:text-pink-900 {
+ color: #702459;
+ }
+
+ .sm\:hover\:text-transparent:hover {
+ color: transparent;
+ }
+
+ .sm\:hover\:text-black:hover {
+ color: #000;
+ }
+
+ .sm\:hover\:text-white:hover {
+ color: #fff;
+ }
+
+ .sm\:hover\:text-gray-100:hover {
+ color: #f7fafc;
+ }
+
+ .sm\:hover\:text-gray-200:hover {
+ color: #edf2f7;
+ }
+
+ .sm\:hover\:text-gray-300:hover {
+ color: #e2e8f0;
+ }
+
+ .sm\:hover\:text-gray-400:hover {
+ color: #cbd5e0;
+ }
+
+ .sm\:hover\:text-gray-500:hover {
+ color: #a0aec0;
+ }
+
+ .sm\:hover\:text-gray-600:hover {
+ color: #718096;
+ }
+
+ .sm\:hover\:text-gray-700:hover {
+ color: #4a5568;
+ }
+
+ .sm\:hover\:text-gray-800:hover {
+ color: #2d3748;
+ }
+
+ .sm\:hover\:text-gray-900:hover {
+ color: #1a202c;
+ }
+
+ .sm\:hover\:text-red-100:hover {
+ color: #fff5f5;
+ }
+
+ .sm\:hover\:text-red-200:hover {
+ color: #fed7d7;
+ }
+
+ .sm\:hover\:text-red-300:hover {
+ color: #feb2b2;
+ }
+
+ .sm\:hover\:text-red-400:hover {
+ color: #fc8181;
+ }
+
+ .sm\:hover\:text-red-500:hover {
+ color: #f56565;
+ }
+
+ .sm\:hover\:text-red-600:hover {
+ color: #e53e3e;
+ }
+
+ .sm\:hover\:text-red-700:hover {
+ color: #c53030;
+ }
+
+ .sm\:hover\:text-red-800:hover {
+ color: #9b2c2c;
+ }
+
+ .sm\:hover\:text-red-900:hover {
+ color: #742a2a;
+ }
+
+ .sm\:hover\:text-orange-100:hover {
+ color: #fffaf0;
+ }
+
+ .sm\:hover\:text-orange-200:hover {
+ color: #feebc8;
+ }
+
+ .sm\:hover\:text-orange-300:hover {
+ color: #fbd38d;
+ }
+
+ .sm\:hover\:text-orange-400:hover {
+ color: #f6ad55;
+ }
+
+ .sm\:hover\:text-orange-500:hover {
+ color: #ed8936;
+ }
+
+ .sm\:hover\:text-orange-600:hover {
+ color: #dd6b20;
+ }
+
+ .sm\:hover\:text-orange-700:hover {
+ color: #c05621;
+ }
+
+ .sm\:hover\:text-orange-800:hover {
+ color: #9c4221;
+ }
+
+ .sm\:hover\:text-orange-900:hover {
+ color: #7b341e;
+ }
+
+ .sm\:hover\:text-yellow-100:hover {
+ color: #fffff0;
+ }
+
+ .sm\:hover\:text-yellow-200:hover {
+ color: #fefcbf;
+ }
+
+ .sm\:hover\:text-yellow-300:hover {
+ color: #faf089;
+ }
+
+ .sm\:hover\:text-yellow-400:hover {
+ color: #f6e05e;
+ }
+
+ .sm\:hover\:text-yellow-500:hover {
+ color: #ecc94b;
+ }
+
+ .sm\:hover\:text-yellow-600:hover {
+ color: #d69e2e;
+ }
+
+ .sm\:hover\:text-yellow-700:hover {
+ color: #b7791f;
+ }
+
+ .sm\:hover\:text-yellow-800:hover {
+ color: #975a16;
+ }
+
+ .sm\:hover\:text-yellow-900:hover {
+ color: #744210;
+ }
+
+ .sm\:hover\:text-green-100:hover {
+ color: #f0fff4;
+ }
+
+ .sm\:hover\:text-green-200:hover {
+ color: #c6f6d5;
+ }
+
+ .sm\:hover\:text-green-300:hover {
+ color: #9ae6b4;
+ }
+
+ .sm\:hover\:text-green-400:hover {
+ color: #68d391;
+ }
+
+ .sm\:hover\:text-green-500:hover {
+ color: #48bb78;
+ }
+
+ .sm\:hover\:text-green-600:hover {
+ color: #38a169;
+ }
+
+ .sm\:hover\:text-green-700:hover {
+ color: #2f855a;
+ }
+
+ .sm\:hover\:text-green-800:hover {
+ color: #276749;
+ }
+
+ .sm\:hover\:text-green-900:hover {
+ color: #22543d;
+ }
+
+ .sm\:hover\:text-teal-100:hover {
+ color: #e6fffa;
+ }
+
+ .sm\:hover\:text-teal-200:hover {
+ color: #b2f5ea;
+ }
+
+ .sm\:hover\:text-teal-300:hover {
+ color: #81e6d9;
+ }
+
+ .sm\:hover\:text-teal-400:hover {
+ color: #4fd1c5;
+ }
+
+ .sm\:hover\:text-teal-500:hover {
+ color: #38b2ac;
+ }
+
+ .sm\:hover\:text-teal-600:hover {
+ color: #319795;
+ }
+
+ .sm\:hover\:text-teal-700:hover {
+ color: #2c7a7b;
+ }
+
+ .sm\:hover\:text-teal-800:hover {
+ color: #285e61;
+ }
+
+ .sm\:hover\:text-teal-900:hover {
+ color: #234e52;
+ }
+
+ .sm\:hover\:text-blue-100:hover {
+ color: #ebf8ff;
+ }
+
+ .sm\:hover\:text-blue-200:hover {
+ color: #bee3f8;
+ }
+
+ .sm\:hover\:text-blue-300:hover {
+ color: #90cdf4;
+ }
+
+ .sm\:hover\:text-blue-400:hover {
+ color: #63b3ed;
+ }
+
+ .sm\:hover\:text-blue-500:hover {
+ color: #4299e1;
+ }
+
+ .sm\:hover\:text-blue-600:hover {
+ color: #3182ce;
+ }
+
+ .sm\:hover\:text-blue-700:hover {
+ color: #2b6cb0;
+ }
+
+ .sm\:hover\:text-blue-800:hover {
+ color: #2c5282;
+ }
+
+ .sm\:hover\:text-blue-900:hover {
+ color: #2a4365;
+ }
+
+ .sm\:hover\:text-indigo-100:hover {
+ color: #ebf4ff;
+ }
+
+ .sm\:hover\:text-indigo-200:hover {
+ color: #c3dafe;
+ }
+
+ .sm\:hover\:text-indigo-300:hover {
+ color: #a3bffa;
+ }
+
+ .sm\:hover\:text-indigo-400:hover {
+ color: #7f9cf5;
+ }
+
+ .sm\:hover\:text-indigo-500:hover {
+ color: #667eea;
+ }
+
+ .sm\:hover\:text-indigo-600:hover {
+ color: #5a67d8;
+ }
+
+ .sm\:hover\:text-indigo-700:hover {
+ color: #4c51bf;
+ }
+
+ .sm\:hover\:text-indigo-800:hover {
+ color: #434190;
+ }
+
+ .sm\:hover\:text-indigo-900:hover {
+ color: #3c366b;
+ }
+
+ .sm\:hover\:text-purple-100:hover {
+ color: #faf5ff;
+ }
+
+ .sm\:hover\:text-purple-200:hover {
+ color: #e9d8fd;
+ }
+
+ .sm\:hover\:text-purple-300:hover {
+ color: #d6bcfa;
+ }
+
+ .sm\:hover\:text-purple-400:hover {
+ color: #b794f4;
+ }
+
+ .sm\:hover\:text-purple-500:hover {
+ color: #9f7aea;
+ }
+
+ .sm\:hover\:text-purple-600:hover {
+ color: #805ad5;
+ }
+
+ .sm\:hover\:text-purple-700:hover {
+ color: #6b46c1;
+ }
+
+ .sm\:hover\:text-purple-800:hover {
+ color: #553c9a;
+ }
+
+ .sm\:hover\:text-purple-900:hover {
+ color: #44337a;
+ }
+
+ .sm\:hover\:text-pink-100:hover {
+ color: #fff5f7;
+ }
+
+ .sm\:hover\:text-pink-200:hover {
+ color: #fed7e2;
+ }
+
+ .sm\:hover\:text-pink-300:hover {
+ color: #fbb6ce;
+ }
+
+ .sm\:hover\:text-pink-400:hover {
+ color: #f687b3;
+ }
+
+ .sm\:hover\:text-pink-500:hover {
+ color: #ed64a6;
+ }
+
+ .sm\:hover\:text-pink-600:hover {
+ color: #d53f8c;
+ }
+
+ .sm\:hover\:text-pink-700:hover {
+ color: #b83280;
+ }
+
+ .sm\:hover\:text-pink-800:hover {
+ color: #97266d;
+ }
+
+ .sm\:hover\:text-pink-900:hover {
+ color: #702459;
+ }
+
+ .sm\:focus\:text-transparent:focus {
+ color: transparent;
+ }
+
+ .sm\:focus\:text-black:focus {
+ color: #000;
+ }
+
+ .sm\:focus\:text-white:focus {
+ color: #fff;
+ }
+
+ .sm\:focus\:text-gray-100:focus {
+ color: #f7fafc;
+ }
+
+ .sm\:focus\:text-gray-200:focus {
+ color: #edf2f7;
+ }
+
+ .sm\:focus\:text-gray-300:focus {
+ color: #e2e8f0;
+ }
+
+ .sm\:focus\:text-gray-400:focus {
+ color: #cbd5e0;
+ }
+
+ .sm\:focus\:text-gray-500:focus {
+ color: #a0aec0;
+ }
+
+ .sm\:focus\:text-gray-600:focus {
+ color: #718096;
+ }
+
+ .sm\:focus\:text-gray-700:focus {
+ color: #4a5568;
+ }
+
+ .sm\:focus\:text-gray-800:focus {
+ color: #2d3748;
+ }
+
+ .sm\:focus\:text-gray-900:focus {
+ color: #1a202c;
+ }
+
+ .sm\:focus\:text-red-100:focus {
+ color: #fff5f5;
+ }
+
+ .sm\:focus\:text-red-200:focus {
+ color: #fed7d7;
+ }
+
+ .sm\:focus\:text-red-300:focus {
+ color: #feb2b2;
+ }
+
+ .sm\:focus\:text-red-400:focus {
+ color: #fc8181;
+ }
+
+ .sm\:focus\:text-red-500:focus {
+ color: #f56565;
+ }
+
+ .sm\:focus\:text-red-600:focus {
+ color: #e53e3e;
+ }
+
+ .sm\:focus\:text-red-700:focus {
+ color: #c53030;
+ }
+
+ .sm\:focus\:text-red-800:focus {
+ color: #9b2c2c;
+ }
+
+ .sm\:focus\:text-red-900:focus {
+ color: #742a2a;
+ }
+
+ .sm\:focus\:text-orange-100:focus {
+ color: #fffaf0;
+ }
+
+ .sm\:focus\:text-orange-200:focus {
+ color: #feebc8;
+ }
+
+ .sm\:focus\:text-orange-300:focus {
+ color: #fbd38d;
+ }
+
+ .sm\:focus\:text-orange-400:focus {
+ color: #f6ad55;
+ }
+
+ .sm\:focus\:text-orange-500:focus {
+ color: #ed8936;
+ }
+
+ .sm\:focus\:text-orange-600:focus {
+ color: #dd6b20;
+ }
+
+ .sm\:focus\:text-orange-700:focus {
+ color: #c05621;
+ }
+
+ .sm\:focus\:text-orange-800:focus {
+ color: #9c4221;
+ }
+
+ .sm\:focus\:text-orange-900:focus {
+ color: #7b341e;
+ }
+
+ .sm\:focus\:text-yellow-100:focus {
+ color: #fffff0;
+ }
+
+ .sm\:focus\:text-yellow-200:focus {
+ color: #fefcbf;
+ }
+
+ .sm\:focus\:text-yellow-300:focus {
+ color: #faf089;
+ }
+
+ .sm\:focus\:text-yellow-400:focus {
+ color: #f6e05e;
+ }
+
+ .sm\:focus\:text-yellow-500:focus {
+ color: #ecc94b;
+ }
+
+ .sm\:focus\:text-yellow-600:focus {
+ color: #d69e2e;
+ }
+
+ .sm\:focus\:text-yellow-700:focus {
+ color: #b7791f;
+ }
+
+ .sm\:focus\:text-yellow-800:focus {
+ color: #975a16;
+ }
+
+ .sm\:focus\:text-yellow-900:focus {
+ color: #744210;
+ }
+
+ .sm\:focus\:text-green-100:focus {
+ color: #f0fff4;
+ }
+
+ .sm\:focus\:text-green-200:focus {
+ color: #c6f6d5;
+ }
+
+ .sm\:focus\:text-green-300:focus {
+ color: #9ae6b4;
+ }
+
+ .sm\:focus\:text-green-400:focus {
+ color: #68d391;
+ }
+
+ .sm\:focus\:text-green-500:focus {
+ color: #48bb78;
+ }
+
+ .sm\:focus\:text-green-600:focus {
+ color: #38a169;
+ }
+
+ .sm\:focus\:text-green-700:focus {
+ color: #2f855a;
+ }
+
+ .sm\:focus\:text-green-800:focus {
+ color: #276749;
+ }
+
+ .sm\:focus\:text-green-900:focus {
+ color: #22543d;
+ }
+
+ .sm\:focus\:text-teal-100:focus {
+ color: #e6fffa;
+ }
+
+ .sm\:focus\:text-teal-200:focus {
+ color: #b2f5ea;
+ }
+
+ .sm\:focus\:text-teal-300:focus {
+ color: #81e6d9;
+ }
+
+ .sm\:focus\:text-teal-400:focus {
+ color: #4fd1c5;
+ }
+
+ .sm\:focus\:text-teal-500:focus {
+ color: #38b2ac;
+ }
+
+ .sm\:focus\:text-teal-600:focus {
+ color: #319795;
+ }
+
+ .sm\:focus\:text-teal-700:focus {
+ color: #2c7a7b;
+ }
+
+ .sm\:focus\:text-teal-800:focus {
+ color: #285e61;
+ }
+
+ .sm\:focus\:text-teal-900:focus {
+ color: #234e52;
+ }
+
+ .sm\:focus\:text-blue-100:focus {
+ color: #ebf8ff;
+ }
+
+ .sm\:focus\:text-blue-200:focus {
+ color: #bee3f8;
+ }
+
+ .sm\:focus\:text-blue-300:focus {
+ color: #90cdf4;
+ }
+
+ .sm\:focus\:text-blue-400:focus {
+ color: #63b3ed;
+ }
+
+ .sm\:focus\:text-blue-500:focus {
+ color: #4299e1;
+ }
+
+ .sm\:focus\:text-blue-600:focus {
+ color: #3182ce;
+ }
+
+ .sm\:focus\:text-blue-700:focus {
+ color: #2b6cb0;
+ }
+
+ .sm\:focus\:text-blue-800:focus {
+ color: #2c5282;
+ }
+
+ .sm\:focus\:text-blue-900:focus {
+ color: #2a4365;
+ }
+
+ .sm\:focus\:text-indigo-100:focus {
+ color: #ebf4ff;
+ }
+
+ .sm\:focus\:text-indigo-200:focus {
+ color: #c3dafe;
+ }
+
+ .sm\:focus\:text-indigo-300:focus {
+ color: #a3bffa;
+ }
+
+ .sm\:focus\:text-indigo-400:focus {
+ color: #7f9cf5;
+ }
+
+ .sm\:focus\:text-indigo-500:focus {
+ color: #667eea;
+ }
+
+ .sm\:focus\:text-indigo-600:focus {
+ color: #5a67d8;
+ }
+
+ .sm\:focus\:text-indigo-700:focus {
+ color: #4c51bf;
+ }
+
+ .sm\:focus\:text-indigo-800:focus {
+ color: #434190;
+ }
+
+ .sm\:focus\:text-indigo-900:focus {
+ color: #3c366b;
+ }
+
+ .sm\:focus\:text-purple-100:focus {
+ color: #faf5ff;
+ }
+
+ .sm\:focus\:text-purple-200:focus {
+ color: #e9d8fd;
+ }
+
+ .sm\:focus\:text-purple-300:focus {
+ color: #d6bcfa;
+ }
+
+ .sm\:focus\:text-purple-400:focus {
+ color: #b794f4;
+ }
+
+ .sm\:focus\:text-purple-500:focus {
+ color: #9f7aea;
+ }
+
+ .sm\:focus\:text-purple-600:focus {
+ color: #805ad5;
+ }
+
+ .sm\:focus\:text-purple-700:focus {
+ color: #6b46c1;
+ }
+
+ .sm\:focus\:text-purple-800:focus {
+ color: #553c9a;
+ }
+
+ .sm\:focus\:text-purple-900:focus {
+ color: #44337a;
+ }
+
+ .sm\:focus\:text-pink-100:focus {
+ color: #fff5f7;
+ }
+
+ .sm\:focus\:text-pink-200:focus {
+ color: #fed7e2;
+ }
+
+ .sm\:focus\:text-pink-300:focus {
+ color: #fbb6ce;
+ }
+
+ .sm\:focus\:text-pink-400:focus {
+ color: #f687b3;
+ }
+
+ .sm\:focus\:text-pink-500:focus {
+ color: #ed64a6;
+ }
+
+ .sm\:focus\:text-pink-600:focus {
+ color: #d53f8c;
+ }
+
+ .sm\:focus\:text-pink-700:focus {
+ color: #b83280;
+ }
+
+ .sm\:focus\:text-pink-800:focus {
+ color: #97266d;
+ }
+
+ .sm\:focus\:text-pink-900:focus {
+ color: #702459;
+ }
+
+ .sm\:text-xs {
+ font-size: 0.75rem;
+ }
+
+ .sm\:text-sm {
+ font-size: 0.875rem;
+ }
+
+ .sm\:text-base {
+ font-size: 1rem;
+ }
+
+ .sm\:text-lg {
+ font-size: 1.125rem;
+ }
+
+ .sm\:text-xl {
+ font-size: 1.25rem;
+ }
+
+ .sm\:text-2xl {
+ font-size: 1.5rem;
+ }
+
+ .sm\:text-3xl {
+ font-size: 1.875rem;
+ }
+
+ .sm\:text-4xl {
+ font-size: 2.25rem;
+ }
+
+ .sm\:text-5xl {
+ font-size: 3rem;
+ }
+
+ .sm\:text-6xl {
+ font-size: 4rem;
+ }
+
+ .sm\:italic {
+ font-style: italic;
+ }
+
+ .sm\:not-italic {
+ font-style: normal;
+ }
+
+ .sm\:uppercase {
+ text-transform: uppercase;
+ }
+
+ .sm\:lowercase {
+ text-transform: lowercase;
+ }
+
+ .sm\:capitalize {
+ text-transform: capitalize;
+ }
+
+ .sm\:normal-case {
+ text-transform: none;
+ }
+
+ .sm\:underline {
+ text-decoration: underline;
+ }
+
+ .sm\:line-through {
+ text-decoration: line-through;
+ }
+
+ .sm\:no-underline {
+ 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\:tracking-tighter {
+ letter-spacing: -0.05em;
+ }
+
+ .sm\:tracking-tight {
+ letter-spacing: -0.025em;
+ }
+
+ .sm\:tracking-normal {
+ letter-spacing: 0;
+ }
+
+ .sm\:tracking-wide {
+ letter-spacing: 0.025em;
+ }
+
+ .sm\:tracking-wider {
+ letter-spacing: 0.05em;
+ }
+
+ .sm\:tracking-widest {
+ letter-spacing: 0.1em;
+ }
+
+ .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;
+ -ms-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\: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\:visible {
+ visibility: visible;
+ }
+
+ .sm\:invisible {
+ visibility: hidden;
+ }
+
+ .sm\:whitespace-normal {
+ white-space: normal;
+ }
+
+ .sm\:whitespace-no-wrap {
+ 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\:truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
+ .sm\:w-0 {
+ width: 0;
+ }
+
+ .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-8 {
+ width: 2rem;
+ }
+
+ .sm\:w-10 {
+ width: 2.5rem;
+ }
+
+ .sm\:w-12 {
+ width: 3rem;
+ }
+
+ .sm\:w-16 {
+ width: 4rem;
+ }
+
+ .sm\:w-20 {
+ width: 5rem;
+ }
+
+ .sm\:w-24 {
+ width: 6rem;
+ }
+
+ .sm\:w-32 {
+ width: 8rem;
+ }
+
+ .sm\:w-40 {
+ width: 10rem;
+ }
+
+ .sm\:w-48 {
+ width: 12rem;
+ }
+
+ .sm\:w-56 {
+ width: 14rem;
+ }
+
+ .sm\:w-64 {
+ width: 16rem;
+ }
+
+ .sm\:w-auto {
+ width: auto;
+ }
+
+ .sm\:w-px {
+ width: 1px;
+ }
+
+ .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\: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;
+ }
+}
+
+@media (min-width: 768px) {
+ .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\: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\:appearance-none {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+
+ .md\:bg-fixed {
+ background-attachment: fixed;
+ }
+
+ .md\:bg-local {
+ background-attachment: local;
+ }
+
+ .md\:bg-scroll {
+ background-attachment: scroll;
+ }
+
+ .md\:bg-transparent {
+ background-color: transparent;
+ }
+
+ .md\:bg-black {
+ background-color: #000;
+ }
+
+ .md\:bg-white {
+ background-color: #fff;
+ }
+
+ .md\:bg-gray-100 {
+ background-color: #f7fafc;
+ }
+
+ .md\:bg-gray-200 {
+ background-color: #edf2f7;
+ }
+
+ .md\:bg-gray-300 {
+ background-color: #e2e8f0;
+ }
+
+ .md\:bg-gray-400 {
+ background-color: #cbd5e0;
+ }
+
+ .md\:bg-gray-500 {
+ background-color: #a0aec0;
+ }
+
+ .md\:bg-gray-600 {
+ background-color: #718096;
+ }
+
+ .md\:bg-gray-700 {
+ background-color: #4a5568;
+ }
+
+ .md\:bg-gray-800 {
+ background-color: #2d3748;
+ }
+
+ .md\:bg-gray-900 {
+ background-color: #1a202c;
+ }
+
+ .md\:bg-red-100 {
+ background-color: #fff5f5;
+ }
+
+ .md\:bg-red-200 {
+ background-color: #fed7d7;
+ }
+
+ .md\:bg-red-300 {
+ background-color: #feb2b2;
+ }
+
+ .md\:bg-red-400 {
+ background-color: #fc8181;
+ }
+
+ .md\:bg-red-500 {
+ background-color: #f56565;
+ }
+
+ .md\:bg-red-600 {
+ background-color: #e53e3e;
+ }
+
+ .md\:bg-red-700 {
+ background-color: #c53030;
+ }
+
+ .md\:bg-red-800 {
+ background-color: #9b2c2c;
+ }
+
+ .md\:bg-red-900 {
+ background-color: #742a2a;
+ }
+
+ .md\:bg-orange-100 {
+ background-color: #fffaf0;
+ }
+
+ .md\:bg-orange-200 {
+ background-color: #feebc8;
+ }
+
+ .md\:bg-orange-300 {
+ background-color: #fbd38d;
+ }
+
+ .md\:bg-orange-400 {
+ background-color: #f6ad55;
+ }
+
+ .md\:bg-orange-500 {
+ background-color: #ed8936;
+ }
+
+ .md\:bg-orange-600 {
+ background-color: #dd6b20;
+ }
+
+ .md\:bg-orange-700 {
+ background-color: #c05621;
+ }
+
+ .md\:bg-orange-800 {
+ background-color: #9c4221;
+ }
+
+ .md\:bg-orange-900 {
+ background-color: #7b341e;
+ }
+
+ .md\:bg-yellow-100 {
+ background-color: #fffff0;
+ }
+
+ .md\:bg-yellow-200 {
+ background-color: #fefcbf;
+ }
+
+ .md\:bg-yellow-300 {
+ background-color: #faf089;
+ }
+
+ .md\:bg-yellow-400 {
+ background-color: #f6e05e;
+ }
+
+ .md\:bg-yellow-500 {
+ background-color: #ecc94b;
+ }
+
+ .md\:bg-yellow-600 {
+ background-color: #d69e2e;
+ }
+
+ .md\:bg-yellow-700 {
+ background-color: #b7791f;
+ }
+
+ .md\:bg-yellow-800 {
+ background-color: #975a16;
+ }
+
+ .md\:bg-yellow-900 {
+ background-color: #744210;
+ }
+
+ .md\:bg-green-100 {
+ background-color: #f0fff4;
+ }
+
+ .md\:bg-green-200 {
+ background-color: #c6f6d5;
+ }
+
+ .md\:bg-green-300 {
+ background-color: #9ae6b4;
+ }
+
+ .md\:bg-green-400 {
+ background-color: #68d391;
+ }
+
+ .md\:bg-green-500 {
+ background-color: #48bb78;
+ }
+
+ .md\:bg-green-600 {
+ background-color: #38a169;
+ }
+
+ .md\:bg-green-700 {
+ background-color: #2f855a;
+ }
+
+ .md\:bg-green-800 {
+ background-color: #276749;
+ }
+
+ .md\:bg-green-900 {
+ background-color: #22543d;
+ }
+
+ .md\:bg-teal-100 {
+ background-color: #e6fffa;
+ }
+
+ .md\:bg-teal-200 {
+ background-color: #b2f5ea;
+ }
+
+ .md\:bg-teal-300 {
+ background-color: #81e6d9;
+ }
+
+ .md\:bg-teal-400 {
+ background-color: #4fd1c5;
+ }
+
+ .md\:bg-teal-500 {
+ background-color: #38b2ac;
+ }
+
+ .md\:bg-teal-600 {
+ background-color: #319795;
+ }
+
+ .md\:bg-teal-700 {
+ background-color: #2c7a7b;
+ }
+
+ .md\:bg-teal-800 {
+ background-color: #285e61;
+ }
+
+ .md\:bg-teal-900 {
+ background-color: #234e52;
+ }
+
+ .md\:bg-blue-100 {
+ background-color: #ebf8ff;
+ }
+
+ .md\:bg-blue-200 {
+ background-color: #bee3f8;
+ }
+
+ .md\:bg-blue-300 {
+ background-color: #90cdf4;
+ }
+
+ .md\:bg-blue-400 {
+ background-color: #63b3ed;
+ }
+
+ .md\:bg-blue-500 {
+ background-color: #4299e1;
+ }
+
+ .md\:bg-blue-600 {
+ background-color: #3182ce;
+ }
+
+ .md\:bg-blue-700 {
+ background-color: #2b6cb0;
+ }
+
+ .md\:bg-blue-800 {
+ background-color: #2c5282;
+ }
+
+ .md\:bg-blue-900 {
+ background-color: #2a4365;
+ }
+
+ .md\:bg-indigo-100 {
+ background-color: #ebf4ff;
+ }
+
+ .md\:bg-indigo-200 {
+ background-color: #c3dafe;
+ }
+
+ .md\:bg-indigo-300 {
+ background-color: #a3bffa;
+ }
+
+ .md\:bg-indigo-400 {
+ background-color: #7f9cf5;
+ }
+
+ .md\:bg-indigo-500 {
+ background-color: #667eea;
+ }
+
+ .md\:bg-indigo-600 {
+ background-color: #5a67d8;
+ }
+
+ .md\:bg-indigo-700 {
+ background-color: #4c51bf;
+ }
+
+ .md\:bg-indigo-800 {
+ background-color: #434190;
+ }
+
+ .md\:bg-indigo-900 {
+ background-color: #3c366b;
+ }
+
+ .md\:bg-purple-100 {
+ background-color: #faf5ff;
+ }
+
+ .md\:bg-purple-200 {
+ background-color: #e9d8fd;
+ }
+
+ .md\:bg-purple-300 {
+ background-color: #d6bcfa;
+ }
+
+ .md\:bg-purple-400 {
+ background-color: #b794f4;
+ }
+
+ .md\:bg-purple-500 {
+ background-color: #9f7aea;
+ }
+
+ .md\:bg-purple-600 {
+ background-color: #805ad5;
+ }
+
+ .md\:bg-purple-700 {
+ background-color: #6b46c1;
+ }
+
+ .md\:bg-purple-800 {
+ background-color: #553c9a;
+ }
+
+ .md\:bg-purple-900 {
+ background-color: #44337a;
+ }
+
+ .md\:bg-pink-100 {
+ background-color: #fff5f7;
+ }
+
+ .md\:bg-pink-200 {
+ background-color: #fed7e2;
+ }
+
+ .md\:bg-pink-300 {
+ background-color: #fbb6ce;
+ }
+
+ .md\:bg-pink-400 {
+ background-color: #f687b3;
+ }
+
+ .md\:bg-pink-500 {
+ background-color: #ed64a6;
+ }
+
+ .md\:bg-pink-600 {
+ background-color: #d53f8c;
+ }
+
+ .md\:bg-pink-700 {
+ background-color: #b83280;
+ }
+
+ .md\:bg-pink-800 {
+ background-color: #97266d;
+ }
+
+ .md\:bg-pink-900 {
+ background-color: #702459;
+ }
+
+ .md\:hover\:bg-transparent:hover {
+ background-color: transparent;
+ }
+
+ .md\:hover\:bg-black:hover {
+ background-color: #000;
+ }
+
+ .md\:hover\:bg-white:hover {
+ background-color: #fff;
+ }
+
+ .md\:hover\:bg-gray-100:hover {
+ background-color: #f7fafc;
+ }
+
+ .md\:hover\:bg-gray-200:hover {
+ background-color: #edf2f7;
+ }
+
+ .md\:hover\:bg-gray-300:hover {
+ background-color: #e2e8f0;
+ }
+
+ .md\:hover\:bg-gray-400:hover {
+ background-color: #cbd5e0;
+ }
+
+ .md\:hover\:bg-gray-500:hover {
+ background-color: #a0aec0;
+ }
+
+ .md\:hover\:bg-gray-600:hover {
+ background-color: #718096;
+ }
+
+ .md\:hover\:bg-gray-700:hover {
+ background-color: #4a5568;
+ }
+
+ .md\:hover\:bg-gray-800:hover {
+ background-color: #2d3748;
+ }
+
+ .md\:hover\:bg-gray-900:hover {
+ background-color: #1a202c;
+ }
+
+ .md\:hover\:bg-red-100:hover {
+ background-color: #fff5f5;
+ }
+
+ .md\:hover\:bg-red-200:hover {
+ background-color: #fed7d7;
+ }
+
+ .md\:hover\:bg-red-300:hover {
+ background-color: #feb2b2;
+ }
+
+ .md\:hover\:bg-red-400:hover {
+ background-color: #fc8181;
+ }
+
+ .md\:hover\:bg-red-500:hover {
+ background-color: #f56565;
+ }
+
+ .md\:hover\:bg-red-600:hover {
+ background-color: #e53e3e;
+ }
+
+ .md\:hover\:bg-red-700:hover {
+ background-color: #c53030;
+ }
+
+ .md\:hover\:bg-red-800:hover {
+ background-color: #9b2c2c;
+ }
+
+ .md\:hover\:bg-red-900:hover {
+ background-color: #742a2a;
+ }
+
+ .md\:hover\:bg-orange-100:hover {
+ background-color: #fffaf0;
+ }
+
+ .md\:hover\:bg-orange-200:hover {
+ background-color: #feebc8;
+ }
+
+ .md\:hover\:bg-orange-300:hover {
+ background-color: #fbd38d;
+ }
+
+ .md\:hover\:bg-orange-400:hover {
+ background-color: #f6ad55;
+ }
+
+ .md\:hover\:bg-orange-500:hover {
+ background-color: #ed8936;
+ }
+
+ .md\:hover\:bg-orange-600:hover {
+ background-color: #dd6b20;
+ }
+
+ .md\:hover\:bg-orange-700:hover {
+ background-color: #c05621;
+ }
+
+ .md\:hover\:bg-orange-800:hover {
+ background-color: #9c4221;
+ }
+
+ .md\:hover\:bg-orange-900:hover {
+ background-color: #7b341e;
+ }
+
+ .md\:hover\:bg-yellow-100:hover {
+ background-color: #fffff0;
+ }
+
+ .md\:hover\:bg-yellow-200:hover {
+ background-color: #fefcbf;
+ }
+
+ .md\:hover\:bg-yellow-300:hover {
+ background-color: #faf089;
+ }
+
+ .md\:hover\:bg-yellow-400:hover {
+ background-color: #f6e05e;
+ }
+
+ .md\:hover\:bg-yellow-500:hover {
+ background-color: #ecc94b;
+ }
+
+ .md\:hover\:bg-yellow-600:hover {
+ background-color: #d69e2e;
+ }
+
+ .md\:hover\:bg-yellow-700:hover {
+ background-color: #b7791f;
+ }
+
+ .md\:hover\:bg-yellow-800:hover {
+ background-color: #975a16;
+ }
+
+ .md\:hover\:bg-yellow-900:hover {
+ background-color: #744210;
+ }
+
+ .md\:hover\:bg-green-100:hover {
+ background-color: #f0fff4;
+ }
+
+ .md\:hover\:bg-green-200:hover {
+ background-color: #c6f6d5;
+ }
+
+ .md\:hover\:bg-green-300:hover {
+ background-color: #9ae6b4;
+ }
+
+ .md\:hover\:bg-green-400:hover {
+ background-color: #68d391;
+ }
+
+ .md\:hover\:bg-green-500:hover {
+ background-color: #48bb78;
+ }
+
+ .md\:hover\:bg-green-600:hover {
+ background-color: #38a169;
+ }
+
+ .md\:hover\:bg-green-700:hover {
+ background-color: #2f855a;
+ }
+
+ .md\:hover\:bg-green-800:hover {
+ background-color: #276749;
+ }
+
+ .md\:hover\:bg-green-900:hover {
+ background-color: #22543d;
+ }
+
+ .md\:hover\:bg-teal-100:hover {
+ background-color: #e6fffa;
+ }
+
+ .md\:hover\:bg-teal-200:hover {
+ background-color: #b2f5ea;
+ }
+
+ .md\:hover\:bg-teal-300:hover {
+ background-color: #81e6d9;
+ }
+
+ .md\:hover\:bg-teal-400:hover {
+ background-color: #4fd1c5;
+ }
+
+ .md\:hover\:bg-teal-500:hover {
+ background-color: #38b2ac;
+ }
+
+ .md\:hover\:bg-teal-600:hover {
+ background-color: #319795;
+ }
+
+ .md\:hover\:bg-teal-700:hover {
+ background-color: #2c7a7b;
+ }
+
+ .md\:hover\:bg-teal-800:hover {
+ background-color: #285e61;
+ }
+
+ .md\:hover\:bg-teal-900:hover {
+ background-color: #234e52;
+ }
+
+ .md\:hover\:bg-blue-100:hover {
+ background-color: #ebf8ff;
+ }
+
+ .md\:hover\:bg-blue-200:hover {
+ background-color: #bee3f8;
+ }
+
+ .md\:hover\:bg-blue-300:hover {
+ background-color: #90cdf4;
+ }
+
+ .md\:hover\:bg-blue-400:hover {
+ background-color: #63b3ed;
+ }
+
+ .md\:hover\:bg-blue-500:hover {
+ background-color: #4299e1;
+ }
+
+ .md\:hover\:bg-blue-600:hover {
+ background-color: #3182ce;
+ }
+
+ .md\:hover\:bg-blue-700:hover {
+ background-color: #2b6cb0;
+ }
+
+ .md\:hover\:bg-blue-800:hover {
+ background-color: #2c5282;
+ }
+
+ .md\:hover\:bg-blue-900:hover {
+ background-color: #2a4365;
+ }
+
+ .md\:hover\:bg-indigo-100:hover {
+ background-color: #ebf4ff;
+ }
+
+ .md\:hover\:bg-indigo-200:hover {
+ background-color: #c3dafe;
+ }
+
+ .md\:hover\:bg-indigo-300:hover {
+ background-color: #a3bffa;
+ }
+
+ .md\:hover\:bg-indigo-400:hover {
+ background-color: #7f9cf5;
+ }
+
+ .md\:hover\:bg-indigo-500:hover {
+ background-color: #667eea;
+ }
+
+ .md\:hover\:bg-indigo-600:hover {
+ background-color: #5a67d8;
+ }
+
+ .md\:hover\:bg-indigo-700:hover {
+ background-color: #4c51bf;
+ }
+
+ .md\:hover\:bg-indigo-800:hover {
+ background-color: #434190;
+ }
+
+ .md\:hover\:bg-indigo-900:hover {
+ background-color: #3c366b;
+ }
+
+ .md\:hover\:bg-purple-100:hover {
+ background-color: #faf5ff;
+ }
+
+ .md\:hover\:bg-purple-200:hover {
+ background-color: #e9d8fd;
+ }
+
+ .md\:hover\:bg-purple-300:hover {
+ background-color: #d6bcfa;
+ }
+
+ .md\:hover\:bg-purple-400:hover {
+ background-color: #b794f4;
+ }
+
+ .md\:hover\:bg-purple-500:hover {
+ background-color: #9f7aea;
+ }
+
+ .md\:hover\:bg-purple-600:hover {
+ background-color: #805ad5;
+ }
+
+ .md\:hover\:bg-purple-700:hover {
+ background-color: #6b46c1;
+ }
+
+ .md\:hover\:bg-purple-800:hover {
+ background-color: #553c9a;
+ }
+
+ .md\:hover\:bg-purple-900:hover {
+ background-color: #44337a;
+ }
+
+ .md\:hover\:bg-pink-100:hover {
+ background-color: #fff5f7;
+ }
+
+ .md\:hover\:bg-pink-200:hover {
+ background-color: #fed7e2;
+ }
+
+ .md\:hover\:bg-pink-300:hover {
+ background-color: #fbb6ce;
+ }
+
+ .md\:hover\:bg-pink-400:hover {
+ background-color: #f687b3;
+ }
+
+ .md\:hover\:bg-pink-500:hover {
+ background-color: #ed64a6;
+ }
+
+ .md\:hover\:bg-pink-600:hover {
+ background-color: #d53f8c;
+ }
+
+ .md\:hover\:bg-pink-700:hover {
+ background-color: #b83280;
+ }
+
+ .md\:hover\:bg-pink-800:hover {
+ background-color: #97266d;
+ }
+
+ .md\:hover\:bg-pink-900:hover {
+ background-color: #702459;
+ }
+
+ .md\:focus\:bg-transparent:focus {
+ background-color: transparent;
+ }
+
+ .md\:focus\:bg-black:focus {
+ background-color: #000;
+ }
+
+ .md\:focus\:bg-white:focus {
+ background-color: #fff;
+ }
+
+ .md\:focus\:bg-gray-100:focus {
+ background-color: #f7fafc;
+ }
+
+ .md\:focus\:bg-gray-200:focus {
+ background-color: #edf2f7;
+ }
+
+ .md\:focus\:bg-gray-300:focus {
+ background-color: #e2e8f0;
+ }
+
+ .md\:focus\:bg-gray-400:focus {
+ background-color: #cbd5e0;
+ }
+
+ .md\:focus\:bg-gray-500:focus {
+ background-color: #a0aec0;
+ }
+
+ .md\:focus\:bg-gray-600:focus {
+ background-color: #718096;
+ }
+
+ .md\:focus\:bg-gray-700:focus {
+ background-color: #4a5568;
+ }
+
+ .md\:focus\:bg-gray-800:focus {
+ background-color: #2d3748;
+ }
+
+ .md\:focus\:bg-gray-900:focus {
+ background-color: #1a202c;
+ }
+
+ .md\:focus\:bg-red-100:focus {
+ background-color: #fff5f5;
+ }
+
+ .md\:focus\:bg-red-200:focus {
+ background-color: #fed7d7;
+ }
+
+ .md\:focus\:bg-red-300:focus {
+ background-color: #feb2b2;
+ }
+
+ .md\:focus\:bg-red-400:focus {
+ background-color: #fc8181;
+ }
+
+ .md\:focus\:bg-red-500:focus {
+ background-color: #f56565;
+ }
+
+ .md\:focus\:bg-red-600:focus {
+ background-color: #e53e3e;
+ }
+
+ .md\:focus\:bg-red-700:focus {
+ background-color: #c53030;
+ }
+
+ .md\:focus\:bg-red-800:focus {
+ background-color: #9b2c2c;
+ }
+
+ .md\:focus\:bg-red-900:focus {
+ background-color: #742a2a;
+ }
+
+ .md\:focus\:bg-orange-100:focus {
+ background-color: #fffaf0;
+ }
+
+ .md\:focus\:bg-orange-200:focus {
+ background-color: #feebc8;
+ }
+
+ .md\:focus\:bg-orange-300:focus {
+ background-color: #fbd38d;
+ }
+
+ .md\:focus\:bg-orange-400:focus {
+ background-color: #f6ad55;
+ }
+
+ .md\:focus\:bg-orange-500:focus {
+ background-color: #ed8936;
+ }
+
+ .md\:focus\:bg-orange-600:focus {
+ background-color: #dd6b20;
+ }
+
+ .md\:focus\:bg-orange-700:focus {
+ background-color: #c05621;
+ }
+
+ .md\:focus\:bg-orange-800:focus {
+ background-color: #9c4221;
+ }
+
+ .md\:focus\:bg-orange-900:focus {
+ background-color: #7b341e;
+ }
+
+ .md\:focus\:bg-yellow-100:focus {
+ background-color: #fffff0;
+ }
+
+ .md\:focus\:bg-yellow-200:focus {
+ background-color: #fefcbf;
+ }
+
+ .md\:focus\:bg-yellow-300:focus {
+ background-color: #faf089;
+ }
+
+ .md\:focus\:bg-yellow-400:focus {
+ background-color: #f6e05e;
+ }
+
+ .md\:focus\:bg-yellow-500:focus {
+ background-color: #ecc94b;
+ }
+
+ .md\:focus\:bg-yellow-600:focus {
+ background-color: #d69e2e;
+ }
+
+ .md\:focus\:bg-yellow-700:focus {
+ background-color: #b7791f;
+ }
+
+ .md\:focus\:bg-yellow-800:focus {
+ background-color: #975a16;
+ }
+
+ .md\:focus\:bg-yellow-900:focus {
+ background-color: #744210;
+ }
+
+ .md\:focus\:bg-green-100:focus {
+ background-color: #f0fff4;
+ }
+
+ .md\:focus\:bg-green-200:focus {
+ background-color: #c6f6d5;
+ }
+
+ .md\:focus\:bg-green-300:focus {
+ background-color: #9ae6b4;
+ }
+
+ .md\:focus\:bg-green-400:focus {
+ background-color: #68d391;
+ }
+
+ .md\:focus\:bg-green-500:focus {
+ background-color: #48bb78;
+ }
+
+ .md\:focus\:bg-green-600:focus {
+ background-color: #38a169;
+ }
+
+ .md\:focus\:bg-green-700:focus {
+ background-color: #2f855a;
+ }
+
+ .md\:focus\:bg-green-800:focus {
+ background-color: #276749;
+ }
+
+ .md\:focus\:bg-green-900:focus {
+ background-color: #22543d;
+ }
+
+ .md\:focus\:bg-teal-100:focus {
+ background-color: #e6fffa;
+ }
+
+ .md\:focus\:bg-teal-200:focus {
+ background-color: #b2f5ea;
+ }
+
+ .md\:focus\:bg-teal-300:focus {
+ background-color: #81e6d9;
+ }
+
+ .md\:focus\:bg-teal-400:focus {
+ background-color: #4fd1c5;
+ }
+
+ .md\:focus\:bg-teal-500:focus {
+ background-color: #38b2ac;
+ }
+
+ .md\:focus\:bg-teal-600:focus {
+ background-color: #319795;
+ }
+
+ .md\:focus\:bg-teal-700:focus {
+ background-color: #2c7a7b;
+ }
+
+ .md\:focus\:bg-teal-800:focus {
+ background-color: #285e61;
+ }
+
+ .md\:focus\:bg-teal-900:focus {
+ background-color: #234e52;
+ }
+
+ .md\:focus\:bg-blue-100:focus {
+ background-color: #ebf8ff;
+ }
+
+ .md\:focus\:bg-blue-200:focus {
+ background-color: #bee3f8;
+ }
+
+ .md\:focus\:bg-blue-300:focus {
+ background-color: #90cdf4;
+ }
+
+ .md\:focus\:bg-blue-400:focus {
+ background-color: #63b3ed;
+ }
+
+ .md\:focus\:bg-blue-500:focus {
+ background-color: #4299e1;
+ }
+
+ .md\:focus\:bg-blue-600:focus {
+ background-color: #3182ce;
+ }
+
+ .md\:focus\:bg-blue-700:focus {
+ background-color: #2b6cb0;
+ }
+
+ .md\:focus\:bg-blue-800:focus {
+ background-color: #2c5282;
+ }
+
+ .md\:focus\:bg-blue-900:focus {
+ background-color: #2a4365;
+ }
+
+ .md\:focus\:bg-indigo-100:focus {
+ background-color: #ebf4ff;
+ }
+
+ .md\:focus\:bg-indigo-200:focus {
+ background-color: #c3dafe;
+ }
+
+ .md\:focus\:bg-indigo-300:focus {
+ background-color: #a3bffa;
+ }
+
+ .md\:focus\:bg-indigo-400:focus {
+ background-color: #7f9cf5;
+ }
+
+ .md\:focus\:bg-indigo-500:focus {
+ background-color: #667eea;
+ }
+
+ .md\:focus\:bg-indigo-600:focus {
+ background-color: #5a67d8;
+ }
+
+ .md\:focus\:bg-indigo-700:focus {
+ background-color: #4c51bf;
+ }
+
+ .md\:focus\:bg-indigo-800:focus {
+ background-color: #434190;
+ }
+
+ .md\:focus\:bg-indigo-900:focus {
+ background-color: #3c366b;
+ }
+
+ .md\:focus\:bg-purple-100:focus {
+ background-color: #faf5ff;
+ }
+
+ .md\:focus\:bg-purple-200:focus {
+ background-color: #e9d8fd;
+ }
+
+ .md\:focus\:bg-purple-300:focus {
+ background-color: #d6bcfa;
+ }
+
+ .md\:focus\:bg-purple-400:focus {
+ background-color: #b794f4;
+ }
+
+ .md\:focus\:bg-purple-500:focus {
+ background-color: #9f7aea;
+ }
+
+ .md\:focus\:bg-purple-600:focus {
+ background-color: #805ad5;
+ }
+
+ .md\:focus\:bg-purple-700:focus {
+ background-color: #6b46c1;
+ }
+
+ .md\:focus\:bg-purple-800:focus {
+ background-color: #553c9a;
+ }
+
+ .md\:focus\:bg-purple-900:focus {
+ background-color: #44337a;
+ }
+
+ .md\:focus\:bg-pink-100:focus {
+ background-color: #fff5f7;
+ }
+
+ .md\:focus\:bg-pink-200:focus {
+ background-color: #fed7e2;
+ }
+
+ .md\:focus\:bg-pink-300:focus {
+ background-color: #fbb6ce;
+ }
+
+ .md\:focus\:bg-pink-400:focus {
+ background-color: #f687b3;
+ }
+
+ .md\:focus\:bg-pink-500:focus {
+ background-color: #ed64a6;
+ }
+
+ .md\:focus\:bg-pink-600:focus {
+ background-color: #d53f8c;
+ }
+
+ .md\:focus\:bg-pink-700:focus {
+ background-color: #b83280;
+ }
+
+ .md\:focus\:bg-pink-800:focus {
+ background-color: #97266d;
+ }
+
+ .md\:focus\:bg-pink-900:focus {
+ background-color: #702459;
+ }
+
+ .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-auto {
+ background-size: auto;
+ }
+
+ .md\:bg-cover {
+ background-size: cover;
+ }
+
+ .md\:bg-contain {
+ background-size: contain;
+ }
+
+ .md\:border-collapse {
+ border-collapse: collapse;
+ }
+
+ .md\:border-separate {
+ border-collapse: separate;
+ }
+
+ .md\:border-transparent {
+ border-color: transparent;
+ }
+
+ .md\:border-black {
+ border-color: #000;
+ }
+
+ .md\:border-white {
+ border-color: #fff;
+ }
+
+ .md\:border-gray-100 {
+ border-color: #f7fafc;
+ }
+
+ .md\:border-gray-200 {
+ border-color: #edf2f7;
+ }
+
+ .md\:border-gray-300 {
+ border-color: #e2e8f0;
+ }
+
+ .md\:border-gray-400 {
+ border-color: #cbd5e0;
+ }
+
+ .md\:border-gray-500 {
+ border-color: #a0aec0;
+ }
+
+ .md\:border-gray-600 {
+ border-color: #718096;
+ }
+
+ .md\:border-gray-700 {
+ border-color: #4a5568;
+ }
+
+ .md\:border-gray-800 {
+ border-color: #2d3748;
+ }
+
+ .md\:border-gray-900 {
+ border-color: #1a202c;
+ }
+
+ .md\:border-red-100 {
+ border-color: #fff5f5;
+ }
+
+ .md\:border-red-200 {
+ border-color: #fed7d7;
+ }
+
+ .md\:border-red-300 {
+ border-color: #feb2b2;
+ }
+
+ .md\:border-red-400 {
+ border-color: #fc8181;
+ }
+
+ .md\:border-red-500 {
+ border-color: #f56565;
+ }
+
+ .md\:border-red-600 {
+ border-color: #e53e3e;
+ }
+
+ .md\:border-red-700 {
+ border-color: #c53030;
+ }
+
+ .md\:border-red-800 {
+ border-color: #9b2c2c;
+ }
+
+ .md\:border-red-900 {
+ border-color: #742a2a;
+ }
+
+ .md\:border-orange-100 {
+ border-color: #fffaf0;
+ }
+
+ .md\:border-orange-200 {
+ border-color: #feebc8;
+ }
+
+ .md\:border-orange-300 {
+ border-color: #fbd38d;
+ }
+
+ .md\:border-orange-400 {
+ border-color: #f6ad55;
+ }
+
+ .md\:border-orange-500 {
+ border-color: #ed8936;
+ }
+
+ .md\:border-orange-600 {
+ border-color: #dd6b20;
+ }
+
+ .md\:border-orange-700 {
+ border-color: #c05621;
+ }
+
+ .md\:border-orange-800 {
+ border-color: #9c4221;
+ }
+
+ .md\:border-orange-900 {
+ border-color: #7b341e;
+ }
+
+ .md\:border-yellow-100 {
+ border-color: #fffff0;
+ }
+
+ .md\:border-yellow-200 {
+ border-color: #fefcbf;
+ }
+
+ .md\:border-yellow-300 {
+ border-color: #faf089;
+ }
+
+ .md\:border-yellow-400 {
+ border-color: #f6e05e;
+ }
+
+ .md\:border-yellow-500 {
+ border-color: #ecc94b;
+ }
+
+ .md\:border-yellow-600 {
+ border-color: #d69e2e;
+ }
+
+ .md\:border-yellow-700 {
+ border-color: #b7791f;
+ }
+
+ .md\:border-yellow-800 {
+ border-color: #975a16;
+ }
+
+ .md\:border-yellow-900 {
+ border-color: #744210;
+ }
+
+ .md\:border-green-100 {
+ border-color: #f0fff4;
+ }
+
+ .md\:border-green-200 {
+ border-color: #c6f6d5;
+ }
+
+ .md\:border-green-300 {
+ border-color: #9ae6b4;
+ }
+
+ .md\:border-green-400 {
+ border-color: #68d391;
+ }
+
+ .md\:border-green-500 {
+ border-color: #48bb78;
+ }
+
+ .md\:border-green-600 {
+ border-color: #38a169;
+ }
+
+ .md\:border-green-700 {
+ border-color: #2f855a;
+ }
+
+ .md\:border-green-800 {
+ border-color: #276749;
+ }
+
+ .md\:border-green-900 {
+ border-color: #22543d;
+ }
+
+ .md\:border-teal-100 {
+ border-color: #e6fffa;
+ }
+
+ .md\:border-teal-200 {
+ border-color: #b2f5ea;
+ }
+
+ .md\:border-teal-300 {
+ border-color: #81e6d9;
+ }
+
+ .md\:border-teal-400 {
+ border-color: #4fd1c5;
+ }
+
+ .md\:border-teal-500 {
+ border-color: #38b2ac;
+ }
+
+ .md\:border-teal-600 {
+ border-color: #319795;
+ }
+
+ .md\:border-teal-700 {
+ border-color: #2c7a7b;
+ }
+
+ .md\:border-teal-800 {
+ border-color: #285e61;
+ }
+
+ .md\:border-teal-900 {
+ border-color: #234e52;
+ }
+
+ .md\:border-blue-100 {
+ border-color: #ebf8ff;
+ }
+
+ .md\:border-blue-200 {
+ border-color: #bee3f8;
+ }
+
+ .md\:border-blue-300 {
+ border-color: #90cdf4;
+ }
+
+ .md\:border-blue-400 {
+ border-color: #63b3ed;
+ }
+
+ .md\:border-blue-500 {
+ border-color: #4299e1;
+ }
+
+ .md\:border-blue-600 {
+ border-color: #3182ce;
+ }
+
+ .md\:border-blue-700 {
+ border-color: #2b6cb0;
+ }
+
+ .md\:border-blue-800 {
+ border-color: #2c5282;
+ }
+
+ .md\:border-blue-900 {
+ border-color: #2a4365;
+ }
+
+ .md\:border-indigo-100 {
+ border-color: #ebf4ff;
+ }
+
+ .md\:border-indigo-200 {
+ border-color: #c3dafe;
+ }
+
+ .md\:border-indigo-300 {
+ border-color: #a3bffa;
+ }
+
+ .md\:border-indigo-400 {
+ border-color: #7f9cf5;
+ }
+
+ .md\:border-indigo-500 {
+ border-color: #667eea;
+ }
+
+ .md\:border-indigo-600 {
+ border-color: #5a67d8;
+ }
+
+ .md\:border-indigo-700 {
+ border-color: #4c51bf;
+ }
+
+ .md\:border-indigo-800 {
+ border-color: #434190;
+ }
+
+ .md\:border-indigo-900 {
+ border-color: #3c366b;
+ }
+
+ .md\:border-purple-100 {
+ border-color: #faf5ff;
+ }
+
+ .md\:border-purple-200 {
+ border-color: #e9d8fd;
+ }
+
+ .md\:border-purple-300 {
+ border-color: #d6bcfa;
+ }
+
+ .md\:border-purple-400 {
+ border-color: #b794f4;
+ }
+
+ .md\:border-purple-500 {
+ border-color: #9f7aea;
+ }
+
+ .md\:border-purple-600 {
+ border-color: #805ad5;
+ }
+
+ .md\:border-purple-700 {
+ border-color: #6b46c1;
+ }
+
+ .md\:border-purple-800 {
+ border-color: #553c9a;
+ }
+
+ .md\:border-purple-900 {
+ border-color: #44337a;
+ }
+
+ .md\:border-pink-100 {
+ border-color: #fff5f7;
+ }
+
+ .md\:border-pink-200 {
+ border-color: #fed7e2;
+ }
+
+ .md\:border-pink-300 {
+ border-color: #fbb6ce;
+ }
+
+ .md\:border-pink-400 {
+ border-color: #f687b3;
+ }
+
+ .md\:border-pink-500 {
+ border-color: #ed64a6;
+ }
+
+ .md\:border-pink-600 {
+ border-color: #d53f8c;
+ }
+
+ .md\:border-pink-700 {
+ border-color: #b83280;
+ }
+
+ .md\:border-pink-800 {
+ border-color: #97266d;
+ }
+
+ .md\:border-pink-900 {
+ border-color: #702459;
+ }
+
+ .md\:hover\:border-transparent:hover {
+ border-color: transparent;
+ }
+
+ .md\:hover\:border-black:hover {
+ border-color: #000;
+ }
+
+ .md\:hover\:border-white:hover {
+ border-color: #fff;
+ }
+
+ .md\:hover\:border-gray-100:hover {
+ border-color: #f7fafc;
+ }
+
+ .md\:hover\:border-gray-200:hover {
+ border-color: #edf2f7;
+ }
+
+ .md\:hover\:border-gray-300:hover {
+ border-color: #e2e8f0;
+ }
+
+ .md\:hover\:border-gray-400:hover {
+ border-color: #cbd5e0;
+ }
+
+ .md\:hover\:border-gray-500:hover {
+ border-color: #a0aec0;
+ }
+
+ .md\:hover\:border-gray-600:hover {
+ border-color: #718096;
+ }
+
+ .md\:hover\:border-gray-700:hover {
+ border-color: #4a5568;
+ }
+
+ .md\:hover\:border-gray-800:hover {
+ border-color: #2d3748;
+ }
+
+ .md\:hover\:border-gray-900:hover {
+ border-color: #1a202c;
+ }
+
+ .md\:hover\:border-red-100:hover {
+ border-color: #fff5f5;
+ }
+
+ .md\:hover\:border-red-200:hover {
+ border-color: #fed7d7;
+ }
+
+ .md\:hover\:border-red-300:hover {
+ border-color: #feb2b2;
+ }
+
+ .md\:hover\:border-red-400:hover {
+ border-color: #fc8181;
+ }
+
+ .md\:hover\:border-red-500:hover {
+ border-color: #f56565;
+ }
+
+ .md\:hover\:border-red-600:hover {
+ border-color: #e53e3e;
+ }
+
+ .md\:hover\:border-red-700:hover {
+ border-color: #c53030;
+ }
+
+ .md\:hover\:border-red-800:hover {
+ border-color: #9b2c2c;
+ }
+
+ .md\:hover\:border-red-900:hover {
+ border-color: #742a2a;
+ }
+
+ .md\:hover\:border-orange-100:hover {
+ border-color: #fffaf0;
+ }
+
+ .md\:hover\:border-orange-200:hover {
+ border-color: #feebc8;
+ }
+
+ .md\:hover\:border-orange-300:hover {
+ border-color: #fbd38d;
+ }
+
+ .md\:hover\:border-orange-400:hover {
+ border-color: #f6ad55;
+ }
+
+ .md\:hover\:border-orange-500:hover {
+ border-color: #ed8936;
+ }
+
+ .md\:hover\:border-orange-600:hover {
+ border-color: #dd6b20;
+ }
+
+ .md\:hover\:border-orange-700:hover {
+ border-color: #c05621;
+ }
+
+ .md\:hover\:border-orange-800:hover {
+ border-color: #9c4221;
+ }
+
+ .md\:hover\:border-orange-900:hover {
+ border-color: #7b341e;
+ }
+
+ .md\:hover\:border-yellow-100:hover {
+ border-color: #fffff0;
+ }
+
+ .md\:hover\:border-yellow-200:hover {
+ border-color: #fefcbf;
+ }
+
+ .md\:hover\:border-yellow-300:hover {
+ border-color: #faf089;
+ }
+
+ .md\:hover\:border-yellow-400:hover {
+ border-color: #f6e05e;
+ }
+
+ .md\:hover\:border-yellow-500:hover {
+ border-color: #ecc94b;
+ }
+
+ .md\:hover\:border-yellow-600:hover {
+ border-color: #d69e2e;
+ }
+
+ .md\:hover\:border-yellow-700:hover {
+ border-color: #b7791f;
+ }
+
+ .md\:hover\:border-yellow-800:hover {
+ border-color: #975a16;
+ }
+
+ .md\:hover\:border-yellow-900:hover {
+ border-color: #744210;
+ }
+
+ .md\:hover\:border-green-100:hover {
+ border-color: #f0fff4;
+ }
+
+ .md\:hover\:border-green-200:hover {
+ border-color: #c6f6d5;
+ }
+
+ .md\:hover\:border-green-300:hover {
+ border-color: #9ae6b4;
+ }
+
+ .md\:hover\:border-green-400:hover {
+ border-color: #68d391;
+ }
+
+ .md\:hover\:border-green-500:hover {
+ border-color: #48bb78;
+ }
+
+ .md\:hover\:border-green-600:hover {
+ border-color: #38a169;
+ }
+
+ .md\:hover\:border-green-700:hover {
+ border-color: #2f855a;
+ }
+
+ .md\:hover\:border-green-800:hover {
+ border-color: #276749;
+ }
+
+ .md\:hover\:border-green-900:hover {
+ border-color: #22543d;
+ }
+
+ .md\:hover\:border-teal-100:hover {
+ border-color: #e6fffa;
+ }
+
+ .md\:hover\:border-teal-200:hover {
+ border-color: #b2f5ea;
+ }
+
+ .md\:hover\:border-teal-300:hover {
+ border-color: #81e6d9;
+ }
+
+ .md\:hover\:border-teal-400:hover {
+ border-color: #4fd1c5;
+ }
+
+ .md\:hover\:border-teal-500:hover {
+ border-color: #38b2ac;
+ }
+
+ .md\:hover\:border-teal-600:hover {
+ border-color: #319795;
+ }
+
+ .md\:hover\:border-teal-700:hover {
+ border-color: #2c7a7b;
+ }
+
+ .md\:hover\:border-teal-800:hover {
+ border-color: #285e61;
+ }
+
+ .md\:hover\:border-teal-900:hover {
+ border-color: #234e52;
+ }
+
+ .md\:hover\:border-blue-100:hover {
+ border-color: #ebf8ff;
+ }
+
+ .md\:hover\:border-blue-200:hover {
+ border-color: #bee3f8;
+ }
+
+ .md\:hover\:border-blue-300:hover {
+ border-color: #90cdf4;
+ }
+
+ .md\:hover\:border-blue-400:hover {
+ border-color: #63b3ed;
+ }
+
+ .md\:hover\:border-blue-500:hover {
+ border-color: #4299e1;
+ }
+
+ .md\:hover\:border-blue-600:hover {
+ border-color: #3182ce;
+ }
+
+ .md\:hover\:border-blue-700:hover {
+ border-color: #2b6cb0;
+ }
+
+ .md\:hover\:border-blue-800:hover {
+ border-color: #2c5282;
+ }
+
+ .md\:hover\:border-blue-900:hover {
+ border-color: #2a4365;
+ }
+
+ .md\:hover\:border-indigo-100:hover {
+ border-color: #ebf4ff;
+ }
+
+ .md\:hover\:border-indigo-200:hover {
+ border-color: #c3dafe;
+ }
+
+ .md\:hover\:border-indigo-300:hover {
+ border-color: #a3bffa;
+ }
+
+ .md\:hover\:border-indigo-400:hover {
+ border-color: #7f9cf5;
+ }
+
+ .md\:hover\:border-indigo-500:hover {
+ border-color: #667eea;
+ }
+
+ .md\:hover\:border-indigo-600:hover {
+ border-color: #5a67d8;
+ }
+
+ .md\:hover\:border-indigo-700:hover {
+ border-color: #4c51bf;
+ }
+
+ .md\:hover\:border-indigo-800:hover {
+ border-color: #434190;
+ }
+
+ .md\:hover\:border-indigo-900:hover {
+ border-color: #3c366b;
+ }
+
+ .md\:hover\:border-purple-100:hover {
+ border-color: #faf5ff;
+ }
+
+ .md\:hover\:border-purple-200:hover {
+ border-color: #e9d8fd;
+ }
+
+ .md\:hover\:border-purple-300:hover {
+ border-color: #d6bcfa;
+ }
+
+ .md\:hover\:border-purple-400:hover {
+ border-color: #b794f4;
+ }
+
+ .md\:hover\:border-purple-500:hover {
+ border-color: #9f7aea;
+ }
+
+ .md\:hover\:border-purple-600:hover {
+ border-color: #805ad5;
+ }
+
+ .md\:hover\:border-purple-700:hover {
+ border-color: #6b46c1;
+ }
+
+ .md\:hover\:border-purple-800:hover {
+ border-color: #553c9a;
+ }
+
+ .md\:hover\:border-purple-900:hover {
+ border-color: #44337a;
+ }
+
+ .md\:hover\:border-pink-100:hover {
+ border-color: #fff5f7;
+ }
+
+ .md\:hover\:border-pink-200:hover {
+ border-color: #fed7e2;
+ }
+
+ .md\:hover\:border-pink-300:hover {
+ border-color: #fbb6ce;
+ }
+
+ .md\:hover\:border-pink-400:hover {
+ border-color: #f687b3;
+ }
+
+ .md\:hover\:border-pink-500:hover {
+ border-color: #ed64a6;
+ }
+
+ .md\:hover\:border-pink-600:hover {
+ border-color: #d53f8c;
+ }
+
+ .md\:hover\:border-pink-700:hover {
+ border-color: #b83280;
+ }
+
+ .md\:hover\:border-pink-800:hover {
+ border-color: #97266d;
+ }
+
+ .md\:hover\:border-pink-900:hover {
+ border-color: #702459;
+ }
+
+ .md\:focus\:border-transparent:focus {
+ border-color: transparent;
+ }
+
+ .md\:focus\:border-black:focus {
+ border-color: #000;
+ }
+
+ .md\:focus\:border-white:focus {
+ border-color: #fff;
+ }
+
+ .md\:focus\:border-gray-100:focus {
+ border-color: #f7fafc;
+ }
+
+ .md\:focus\:border-gray-200:focus {
+ border-color: #edf2f7;
+ }
+
+ .md\:focus\:border-gray-300:focus {
+ border-color: #e2e8f0;
+ }
+
+ .md\:focus\:border-gray-400:focus {
+ border-color: #cbd5e0;
+ }
+
+ .md\:focus\:border-gray-500:focus {
+ border-color: #a0aec0;
+ }
+
+ .md\:focus\:border-gray-600:focus {
+ border-color: #718096;
+ }
+
+ .md\:focus\:border-gray-700:focus {
+ border-color: #4a5568;
+ }
+
+ .md\:focus\:border-gray-800:focus {
+ border-color: #2d3748;
+ }
+
+ .md\:focus\:border-gray-900:focus {
+ border-color: #1a202c;
+ }
+
+ .md\:focus\:border-red-100:focus {
+ border-color: #fff5f5;
+ }
+
+ .md\:focus\:border-red-200:focus {
+ border-color: #fed7d7;
+ }
+
+ .md\:focus\:border-red-300:focus {
+ border-color: #feb2b2;
+ }
+
+ .md\:focus\:border-red-400:focus {
+ border-color: #fc8181;
+ }
+
+ .md\:focus\:border-red-500:focus {
+ border-color: #f56565;
+ }
+
+ .md\:focus\:border-red-600:focus {
+ border-color: #e53e3e;
+ }
+
+ .md\:focus\:border-red-700:focus {
+ border-color: #c53030;
+ }
+
+ .md\:focus\:border-red-800:focus {
+ border-color: #9b2c2c;
+ }
+
+ .md\:focus\:border-red-900:focus {
+ border-color: #742a2a;
+ }
+
+ .md\:focus\:border-orange-100:focus {
+ border-color: #fffaf0;
+ }
+
+ .md\:focus\:border-orange-200:focus {
+ border-color: #feebc8;
+ }
+
+ .md\:focus\:border-orange-300:focus {
+ border-color: #fbd38d;
+ }
+
+ .md\:focus\:border-orange-400:focus {
+ border-color: #f6ad55;
+ }
+
+ .md\:focus\:border-orange-500:focus {
+ border-color: #ed8936;
+ }
+
+ .md\:focus\:border-orange-600:focus {
+ border-color: #dd6b20;
+ }
+
+ .md\:focus\:border-orange-700:focus {
+ border-color: #c05621;
+ }
+
+ .md\:focus\:border-orange-800:focus {
+ border-color: #9c4221;
+ }
+
+ .md\:focus\:border-orange-900:focus {
+ border-color: #7b341e;
+ }
+
+ .md\:focus\:border-yellow-100:focus {
+ border-color: #fffff0;
+ }
+
+ .md\:focus\:border-yellow-200:focus {
+ border-color: #fefcbf;
+ }
+
+ .md\:focus\:border-yellow-300:focus {
+ border-color: #faf089;
+ }
+
+ .md\:focus\:border-yellow-400:focus {
+ border-color: #f6e05e;
+ }
+
+ .md\:focus\:border-yellow-500:focus {
+ border-color: #ecc94b;
+ }
+
+ .md\:focus\:border-yellow-600:focus {
+ border-color: #d69e2e;
+ }
+
+ .md\:focus\:border-yellow-700:focus {
+ border-color: #b7791f;
+ }
+
+ .md\:focus\:border-yellow-800:focus {
+ border-color: #975a16;
+ }
+
+ .md\:focus\:border-yellow-900:focus {
+ border-color: #744210;
+ }
+
+ .md\:focus\:border-green-100:focus {
+ border-color: #f0fff4;
+ }
+
+ .md\:focus\:border-green-200:focus {
+ border-color: #c6f6d5;
+ }
+
+ .md\:focus\:border-green-300:focus {
+ border-color: #9ae6b4;
+ }
+
+ .md\:focus\:border-green-400:focus {
+ border-color: #68d391;
+ }
+
+ .md\:focus\:border-green-500:focus {
+ border-color: #48bb78;
+ }
+
+ .md\:focus\:border-green-600:focus {
+ border-color: #38a169;
+ }
+
+ .md\:focus\:border-green-700:focus {
+ border-color: #2f855a;
+ }
+
+ .md\:focus\:border-green-800:focus {
+ border-color: #276749;
+ }
+
+ .md\:focus\:border-green-900:focus {
+ border-color: #22543d;
+ }
+
+ .md\:focus\:border-teal-100:focus {
+ border-color: #e6fffa;
+ }
+
+ .md\:focus\:border-teal-200:focus {
+ border-color: #b2f5ea;
+ }
+
+ .md\:focus\:border-teal-300:focus {
+ border-color: #81e6d9;
+ }
+
+ .md\:focus\:border-teal-400:focus {
+ border-color: #4fd1c5;
+ }
+
+ .md\:focus\:border-teal-500:focus {
+ border-color: #38b2ac;
+ }
+
+ .md\:focus\:border-teal-600:focus {
+ border-color: #319795;
+ }
+
+ .md\:focus\:border-teal-700:focus {
+ border-color: #2c7a7b;
+ }
+
+ .md\:focus\:border-teal-800:focus {
+ border-color: #285e61;
+ }
+
+ .md\:focus\:border-teal-900:focus {
+ border-color: #234e52;
+ }
+
+ .md\:focus\:border-blue-100:focus {
+ border-color: #ebf8ff;
+ }
+
+ .md\:focus\:border-blue-200:focus {
+ border-color: #bee3f8;
+ }
+
+ .md\:focus\:border-blue-300:focus {
+ border-color: #90cdf4;
+ }
+
+ .md\:focus\:border-blue-400:focus {
+ border-color: #63b3ed;
+ }
+
+ .md\:focus\:border-blue-500:focus {
+ border-color: #4299e1;
+ }
+
+ .md\:focus\:border-blue-600:focus {
+ border-color: #3182ce;
+ }
+
+ .md\:focus\:border-blue-700:focus {
+ border-color: #2b6cb0;
+ }
+
+ .md\:focus\:border-blue-800:focus {
+ border-color: #2c5282;
+ }
+
+ .md\:focus\:border-blue-900:focus {
+ border-color: #2a4365;
+ }
+
+ .md\:focus\:border-indigo-100:focus {
+ border-color: #ebf4ff;
+ }
+
+ .md\:focus\:border-indigo-200:focus {
+ border-color: #c3dafe;
+ }
+
+ .md\:focus\:border-indigo-300:focus {
+ border-color: #a3bffa;
+ }
+
+ .md\:focus\:border-indigo-400:focus {
+ border-color: #7f9cf5;
+ }
+
+ .md\:focus\:border-indigo-500:focus {
+ border-color: #667eea;
+ }
+
+ .md\:focus\:border-indigo-600:focus {
+ border-color: #5a67d8;
+ }
+
+ .md\:focus\:border-indigo-700:focus {
+ border-color: #4c51bf;
+ }
+
+ .md\:focus\:border-indigo-800:focus {
+ border-color: #434190;
+ }
+
+ .md\:focus\:border-indigo-900:focus {
+ border-color: #3c366b;
+ }
+
+ .md\:focus\:border-purple-100:focus {
+ border-color: #faf5ff;
+ }
+
+ .md\:focus\:border-purple-200:focus {
+ border-color: #e9d8fd;
+ }
+
+ .md\:focus\:border-purple-300:focus {
+ border-color: #d6bcfa;
+ }
+
+ .md\:focus\:border-purple-400:focus {
+ border-color: #b794f4;
+ }
+
+ .md\:focus\:border-purple-500:focus {
+ border-color: #9f7aea;
+ }
+
+ .md\:focus\:border-purple-600:focus {
+ border-color: #805ad5;
+ }
+
+ .md\:focus\:border-purple-700:focus {
+ border-color: #6b46c1;
+ }
+
+ .md\:focus\:border-purple-800:focus {
+ border-color: #553c9a;
+ }
+
+ .md\:focus\:border-purple-900:focus {
+ border-color: #44337a;
+ }
+
+ .md\:focus\:border-pink-100:focus {
+ border-color: #fff5f7;
+ }
+
+ .md\:focus\:border-pink-200:focus {
+ border-color: #fed7e2;
+ }
+
+ .md\:focus\:border-pink-300:focus {
+ border-color: #fbb6ce;
+ }
+
+ .md\:focus\:border-pink-400:focus {
+ border-color: #f687b3;
+ }
+
+ .md\:focus\:border-pink-500:focus {
+ border-color: #ed64a6;
+ }
+
+ .md\:focus\:border-pink-600:focus {
+ border-color: #d53f8c;
+ }
+
+ .md\:focus\:border-pink-700:focus {
+ border-color: #b83280;
+ }
+
+ .md\:focus\:border-pink-800:focus {
+ border-color: #97266d;
+ }
+
+ .md\:focus\:border-pink-900:focus {
+ border-color: #702459;
+ }
+
+ .md\:rounded-none {
+ border-radius: 0;
+ }
+
+ .md\:rounded-sm {
+ border-radius: 0.125rem;
+ }
+
+ .md\:rounded {
+ border-radius: 0.25rem;
+ }
+
+ .md\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .md\:rounded-full {
+ border-radius: 9999px;
+ }
+
+ .md\:rounded-t-none {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ .md\:rounded-r-none {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+
+ .md\:rounded-b-none {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .md\:rounded-l-none {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .md\:rounded-t-sm {
+ border-top-left-radius: 0.125rem;
+ border-top-right-radius: 0.125rem;
+ }
+
+ .md\:rounded-r-sm {
+ border-top-right-radius: 0.125rem;
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .md\:rounded-b-sm {
+ border-bottom-right-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .md\:rounded-l-sm {
+ border-top-left-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .md\:rounded-t {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+
+ .md\:rounded-r {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .md\:rounded-b {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .md\:rounded-l {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .md\:rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+ }
+
+ .md\:rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .md\:rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .md\:rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .md\:rounded-t-full {
+ border-top-left-radius: 9999px;
+ border-top-right-radius: 9999px;
+ }
+
+ .md\:rounded-r-full {
+ border-top-right-radius: 9999px;
+ border-bottom-right-radius: 9999px;
+ }
+
+ .md\:rounded-b-full {
+ border-bottom-right-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .md\:rounded-l-full {
+ border-top-left-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .md\:rounded-tl-none {
+ border-top-left-radius: 0;
+ }
+
+ .md\:rounded-tr-none {
+ border-top-right-radius: 0;
+ }
+
+ .md\:rounded-br-none {
+ border-bottom-right-radius: 0;
+ }
+
+ .md\:rounded-bl-none {
+ border-bottom-left-radius: 0;
+ }
+
+ .md\:rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+ }
+
+ .md\:rounded-tr-sm {
+ border-top-right-radius: 0.125rem;
+ }
+
+ .md\:rounded-br-sm {
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .md\:rounded-bl-sm {
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .md\:rounded-tl {
+ border-top-left-radius: 0.25rem;
+ }
+
+ .md\:rounded-tr {
+ border-top-right-radius: 0.25rem;
+ }
+
+ .md\:rounded-br {
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .md\:rounded-bl {
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .md\:rounded-tl-lg {
+ border-top-left-radius: 0.5rem;
+ }
+
+ .md\:rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+ }
+
+ .md\:rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .md\:rounded-bl-lg {
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .md\:rounded-tl-full {
+ border-top-left-radius: 9999px;
+ }
+
+ .md\:rounded-tr-full {
+ border-top-right-radius: 9999px;
+ }
+
+ .md\:rounded-br-full {
+ border-bottom-right-radius: 9999px;
+ }
+
+ .md\:rounded-bl-full {
+ border-bottom-left-radius: 9999px;
+ }
+
+ .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-0 {
+ border-width: 0;
+ }
+
+ .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: 0;
+ }
+
+ .md\:border-r-0 {
+ border-right-width: 0;
+ }
+
+ .md\:border-b-0 {
+ border-bottom-width: 0;
+ }
+
+ .md\:border-l-0 {
+ border-left-width: 0;
+ }
+
+ .md\:border-t-2 {
+ border-top-width: 2px;
+ }
+
+ .md\:border-r-2 {
+ border-right-width: 2px;
+ }
+
+ .md\:border-b-2 {
+ border-bottom-width: 2px;
+ }
+
+ .md\:border-l-2 {
+ border-left-width: 2px;
+ }
+
+ .md\:border-t-4 {
+ border-top-width: 4px;
+ }
+
+ .md\:border-r-4 {
+ border-right-width: 4px;
+ }
+
+ .md\:border-b-4 {
+ border-bottom-width: 4px;
+ }
+
+ .md\:border-l-4 {
+ border-left-width: 4px;
+ }
+
+ .md\:border-t-8 {
+ border-top-width: 8px;
+ }
+
+ .md\:border-r-8 {
+ border-right-width: 8px;
+ }
+
+ .md\:border-b-8 {
+ border-bottom-width: 8px;
+ }
+
+ .md\:border-l-8 {
+ border-left-width: 8px;
+ }
+
+ .md\:border-t {
+ border-top-width: 1px;
+ }
+
+ .md\:border-r {
+ border-right-width: 1px;
+ }
+
+ .md\:border-b {
+ border-bottom-width: 1px;
+ }
+
+ .md\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-not-allowed {
+ cursor: not-allowed;
+ }
+
+ .md\:block {
+ display: block;
+ }
+
+ .md\:inline-block {
+ display: inline-block;
+ }
+
+ .md\:inline {
+ display: inline;
+ }
+
+ .md\:flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .md\:inline-flex {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ }
+
+ .md\:table {
+ display: table;
+ }
+
+ .md\:table-row {
+ display: table-row;
+ }
+
+ .md\:table-cell {
+ display: table-cell;
+ }
+
+ .md\:hidden {
+ display: none;
+ }
+
+ .md\:flex-row {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+
+ .md\:flex-row-reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+ }
+
+ .md\:flex-col {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+
+ .md\:flex-col-reverse {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+ }
+
+ .md\:flex-wrap {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+
+ .md\:flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+ }
+
+ .md\:flex-no-wrap {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+
+ .md\:items-start {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+
+ .md\:items-end {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ }
+
+ .md\:items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+
+ .md\:items-baseline {
+ -webkit-box-align: baseline;
+ -ms-flex-align: baseline;
+ align-items: baseline;
+ }
+
+ .md\:items-stretch {
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ }
+
+ .md\:self-auto {
+ -ms-flex-item-align: auto;
+ align-self: auto;
+ }
+
+ .md\:self-start {
+ -ms-flex-item-align: start;
+ align-self: flex-start;
+ }
+
+ .md\:self-end {
+ -ms-flex-item-align: end;
+ align-self: flex-end;
+ }
+
+ .md\:self-center {
+ -ms-flex-item-align: center;
+ align-self: center;
+ }
+
+ .md\:self-stretch {
+ -ms-flex-item-align: stretch;
+ align-self: stretch;
+ }
+
+ .md\:justify-start {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+
+ .md\:justify-end {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ }
+
+ .md\:justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+
+ .md\:justify-between {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+
+ .md\:justify-around {
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ }
+
+ .md\:content-center {
+ -ms-flex-line-pack: center;
+ align-content: center;
+ }
+
+ .md\:content-start {
+ -ms-flex-line-pack: start;
+ align-content: flex-start;
+ }
+
+ .md\:content-end {
+ -ms-flex-line-pack: end;
+ align-content: flex-end;
+ }
+
+ .md\:content-between {
+ -ms-flex-line-pack: justify;
+ align-content: space-between;
+ }
+
+ .md\:content-around {
+ -ms-flex-line-pack: distribute;
+ align-content: space-around;
+ }
+
+ .md\:flex-1 {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0%;
+ flex: 1 1 0%;
+ }
+
+ .md\:flex-auto {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+
+ .md\:flex-initial {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ }
+
+ .md\:flex-none {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ }
+
+ .md\:flex-grow-0 {
+ -webkit-box-flex: 0;
+ -ms-flex-positive: 0;
+ flex-grow: 0;
+ }
+
+ .md\:flex-grow {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ }
+
+ .md\:flex-shrink-0 {
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ }
+
+ .md\:flex-shrink {
+ -ms-flex-negative: 1;
+ flex-shrink: 1;
+ }
+
+ .md\:order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+
+ .md\:order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+
+ .md\:order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+
+ .md\:order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+
+ .md\:order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+
+ .md\:order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+
+ .md\:order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+
+ .md\:order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+
+ .md\:order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+
+ .md\:order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+
+ .md\:order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+
+ .md\:order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+
+ .md\:order-first {
+ -webkit-box-ordinal-group: -9998;
+ -ms-flex-order: -9999;
+ order: -9999;
+ }
+
+ .md\:order-last {
+ -webkit-box-ordinal-group: 10000;
+ -ms-flex-order: 9999;
+ order: 9999;
+ }
+
+ .md\:order-none {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+
+ .md\:float-right {
+ float: right;
+ }
+
+ .md\:float-left {
+ float: left;
+ }
+
+ .md\:float-none {
+ float: none;
+ }
+
+ .md\:clearfix:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+
+ .md\:font-sans {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ }
+
+ .md\:font-serif {
+ font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+ }
+
+ .md\:font-mono {
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ }
+
+ .md\:font-hairline {
+ font-weight: 100;
+ }
+
+ .md\:font-thin {
+ 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\:hover\:font-hairline:hover {
+ font-weight: 100;
+ }
+
+ .md\:hover\:font-thin:hover {
+ font-weight: 200;
+ }
+
+ .md\:hover\:font-light:hover {
+ font-weight: 300;
+ }
+
+ .md\:hover\:font-normal:hover {
+ font-weight: 400;
+ }
+
+ .md\:hover\:font-medium:hover {
+ font-weight: 500;
+ }
+
+ .md\:hover\:font-semibold:hover {
+ font-weight: 600;
+ }
+
+ .md\:hover\:font-bold:hover {
+ font-weight: 700;
+ }
+
+ .md\:hover\:font-extrabold:hover {
+ font-weight: 800;
+ }
+
+ .md\:hover\:font-black:hover {
+ font-weight: 900;
+ }
+
+ .md\:focus\:font-hairline:focus {
+ font-weight: 100;
+ }
+
+ .md\:focus\:font-thin:focus {
+ font-weight: 200;
+ }
+
+ .md\:focus\:font-light:focus {
+ font-weight: 300;
+ }
+
+ .md\:focus\:font-normal:focus {
+ font-weight: 400;
+ }
+
+ .md\:focus\:font-medium:focus {
+ font-weight: 500;
+ }
+
+ .md\:focus\:font-semibold:focus {
+ font-weight: 600;
+ }
+
+ .md\:focus\:font-bold:focus {
+ font-weight: 700;
+ }
+
+ .md\:focus\:font-extrabold:focus {
+ font-weight: 800;
+ }
+
+ .md\:focus\:font-black:focus {
+ font-weight: 900;
+ }
+
+ .md\:h-0 {
+ height: 0;
+ }
+
+ .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-8 {
+ height: 2rem;
+ }
+
+ .md\:h-10 {
+ height: 2.5rem;
+ }
+
+ .md\:h-12 {
+ height: 3rem;
+ }
+
+ .md\:h-16 {
+ height: 4rem;
+ }
+
+ .md\:h-20 {
+ height: 5rem;
+ }
+
+ .md\:h-24 {
+ height: 6rem;
+ }
+
+ .md\:h-32 {
+ height: 8rem;
+ }
+
+ .md\:h-40 {
+ height: 10rem;
+ }
+
+ .md\:h-48 {
+ height: 12rem;
+ }
+
+ .md\:h-56 {
+ height: 14rem;
+ }
+
+ .md\:h-64 {
+ height: 16rem;
+ }
+
+ .md\:h-auto {
+ height: auto;
+ }
+
+ .md\:h-px {
+ height: 1px;
+ }
+
+ .md\:h-full {
+ height: 100%;
+ }
+
+ .md\:h-screen {
+ height: 100vh;
+ }
+
+ .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\: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\:m-0 {
+ margin: 0;
+ }
+
+ .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-8 {
+ margin: 2rem;
+ }
+
+ .md\:m-10 {
+ margin: 2.5rem;
+ }
+
+ .md\:m-12 {
+ margin: 3rem;
+ }
+
+ .md\:m-16 {
+ margin: 4rem;
+ }
+
+ .md\:m-20 {
+ margin: 5rem;
+ }
+
+ .md\:m-24 {
+ margin: 6rem;
+ }
+
+ .md\:m-32 {
+ margin: 8rem;
+ }
+
+ .md\:m-40 {
+ margin: 10rem;
+ }
+
+ .md\:m-48 {
+ margin: 12rem;
+ }
+
+ .md\:m-56 {
+ margin: 14rem;
+ }
+
+ .md\:m-64 {
+ margin: 16rem;
+ }
+
+ .md\:m-auto {
+ margin: auto;
+ }
+
+ .md\:m-px {
+ margin: 1px;
+ }
+
+ .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-8 {
+ margin: -2rem;
+ }
+
+ .md\:-m-10 {
+ margin: -2.5rem;
+ }
+
+ .md\:-m-12 {
+ margin: -3rem;
+ }
+
+ .md\:-m-16 {
+ margin: -4rem;
+ }
+
+ .md\:-m-20 {
+ margin: -5rem;
+ }
+
+ .md\:-m-24 {
+ margin: -6rem;
+ }
+
+ .md\:-m-32 {
+ margin: -8rem;
+ }
+
+ .md\:-m-40 {
+ margin: -10rem;
+ }
+
+ .md\:-m-48 {
+ margin: -12rem;
+ }
+
+ .md\:-m-56 {
+ margin: -14rem;
+ }
+
+ .md\:-m-64 {
+ margin: -16rem;
+ }
+
+ .md\:-m-px {
+ margin: -1px;
+ }
+
+ .md\:my-0 {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .md\:mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+ }
+
+ .md\:my-1 {
+ margin-top: 0.25rem;
+ margin-bottom: 0.25rem;
+ }
+
+ .md\:mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+ }
+
+ .md\:my-2 {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .md\:mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+ }
+
+ .md\:my-3 {
+ margin-top: 0.75rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .md\:mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+ }
+
+ .md\:my-4 {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .md\:mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+ }
+
+ .md\:my-5 {
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+ }
+
+ .md\:mx-5 {
+ margin-left: 1.25rem;
+ margin-right: 1.25rem;
+ }
+
+ .md\:my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .md\:mx-6 {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .md\:my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .md\:mx-8 {
+ margin-left: 2rem;
+ margin-right: 2rem;
+ }
+
+ .md\:my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+ }
+
+ .md\:mx-10 {
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+ }
+
+ .md\:my-12 {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+ }
+
+ .md\:mx-12 {
+ margin-left: 3rem;
+ margin-right: 3rem;
+ }
+
+ .md\:my-16 {
+ margin-top: 4rem;
+ margin-bottom: 4rem;
+ }
+
+ .md\:mx-16 {
+ margin-left: 4rem;
+ margin-right: 4rem;
+ }
+
+ .md\:my-20 {
+ margin-top: 5rem;
+ margin-bottom: 5rem;
+ }
+
+ .md\:mx-20 {
+ margin-left: 5rem;
+ margin-right: 5rem;
+ }
+
+ .md\:my-24 {
+ margin-top: 6rem;
+ margin-bottom: 6rem;
+ }
+
+ .md\:mx-24 {
+ margin-left: 6rem;
+ margin-right: 6rem;
+ }
+
+ .md\:my-32 {
+ margin-top: 8rem;
+ margin-bottom: 8rem;
+ }
+
+ .md\:mx-32 {
+ margin-left: 8rem;
+ margin-right: 8rem;
+ }
+
+ .md\:my-40 {
+ margin-top: 10rem;
+ margin-bottom: 10rem;
+ }
+
+ .md\:mx-40 {
+ margin-left: 10rem;
+ margin-right: 10rem;
+ }
+
+ .md\:my-48 {
+ margin-top: 12rem;
+ margin-bottom: 12rem;
+ }
+
+ .md\:mx-48 {
+ margin-left: 12rem;
+ margin-right: 12rem;
+ }
+
+ .md\:my-56 {
+ margin-top: 14rem;
+ margin-bottom: 14rem;
+ }
+
+ .md\:mx-56 {
+ margin-left: 14rem;
+ margin-right: 14rem;
+ }
+
+ .md\:my-64 {
+ margin-top: 16rem;
+ margin-bottom: 16rem;
+ }
+
+ .md\:mx-64 {
+ margin-left: 16rem;
+ margin-right: 16rem;
+ }
+
+ .md\:my-auto {
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+
+ .md\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .md\:my-px {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ }
+
+ .md\:mx-px {
+ margin-left: 1px;
+ margin-right: 1px;
+ }
+
+ .md\:-my-1 {
+ margin-top: -0.25rem;
+ margin-bottom: -0.25rem;
+ }
+
+ .md\:-mx-1 {
+ margin-left: -0.25rem;
+ margin-right: -0.25rem;
+ }
+
+ .md\:-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+ }
+
+ .md\:-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+ }
+
+ .md\:-my-3 {
+ margin-top: -0.75rem;
+ margin-bottom: -0.75rem;
+ }
+
+ .md\:-mx-3 {
+ margin-left: -0.75rem;
+ margin-right: -0.75rem;
+ }
+
+ .md\:-my-4 {
+ margin-top: -1rem;
+ margin-bottom: -1rem;
+ }
+
+ .md\:-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+ }
+
+ .md\:-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+ }
+
+ .md\:-mx-5 {
+ margin-left: -1.25rem;
+ margin-right: -1.25rem;
+ }
+
+ .md\:-my-6 {
+ margin-top: -1.5rem;
+ margin-bottom: -1.5rem;
+ }
+
+ .md\:-mx-6 {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+ }
+
+ .md\:-my-8 {
+ margin-top: -2rem;
+ margin-bottom: -2rem;
+ }
+
+ .md\:-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+ }
+
+ .md\:-my-10 {
+ margin-top: -2.5rem;
+ margin-bottom: -2.5rem;
+ }
+
+ .md\:-mx-10 {
+ margin-left: -2.5rem;
+ margin-right: -2.5rem;
+ }
+
+ .md\:-my-12 {
+ margin-top: -3rem;
+ margin-bottom: -3rem;
+ }
+
+ .md\:-mx-12 {
+ margin-left: -3rem;
+ margin-right: -3rem;
+ }
+
+ .md\:-my-16 {
+ margin-top: -4rem;
+ margin-bottom: -4rem;
+ }
+
+ .md\:-mx-16 {
+ margin-left: -4rem;
+ margin-right: -4rem;
+ }
+
+ .md\:-my-20 {
+ margin-top: -5rem;
+ margin-bottom: -5rem;
+ }
+
+ .md\:-mx-20 {
+ margin-left: -5rem;
+ margin-right: -5rem;
+ }
+
+ .md\:-my-24 {
+ margin-top: -6rem;
+ margin-bottom: -6rem;
+ }
+
+ .md\:-mx-24 {
+ margin-left: -6rem;
+ margin-right: -6rem;
+ }
+
+ .md\:-my-32 {
+ margin-top: -8rem;
+ margin-bottom: -8rem;
+ }
+
+ .md\:-mx-32 {
+ margin-left: -8rem;
+ margin-right: -8rem;
+ }
+
+ .md\:-my-40 {
+ margin-top: -10rem;
+ margin-bottom: -10rem;
+ }
+
+ .md\:-mx-40 {
+ margin-left: -10rem;
+ margin-right: -10rem;
+ }
+
+ .md\:-my-48 {
+ margin-top: -12rem;
+ margin-bottom: -12rem;
+ }
+
+ .md\:-mx-48 {
+ margin-left: -12rem;
+ margin-right: -12rem;
+ }
+
+ .md\:-my-56 {
+ margin-top: -14rem;
+ margin-bottom: -14rem;
+ }
+
+ .md\:-mx-56 {
+ margin-left: -14rem;
+ margin-right: -14rem;
+ }
+
+ .md\:-my-64 {
+ margin-top: -16rem;
+ margin-bottom: -16rem;
+ }
+
+ .md\:-mx-64 {
+ margin-left: -16rem;
+ margin-right: -16rem;
+ }
+
+ .md\:-my-px {
+ margin-top: -1px;
+ margin-bottom: -1px;
+ }
+
+ .md\:-mx-px {
+ margin-left: -1px;
+ margin-right: -1px;
+ }
+
+ .md\:mt-0 {
+ margin-top: 0;
+ }
+
+ .md\:mr-0 {
+ margin-right: 0;
+ }
+
+ .md\:mb-0 {
+ margin-bottom: 0;
+ }
+
+ .md\:ml-0 {
+ margin-left: 0;
+ }
+
+ .md\:mt-1 {
+ margin-top: 0.25rem;
+ }
+
+ .md\:mr-1 {
+ margin-right: 0.25rem;
+ }
+
+ .md\:mb-1 {
+ margin-bottom: 0.25rem;
+ }
+
+ .md\:ml-1 {
+ margin-left: 0.25rem;
+ }
+
+ .md\:mt-2 {
+ margin-top: 0.5rem;
+ }
+
+ .md\:mr-2 {
+ margin-right: 0.5rem;
+ }
+
+ .md\:mb-2 {
+ margin-bottom: 0.5rem;
+ }
+
+ .md\:ml-2 {
+ margin-left: 0.5rem;
+ }
+
+ .md\:mt-3 {
+ margin-top: 0.75rem;
+ }
+
+ .md\:mr-3 {
+ margin-right: 0.75rem;
+ }
+
+ .md\:mb-3 {
+ margin-bottom: 0.75rem;
+ }
+
+ .md\:ml-3 {
+ margin-left: 0.75rem;
+ }
+
+ .md\:mt-4 {
+ margin-top: 1rem;
+ }
+
+ .md\:mr-4 {
+ margin-right: 1rem;
+ }
+
+ .md\:mb-4 {
+ margin-bottom: 1rem;
+ }
+
+ .md\:ml-4 {
+ margin-left: 1rem;
+ }
+
+ .md\:mt-5 {
+ margin-top: 1.25rem;
+ }
+
+ .md\:mr-5 {
+ margin-right: 1.25rem;
+ }
+
+ .md\:mb-5 {
+ margin-bottom: 1.25rem;
+ }
+
+ .md\:ml-5 {
+ margin-left: 1.25rem;
+ }
+
+ .md\:mt-6 {
+ margin-top: 1.5rem;
+ }
+
+ .md\:mr-6 {
+ margin-right: 1.5rem;
+ }
+
+ .md\:mb-6 {
+ margin-bottom: 1.5rem;
+ }
+
+ .md\:ml-6 {
+ margin-left: 1.5rem;
+ }
+
+ .md\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .md\:mr-8 {
+ margin-right: 2rem;
+ }
+
+ .md\:mb-8 {
+ margin-bottom: 2rem;
+ }
+
+ .md\:ml-8 {
+ margin-left: 2rem;
+ }
+
+ .md\:mt-10 {
+ margin-top: 2.5rem;
+ }
+
+ .md\:mr-10 {
+ margin-right: 2.5rem;
+ }
+
+ .md\:mb-10 {
+ margin-bottom: 2.5rem;
+ }
+
+ .md\:ml-10 {
+ margin-left: 2.5rem;
+ }
+
+ .md\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .md\:mr-12 {
+ margin-right: 3rem;
+ }
+
+ .md\:mb-12 {
+ margin-bottom: 3rem;
+ }
+
+ .md\:ml-12 {
+ margin-left: 3rem;
+ }
+
+ .md\:mt-16 {
+ margin-top: 4rem;
+ }
+
+ .md\:mr-16 {
+ margin-right: 4rem;
+ }
+
+ .md\:mb-16 {
+ margin-bottom: 4rem;
+ }
+
+ .md\:ml-16 {
+ margin-left: 4rem;
+ }
+
+ .md\:mt-20 {
+ margin-top: 5rem;
+ }
+
+ .md\:mr-20 {
+ margin-right: 5rem;
+ }
+
+ .md\:mb-20 {
+ margin-bottom: 5rem;
+ }
+
+ .md\:ml-20 {
+ margin-left: 5rem;
+ }
+
+ .md\:mt-24 {
+ margin-top: 6rem;
+ }
+
+ .md\:mr-24 {
+ margin-right: 6rem;
+ }
+
+ .md\:mb-24 {
+ margin-bottom: 6rem;
+ }
+
+ .md\:ml-24 {
+ margin-left: 6rem;
+ }
+
+ .md\:mt-32 {
+ margin-top: 8rem;
+ }
+
+ .md\:mr-32 {
+ margin-right: 8rem;
+ }
+
+ .md\:mb-32 {
+ margin-bottom: 8rem;
+ }
+
+ .md\:ml-32 {
+ margin-left: 8rem;
+ }
+
+ .md\:mt-40 {
+ margin-top: 10rem;
+ }
+
+ .md\:mr-40 {
+ margin-right: 10rem;
+ }
+
+ .md\:mb-40 {
+ margin-bottom: 10rem;
+ }
+
+ .md\:ml-40 {
+ margin-left: 10rem;
+ }
+
+ .md\:mt-48 {
+ margin-top: 12rem;
+ }
+
+ .md\:mr-48 {
+ margin-right: 12rem;
+ }
+
+ .md\:mb-48 {
+ margin-bottom: 12rem;
+ }
+
+ .md\:ml-48 {
+ margin-left: 12rem;
+ }
+
+ .md\:mt-56 {
+ margin-top: 14rem;
+ }
+
+ .md\:mr-56 {
+ margin-right: 14rem;
+ }
+
+ .md\:mb-56 {
+ margin-bottom: 14rem;
+ }
+
+ .md\:ml-56 {
+ margin-left: 14rem;
+ }
+
+ .md\:mt-64 {
+ margin-top: 16rem;
+ }
+
+ .md\:mr-64 {
+ margin-right: 16rem;
+ }
+
+ .md\:mb-64 {
+ margin-bottom: 16rem;
+ }
+
+ .md\:ml-64 {
+ margin-left: 16rem;
+ }
+
+ .md\:mt-auto {
+ margin-top: auto;
+ }
+
+ .md\:mr-auto {
+ margin-right: auto;
+ }
+
+ .md\:mb-auto {
+ margin-bottom: auto;
+ }
+
+ .md\:ml-auto {
+ margin-left: auto;
+ }
+
+ .md\:mt-px {
+ margin-top: 1px;
+ }
+
+ .md\:mr-px {
+ margin-right: 1px;
+ }
+
+ .md\:mb-px {
+ margin-bottom: 1px;
+ }
+
+ .md\:ml-px {
+ margin-left: 1px;
+ }
+
+ .md\:-mt-1 {
+ margin-top: -0.25rem;
+ }
+
+ .md\:-mr-1 {
+ margin-right: -0.25rem;
+ }
+
+ .md\:-mb-1 {
+ margin-bottom: -0.25rem;
+ }
+
+ .md\:-ml-1 {
+ margin-left: -0.25rem;
+ }
+
+ .md\:-mt-2 {
+ margin-top: -0.5rem;
+ }
+
+ .md\:-mr-2 {
+ margin-right: -0.5rem;
+ }
+
+ .md\:-mb-2 {
+ margin-bottom: -0.5rem;
+ }
+
+ .md\:-ml-2 {
+ margin-left: -0.5rem;
+ }
+
+ .md\:-mt-3 {
+ margin-top: -0.75rem;
+ }
+
+ .md\:-mr-3 {
+ margin-right: -0.75rem;
+ }
+
+ .md\:-mb-3 {
+ margin-bottom: -0.75rem;
+ }
+
+ .md\:-ml-3 {
+ margin-left: -0.75rem;
+ }
+
+ .md\:-mt-4 {
+ margin-top: -1rem;
+ }
+
+ .md\:-mr-4 {
+ margin-right: -1rem;
+ }
+
+ .md\:-mb-4 {
+ margin-bottom: -1rem;
+ }
+
+ .md\:-ml-4 {
+ margin-left: -1rem;
+ }
+
+ .md\:-mt-5 {
+ margin-top: -1.25rem;
+ }
+
+ .md\:-mr-5 {
+ margin-right: -1.25rem;
+ }
+
+ .md\:-mb-5 {
+ margin-bottom: -1.25rem;
+ }
+
+ .md\:-ml-5 {
+ margin-left: -1.25rem;
+ }
+
+ .md\:-mt-6 {
+ margin-top: -1.5rem;
+ }
+
+ .md\:-mr-6 {
+ margin-right: -1.5rem;
+ }
+
+ .md\:-mb-6 {
+ margin-bottom: -1.5rem;
+ }
+
+ .md\:-ml-6 {
+ margin-left: -1.5rem;
+ }
+
+ .md\:-mt-8 {
+ margin-top: -2rem;
+ }
+
+ .md\:-mr-8 {
+ margin-right: -2rem;
+ }
+
+ .md\:-mb-8 {
+ margin-bottom: -2rem;
+ }
+
+ .md\:-ml-8 {
+ margin-left: -2rem;
+ }
+
+ .md\:-mt-10 {
+ margin-top: -2.5rem;
+ }
+
+ .md\:-mr-10 {
+ margin-right: -2.5rem;
+ }
+
+ .md\:-mb-10 {
+ margin-bottom: -2.5rem;
+ }
+
+ .md\:-ml-10 {
+ margin-left: -2.5rem;
+ }
+
+ .md\:-mt-12 {
+ margin-top: -3rem;
+ }
+
+ .md\:-mr-12 {
+ margin-right: -3rem;
+ }
+
+ .md\:-mb-12 {
+ margin-bottom: -3rem;
+ }
+
+ .md\:-ml-12 {
+ margin-left: -3rem;
+ }
+
+ .md\:-mt-16 {
+ margin-top: -4rem;
+ }
+
+ .md\:-mr-16 {
+ margin-right: -4rem;
+ }
+
+ .md\:-mb-16 {
+ margin-bottom: -4rem;
+ }
+
+ .md\:-ml-16 {
+ margin-left: -4rem;
+ }
+
+ .md\:-mt-20 {
+ margin-top: -5rem;
+ }
+
+ .md\:-mr-20 {
+ margin-right: -5rem;
+ }
+
+ .md\:-mb-20 {
+ margin-bottom: -5rem;
+ }
+
+ .md\:-ml-20 {
+ margin-left: -5rem;
+ }
+
+ .md\:-mt-24 {
+ margin-top: -6rem;
+ }
+
+ .md\:-mr-24 {
+ margin-right: -6rem;
+ }
+
+ .md\:-mb-24 {
+ margin-bottom: -6rem;
+ }
+
+ .md\:-ml-24 {
+ margin-left: -6rem;
+ }
+
+ .md\:-mt-32 {
+ margin-top: -8rem;
+ }
+
+ .md\:-mr-32 {
+ margin-right: -8rem;
+ }
+
+ .md\:-mb-32 {
+ margin-bottom: -8rem;
+ }
+
+ .md\:-ml-32 {
+ margin-left: -8rem;
+ }
+
+ .md\:-mt-40 {
+ margin-top: -10rem;
+ }
+
+ .md\:-mr-40 {
+ margin-right: -10rem;
+ }
+
+ .md\:-mb-40 {
+ margin-bottom: -10rem;
+ }
+
+ .md\:-ml-40 {
+ margin-left: -10rem;
+ }
+
+ .md\:-mt-48 {
+ margin-top: -12rem;
+ }
+
+ .md\:-mr-48 {
+ margin-right: -12rem;
+ }
+
+ .md\:-mb-48 {
+ margin-bottom: -12rem;
+ }
+
+ .md\:-ml-48 {
+ margin-left: -12rem;
+ }
+
+ .md\:-mt-56 {
+ margin-top: -14rem;
+ }
+
+ .md\:-mr-56 {
+ margin-right: -14rem;
+ }
+
+ .md\:-mb-56 {
+ margin-bottom: -14rem;
+ }
+
+ .md\:-ml-56 {
+ margin-left: -14rem;
+ }
+
+ .md\:-mt-64 {
+ margin-top: -16rem;
+ }
+
+ .md\:-mr-64 {
+ margin-right: -16rem;
+ }
+
+ .md\:-mb-64 {
+ margin-bottom: -16rem;
+ }
+
+ .md\:-ml-64 {
+ margin-left: -16rem;
+ }
+
+ .md\:-mt-px {
+ margin-top: -1px;
+ }
+
+ .md\:-mr-px {
+ margin-right: -1px;
+ }
+
+ .md\:-mb-px {
+ margin-bottom: -1px;
+ }
+
+ .md\:-ml-px {
+ margin-left: -1px;
+ }
+
+ .md\:max-h-full {
+ max-height: 100%;
+ }
+
+ .md\:max-h-screen {
+ max-height: 100vh;
+ }
+
+ .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-full {
+ max-width: 100%;
+ }
+
+ .md\:min-h-0 {
+ min-height: 0;
+ }
+
+ .md\:min-h-full {
+ min-height: 100%;
+ }
+
+ .md\:min-h-screen {
+ min-height: 100vh;
+ }
+
+ .md\:min-w-0 {
+ min-width: 0;
+ }
+
+ .md\:min-w-full {
+ min-width: 100%;
+ }
+
+ .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\:opacity-0 {
+ opacity: 0;
+ }
+
+ .md\:opacity-25 {
+ opacity: 0.25;
+ }
+
+ .md\:opacity-50 {
+ opacity: 0.5;
+ }
+
+ .md\:opacity-75 {
+ opacity: 0.75;
+ }
+
+ .md\:opacity-100 {
+ opacity: 1;
+ }
+
+ .md\:hover\:opacity-0:hover {
+ opacity: 0;
+ }
+
+ .md\:hover\:opacity-25:hover {
+ opacity: 0.25;
+ }
+
+ .md\:hover\:opacity-50:hover {
+ opacity: 0.5;
+ }
+
+ .md\:hover\:opacity-75:hover {
+ opacity: 0.75;
+ }
+
+ .md\:hover\:opacity-100:hover {
+ opacity: 1;
+ }
+
+ .md\:focus\:opacity-0:focus {
+ opacity: 0;
+ }
+
+ .md\:focus\:opacity-25:focus {
+ opacity: 0.25;
+ }
+
+ .md\:focus\:opacity-50:focus {
+ opacity: 0.5;
+ }
+
+ .md\:focus\:opacity-75:focus {
+ opacity: 0.75;
+ }
+
+ .md\:focus\:opacity-100:focus {
+ opacity: 1;
+ }
+
+ .md\:outline-none {
+ outline: 0;
+ }
+
+ .md\:focus\:outline-none:focus {
+ outline: 0;
+ }
+
+ .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\:scrolling-touch {
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .md\:scrolling-auto {
+ -webkit-overflow-scrolling: auto;
+ }
+
+ .md\:p-0 {
+ padding: 0;
+ }
+
+ .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-8 {
+ padding: 2rem;
+ }
+
+ .md\:p-10 {
+ padding: 2.5rem;
+ }
+
+ .md\:p-12 {
+ padding: 3rem;
+ }
+
+ .md\:p-16 {
+ padding: 4rem;
+ }
+
+ .md\:p-20 {
+ padding: 5rem;
+ }
+
+ .md\:p-24 {
+ padding: 6rem;
+ }
+
+ .md\:p-32 {
+ padding: 8rem;
+ }
+
+ .md\:p-40 {
+ padding: 10rem;
+ }
+
+ .md\:p-48 {
+ padding: 12rem;
+ }
+
+ .md\:p-56 {
+ padding: 14rem;
+ }
+
+ .md\:p-64 {
+ padding: 16rem;
+ }
+
+ .md\:p-px {
+ padding: 1px;
+ }
+
+ .md\:py-0 {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+
+ .md\:px-0 {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .md\:py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ }
+
+ .md\:px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+ }
+
+ .md\:py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ }
+
+ .md\:px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ }
+
+ .md\:py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ }
+
+ .md\:px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ }
+
+ .md\:py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+
+ .md\:px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+
+ .md\:py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+ }
+
+ .md\:px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ }
+
+ .md\:py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+ }
+
+ .md\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .md\:py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+ }
+
+ .md\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
+
+ .md\:py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+ }
+
+ .md\:px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+ }
+
+ .md\:py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ .md\:px-12 {
+ padding-left: 3rem;
+ padding-right: 3rem;
+ }
+
+ .md\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .md\:px-16 {
+ padding-left: 4rem;
+ padding-right: 4rem;
+ }
+
+ .md\:py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+ }
+
+ .md\:px-20 {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .md\:py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+ }
+
+ .md\:px-24 {
+ padding-left: 6rem;
+ padding-right: 6rem;
+ }
+
+ .md\:py-32 {
+ padding-top: 8rem;
+ padding-bottom: 8rem;
+ }
+
+ .md\:px-32 {
+ padding-left: 8rem;
+ padding-right: 8rem;
+ }
+
+ .md\:py-40 {
+ padding-top: 10rem;
+ padding-bottom: 10rem;
+ }
+
+ .md\:px-40 {
+ padding-left: 10rem;
+ padding-right: 10rem;
+ }
+
+ .md\:py-48 {
+ padding-top: 12rem;
+ padding-bottom: 12rem;
+ }
+
+ .md\:px-48 {
+ padding-left: 12rem;
+ padding-right: 12rem;
+ }
+
+ .md\:py-56 {
+ padding-top: 14rem;
+ padding-bottom: 14rem;
+ }
+
+ .md\:px-56 {
+ padding-left: 14rem;
+ padding-right: 14rem;
+ }
+
+ .md\:py-64 {
+ padding-top: 16rem;
+ padding-bottom: 16rem;
+ }
+
+ .md\:px-64 {
+ padding-left: 16rem;
+ padding-right: 16rem;
+ }
+
+ .md\:py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+ }
+
+ .md\:px-px {
+ padding-left: 1px;
+ padding-right: 1px;
+ }
+
+ .md\:pt-0 {
+ padding-top: 0;
+ }
+
+ .md\:pr-0 {
+ padding-right: 0;
+ }
+
+ .md\:pb-0 {
+ padding-bottom: 0;
+ }
+
+ .md\:pl-0 {
+ padding-left: 0;
+ }
+
+ .md\:pt-1 {
+ padding-top: 0.25rem;
+ }
+
+ .md\:pr-1 {
+ padding-right: 0.25rem;
+ }
+
+ .md\:pb-1 {
+ padding-bottom: 0.25rem;
+ }
+
+ .md\:pl-1 {
+ padding-left: 0.25rem;
+ }
+
+ .md\:pt-2 {
+ padding-top: 0.5rem;
+ }
+
+ .md\:pr-2 {
+ padding-right: 0.5rem;
+ }
+
+ .md\:pb-2 {
+ padding-bottom: 0.5rem;
+ }
+
+ .md\:pl-2 {
+ padding-left: 0.5rem;
+ }
+
+ .md\:pt-3 {
+ padding-top: 0.75rem;
+ }
+
+ .md\:pr-3 {
+ padding-right: 0.75rem;
+ }
+
+ .md\:pb-3 {
+ padding-bottom: 0.75rem;
+ }
+
+ .md\:pl-3 {
+ padding-left: 0.75rem;
+ }
+
+ .md\:pt-4 {
+ padding-top: 1rem;
+ }
+
+ .md\:pr-4 {
+ padding-right: 1rem;
+ }
+
+ .md\:pb-4 {
+ padding-bottom: 1rem;
+ }
+
+ .md\:pl-4 {
+ padding-left: 1rem;
+ }
+
+ .md\:pt-5 {
+ padding-top: 1.25rem;
+ }
+
+ .md\:pr-5 {
+ padding-right: 1.25rem;
+ }
+
+ .md\:pb-5 {
+ padding-bottom: 1.25rem;
+ }
+
+ .md\:pl-5 {
+ padding-left: 1.25rem;
+ }
+
+ .md\:pt-6 {
+ padding-top: 1.5rem;
+ }
+
+ .md\:pr-6 {
+ padding-right: 1.5rem;
+ }
+
+ .md\:pb-6 {
+ padding-bottom: 1.5rem;
+ }
+
+ .md\:pl-6 {
+ padding-left: 1.5rem;
+ }
+
+ .md\:pt-8 {
+ padding-top: 2rem;
+ }
+
+ .md\:pr-8 {
+ padding-right: 2rem;
+ }
+
+ .md\:pb-8 {
+ padding-bottom: 2rem;
+ }
+
+ .md\:pl-8 {
+ padding-left: 2rem;
+ }
+
+ .md\:pt-10 {
+ padding-top: 2.5rem;
+ }
+
+ .md\:pr-10 {
+ padding-right: 2.5rem;
+ }
+
+ .md\:pb-10 {
+ padding-bottom: 2.5rem;
+ }
+
+ .md\:pl-10 {
+ padding-left: 2.5rem;
+ }
+
+ .md\:pt-12 {
+ padding-top: 3rem;
+ }
+
+ .md\:pr-12 {
+ padding-right: 3rem;
+ }
+
+ .md\:pb-12 {
+ padding-bottom: 3rem;
+ }
+
+ .md\:pl-12 {
+ padding-left: 3rem;
+ }
+
+ .md\:pt-16 {
+ padding-top: 4rem;
+ }
+
+ .md\:pr-16 {
+ padding-right: 4rem;
+ }
+
+ .md\:pb-16 {
+ padding-bottom: 4rem;
+ }
+
+ .md\:pl-16 {
+ padding-left: 4rem;
+ }
+
+ .md\:pt-20 {
+ padding-top: 5rem;
+ }
+
+ .md\:pr-20 {
+ padding-right: 5rem;
+ }
+
+ .md\:pb-20 {
+ padding-bottom: 5rem;
+ }
+
+ .md\:pl-20 {
+ padding-left: 5rem;
+ }
+
+ .md\:pt-24 {
+ padding-top: 6rem;
+ }
+
+ .md\:pr-24 {
+ padding-right: 6rem;
+ }
+
+ .md\:pb-24 {
+ padding-bottom: 6rem;
+ }
+
+ .md\:pl-24 {
+ padding-left: 6rem;
+ }
+
+ .md\:pt-32 {
+ padding-top: 8rem;
+ }
+
+ .md\:pr-32 {
+ padding-right: 8rem;
+ }
+
+ .md\:pb-32 {
+ padding-bottom: 8rem;
+ }
+
+ .md\:pl-32 {
+ padding-left: 8rem;
+ }
+
+ .md\:pt-40 {
+ padding-top: 10rem;
+ }
+
+ .md\:pr-40 {
+ padding-right: 10rem;
+ }
+
+ .md\:pb-40 {
+ padding-bottom: 10rem;
+ }
+
+ .md\:pl-40 {
+ padding-left: 10rem;
+ }
+
+ .md\:pt-48 {
+ padding-top: 12rem;
+ }
+
+ .md\:pr-48 {
+ padding-right: 12rem;
+ }
+
+ .md\:pb-48 {
+ padding-bottom: 12rem;
+ }
+
+ .md\:pl-48 {
+ padding-left: 12rem;
+ }
+
+ .md\:pt-56 {
+ padding-top: 14rem;
+ }
+
+ .md\:pr-56 {
+ padding-right: 14rem;
+ }
+
+ .md\:pb-56 {
+ padding-bottom: 14rem;
+ }
+
+ .md\:pl-56 {
+ padding-left: 14rem;
+ }
+
+ .md\:pt-64 {
+ padding-top: 16rem;
+ }
+
+ .md\:pr-64 {
+ padding-right: 16rem;
+ }
+
+ .md\:pb-64 {
+ padding-bottom: 16rem;
+ }
+
+ .md\:pl-64 {
+ padding-left: 16rem;
+ }
+
+ .md\:pt-px {
+ padding-top: 1px;
+ }
+
+ .md\:pr-px {
+ padding-right: 1px;
+ }
+
+ .md\:pb-px {
+ padding-bottom: 1px;
+ }
+
+ .md\:pl-px {
+ padding-left: 1px;
+ }
+
+ .md\:placeholder-transparent::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:placeholder-transparent::-moz-placeholder {
+ color: transparent;
+ }
+
+ .md\:placeholder-transparent:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:placeholder-transparent::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:placeholder-transparent::placeholder {
+ color: transparent;
+ }
+
+ .md\:placeholder-black::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .md\:placeholder-black::-moz-placeholder {
+ color: #000;
+ }
+
+ .md\:placeholder-black:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .md\:placeholder-black::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .md\:placeholder-black::placeholder {
+ color: #000;
+ }
+
+ .md\:placeholder-white::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:placeholder-white::-moz-placeholder {
+ color: #fff;
+ }
+
+ .md\:placeholder-white:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:placeholder-white::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:placeholder-white::placeholder {
+ color: #fff;
+ }
+
+ .md\:placeholder-gray-100::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:placeholder-gray-100::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:placeholder-gray-100:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:placeholder-gray-100::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:placeholder-gray-100::placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:placeholder-gray-200::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:placeholder-gray-200::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:placeholder-gray-200:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:placeholder-gray-200::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:placeholder-gray-200::placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:placeholder-gray-300::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:placeholder-gray-300::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:placeholder-gray-300:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:placeholder-gray-300::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:placeholder-gray-300::placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:placeholder-gray-400::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:placeholder-gray-400::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:placeholder-gray-400:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:placeholder-gray-400::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:placeholder-gray-400::placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:placeholder-gray-500::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:placeholder-gray-500::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:placeholder-gray-500:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:placeholder-gray-500::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:placeholder-gray-500::placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:placeholder-gray-600::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:placeholder-gray-600::-moz-placeholder {
+ color: #718096;
+ }
+
+ .md\:placeholder-gray-600:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:placeholder-gray-600::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:placeholder-gray-600::placeholder {
+ color: #718096;
+ }
+
+ .md\:placeholder-gray-700::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:placeholder-gray-700::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:placeholder-gray-700:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:placeholder-gray-700::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:placeholder-gray-700::placeholder {
+ color: #4a5568;
+ }
+
+ .md\:placeholder-gray-800::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:placeholder-gray-800::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:placeholder-gray-800:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:placeholder-gray-800::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:placeholder-gray-800::placeholder {
+ color: #2d3748;
+ }
+
+ .md\:placeholder-gray-900::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:placeholder-gray-900::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:placeholder-gray-900:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:placeholder-gray-900::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:placeholder-gray-900::placeholder {
+ color: #1a202c;
+ }
+
+ .md\:placeholder-red-100::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:placeholder-red-100::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:placeholder-red-100:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:placeholder-red-100::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:placeholder-red-100::placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:placeholder-red-200::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:placeholder-red-200::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:placeholder-red-200:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:placeholder-red-200::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:placeholder-red-200::placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:placeholder-red-300::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:placeholder-red-300::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:placeholder-red-300:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:placeholder-red-300::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:placeholder-red-300::placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:placeholder-red-400::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:placeholder-red-400::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:placeholder-red-400:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:placeholder-red-400::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:placeholder-red-400::placeholder {
+ color: #fc8181;
+ }
+
+ .md\:placeholder-red-500::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:placeholder-red-500::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .md\:placeholder-red-500:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:placeholder-red-500::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:placeholder-red-500::placeholder {
+ color: #f56565;
+ }
+
+ .md\:placeholder-red-600::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:placeholder-red-600::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:placeholder-red-600:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:placeholder-red-600::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:placeholder-red-600::placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:placeholder-red-700::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:placeholder-red-700::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .md\:placeholder-red-700:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:placeholder-red-700::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:placeholder-red-700::placeholder {
+ color: #c53030;
+ }
+
+ .md\:placeholder-red-800::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:placeholder-red-800::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:placeholder-red-800:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:placeholder-red-800::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:placeholder-red-800::placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:placeholder-red-900::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:placeholder-red-900::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:placeholder-red-900:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:placeholder-red-900::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:placeholder-red-900::placeholder {
+ color: #742a2a;
+ }
+
+ .md\:placeholder-orange-100::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:placeholder-orange-100::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:placeholder-orange-100:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:placeholder-orange-100::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:placeholder-orange-100::placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:placeholder-orange-200::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:placeholder-orange-200::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:placeholder-orange-200:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:placeholder-orange-200::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:placeholder-orange-200::placeholder {
+ color: #feebc8;
+ }
+
+ .md\:placeholder-orange-300::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:placeholder-orange-300::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:placeholder-orange-300:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:placeholder-orange-300::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:placeholder-orange-300::placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:placeholder-orange-400::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:placeholder-orange-400::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:placeholder-orange-400:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:placeholder-orange-400::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:placeholder-orange-400::placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:placeholder-orange-500::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:placeholder-orange-500::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:placeholder-orange-500:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:placeholder-orange-500::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:placeholder-orange-500::placeholder {
+ color: #ed8936;
+ }
+
+ .md\:placeholder-orange-600::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:placeholder-orange-600::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:placeholder-orange-600:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:placeholder-orange-600::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:placeholder-orange-600::placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:placeholder-orange-700::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:placeholder-orange-700::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .md\:placeholder-orange-700:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:placeholder-orange-700::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:placeholder-orange-700::placeholder {
+ color: #c05621;
+ }
+
+ .md\:placeholder-orange-800::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:placeholder-orange-800::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:placeholder-orange-800:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:placeholder-orange-800::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:placeholder-orange-800::placeholder {
+ color: #9c4221;
+ }
+
+ .md\:placeholder-orange-900::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:placeholder-orange-900::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:placeholder-orange-900:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:placeholder-orange-900::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:placeholder-orange-900::placeholder {
+ color: #7b341e;
+ }
+
+ .md\:placeholder-yellow-100::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:placeholder-yellow-100::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:placeholder-yellow-100:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:placeholder-yellow-100::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:placeholder-yellow-100::placeholder {
+ color: #fffff0;
+ }
+
+ .md\:placeholder-yellow-200::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:placeholder-yellow-200::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:placeholder-yellow-200:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:placeholder-yellow-200::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:placeholder-yellow-200::placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:placeholder-yellow-300::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:placeholder-yellow-300::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .md\:placeholder-yellow-300:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:placeholder-yellow-300::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:placeholder-yellow-300::placeholder {
+ color: #faf089;
+ }
+
+ .md\:placeholder-yellow-400::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:placeholder-yellow-400::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:placeholder-yellow-400:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:placeholder-yellow-400::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:placeholder-yellow-400::placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:placeholder-yellow-500::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:placeholder-yellow-500::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:placeholder-yellow-500:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:placeholder-yellow-500::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:placeholder-yellow-500::placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:placeholder-yellow-600::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:placeholder-yellow-600::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:placeholder-yellow-600:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:placeholder-yellow-600::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:placeholder-yellow-600::placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:placeholder-yellow-700::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:placeholder-yellow-700::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:placeholder-yellow-700:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:placeholder-yellow-700::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:placeholder-yellow-700::placeholder {
+ color: #b7791f;
+ }
+
+ .md\:placeholder-yellow-800::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:placeholder-yellow-800::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .md\:placeholder-yellow-800:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:placeholder-yellow-800::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:placeholder-yellow-800::placeholder {
+ color: #975a16;
+ }
+
+ .md\:placeholder-yellow-900::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:placeholder-yellow-900::-moz-placeholder {
+ color: #744210;
+ }
+
+ .md\:placeholder-yellow-900:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:placeholder-yellow-900::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:placeholder-yellow-900::placeholder {
+ color: #744210;
+ }
+
+ .md\:placeholder-green-100::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:placeholder-green-100::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:placeholder-green-100:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:placeholder-green-100::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:placeholder-green-100::placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:placeholder-green-200::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:placeholder-green-200::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:placeholder-green-200:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:placeholder-green-200::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:placeholder-green-200::placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:placeholder-green-300::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:placeholder-green-300::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:placeholder-green-300:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:placeholder-green-300::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:placeholder-green-300::placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:placeholder-green-400::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:placeholder-green-400::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .md\:placeholder-green-400:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:placeholder-green-400::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:placeholder-green-400::placeholder {
+ color: #68d391;
+ }
+
+ .md\:placeholder-green-500::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:placeholder-green-500::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:placeholder-green-500:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:placeholder-green-500::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:placeholder-green-500::placeholder {
+ color: #48bb78;
+ }
+
+ .md\:placeholder-green-600::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:placeholder-green-600::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .md\:placeholder-green-600:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:placeholder-green-600::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:placeholder-green-600::placeholder {
+ color: #38a169;
+ }
+
+ .md\:placeholder-green-700::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:placeholder-green-700::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:placeholder-green-700:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:placeholder-green-700::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:placeholder-green-700::placeholder {
+ color: #2f855a;
+ }
+
+ .md\:placeholder-green-800::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:placeholder-green-800::-moz-placeholder {
+ color: #276749;
+ }
+
+ .md\:placeholder-green-800:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:placeholder-green-800::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:placeholder-green-800::placeholder {
+ color: #276749;
+ }
+
+ .md\:placeholder-green-900::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:placeholder-green-900::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .md\:placeholder-green-900:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:placeholder-green-900::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:placeholder-green-900::placeholder {
+ color: #22543d;
+ }
+
+ .md\:placeholder-teal-100::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:placeholder-teal-100::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:placeholder-teal-100:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:placeholder-teal-100::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:placeholder-teal-100::placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:placeholder-teal-200::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:placeholder-teal-200::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:placeholder-teal-200:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:placeholder-teal-200::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:placeholder-teal-200::placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:placeholder-teal-300::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:placeholder-teal-300::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:placeholder-teal-300:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:placeholder-teal-300::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:placeholder-teal-300::placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:placeholder-teal-400::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:placeholder-teal-400::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:placeholder-teal-400:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:placeholder-teal-400::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:placeholder-teal-400::placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:placeholder-teal-500::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:placeholder-teal-500::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:placeholder-teal-500:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:placeholder-teal-500::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:placeholder-teal-500::placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:placeholder-teal-600::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:placeholder-teal-600::-moz-placeholder {
+ color: #319795;
+ }
+
+ .md\:placeholder-teal-600:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:placeholder-teal-600::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:placeholder-teal-600::placeholder {
+ color: #319795;
+ }
+
+ .md\:placeholder-teal-700::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:placeholder-teal-700::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:placeholder-teal-700:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:placeholder-teal-700::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:placeholder-teal-700::placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:placeholder-teal-800::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:placeholder-teal-800::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .md\:placeholder-teal-800:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:placeholder-teal-800::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:placeholder-teal-800::placeholder {
+ color: #285e61;
+ }
+
+ .md\:placeholder-teal-900::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:placeholder-teal-900::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .md\:placeholder-teal-900:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:placeholder-teal-900::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:placeholder-teal-900::placeholder {
+ color: #234e52;
+ }
+
+ .md\:placeholder-blue-100::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:placeholder-blue-100::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:placeholder-blue-100:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:placeholder-blue-100::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:placeholder-blue-100::placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:placeholder-blue-200::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:placeholder-blue-200::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:placeholder-blue-200:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:placeholder-blue-200::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:placeholder-blue-200::placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:placeholder-blue-300::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:placeholder-blue-300::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:placeholder-blue-300:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:placeholder-blue-300::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:placeholder-blue-300::placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:placeholder-blue-400::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:placeholder-blue-400::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:placeholder-blue-400:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:placeholder-blue-400::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:placeholder-blue-400::placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:placeholder-blue-500::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:placeholder-blue-500::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:placeholder-blue-500:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:placeholder-blue-500::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:placeholder-blue-500::placeholder {
+ color: #4299e1;
+ }
+
+ .md\:placeholder-blue-600::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:placeholder-blue-600::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:placeholder-blue-600:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:placeholder-blue-600::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:placeholder-blue-600::placeholder {
+ color: #3182ce;
+ }
+
+ .md\:placeholder-blue-700::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:placeholder-blue-700::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:placeholder-blue-700:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:placeholder-blue-700::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:placeholder-blue-700::placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:placeholder-blue-800::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:placeholder-blue-800::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:placeholder-blue-800:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:placeholder-blue-800::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:placeholder-blue-800::placeholder {
+ color: #2c5282;
+ }
+
+ .md\:placeholder-blue-900::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:placeholder-blue-900::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:placeholder-blue-900:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:placeholder-blue-900::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:placeholder-blue-900::placeholder {
+ color: #2a4365;
+ }
+
+ .md\:placeholder-indigo-100::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:placeholder-indigo-100::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:placeholder-indigo-100:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:placeholder-indigo-100::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:placeholder-indigo-100::placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:placeholder-indigo-200::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:placeholder-indigo-200::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:placeholder-indigo-200:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:placeholder-indigo-200::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:placeholder-indigo-200::placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:placeholder-indigo-300::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:placeholder-indigo-300::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:placeholder-indigo-300:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:placeholder-indigo-300::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:placeholder-indigo-300::placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:placeholder-indigo-400::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:placeholder-indigo-400::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:placeholder-indigo-400:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:placeholder-indigo-400::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:placeholder-indigo-400::placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:placeholder-indigo-500::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:placeholder-indigo-500::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .md\:placeholder-indigo-500:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:placeholder-indigo-500::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:placeholder-indigo-500::placeholder {
+ color: #667eea;
+ }
+
+ .md\:placeholder-indigo-600::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:placeholder-indigo-600::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:placeholder-indigo-600:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:placeholder-indigo-600::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:placeholder-indigo-600::placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:placeholder-indigo-700::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:placeholder-indigo-700::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:placeholder-indigo-700:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:placeholder-indigo-700::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:placeholder-indigo-700::placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:placeholder-indigo-800::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:placeholder-indigo-800::-moz-placeholder {
+ color: #434190;
+ }
+
+ .md\:placeholder-indigo-800:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:placeholder-indigo-800::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:placeholder-indigo-800::placeholder {
+ color: #434190;
+ }
+
+ .md\:placeholder-indigo-900::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:placeholder-indigo-900::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:placeholder-indigo-900:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:placeholder-indigo-900::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:placeholder-indigo-900::placeholder {
+ color: #3c366b;
+ }
+
+ .md\:placeholder-purple-100::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:placeholder-purple-100::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:placeholder-purple-100:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:placeholder-purple-100::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:placeholder-purple-100::placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:placeholder-purple-200::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:placeholder-purple-200::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:placeholder-purple-200:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:placeholder-purple-200::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:placeholder-purple-200::placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:placeholder-purple-300::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:placeholder-purple-300::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:placeholder-purple-300:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:placeholder-purple-300::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:placeholder-purple-300::placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:placeholder-purple-400::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:placeholder-purple-400::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:placeholder-purple-400:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:placeholder-purple-400::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:placeholder-purple-400::placeholder {
+ color: #b794f4;
+ }
+
+ .md\:placeholder-purple-500::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:placeholder-purple-500::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:placeholder-purple-500:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:placeholder-purple-500::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:placeholder-purple-500::placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:placeholder-purple-600::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:placeholder-purple-600::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:placeholder-purple-600:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:placeholder-purple-600::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:placeholder-purple-600::placeholder {
+ color: #805ad5;
+ }
+
+ .md\:placeholder-purple-700::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:placeholder-purple-700::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:placeholder-purple-700:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:placeholder-purple-700::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:placeholder-purple-700::placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:placeholder-purple-800::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:placeholder-purple-800::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:placeholder-purple-800:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:placeholder-purple-800::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:placeholder-purple-800::placeholder {
+ color: #553c9a;
+ }
+
+ .md\:placeholder-purple-900::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:placeholder-purple-900::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .md\:placeholder-purple-900:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:placeholder-purple-900::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:placeholder-purple-900::placeholder {
+ color: #44337a;
+ }
+
+ .md\:placeholder-pink-100::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:placeholder-pink-100::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:placeholder-pink-100:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:placeholder-pink-100::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:placeholder-pink-100::placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:placeholder-pink-200::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:placeholder-pink-200::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:placeholder-pink-200:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:placeholder-pink-200::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:placeholder-pink-200::placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:placeholder-pink-300::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:placeholder-pink-300::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:placeholder-pink-300:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:placeholder-pink-300::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:placeholder-pink-300::placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:placeholder-pink-400::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:placeholder-pink-400::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:placeholder-pink-400:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:placeholder-pink-400::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:placeholder-pink-400::placeholder {
+ color: #f687b3;
+ }
+
+ .md\:placeholder-pink-500::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:placeholder-pink-500::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:placeholder-pink-500:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:placeholder-pink-500::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:placeholder-pink-500::placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:placeholder-pink-600::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:placeholder-pink-600::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:placeholder-pink-600:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:placeholder-pink-600::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:placeholder-pink-600::placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:placeholder-pink-700::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:placeholder-pink-700::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .md\:placeholder-pink-700:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:placeholder-pink-700::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:placeholder-pink-700::placeholder {
+ color: #b83280;
+ }
+
+ .md\:placeholder-pink-800::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:placeholder-pink-800::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .md\:placeholder-pink-800:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:placeholder-pink-800::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:placeholder-pink-800::placeholder {
+ color: #97266d;
+ }
+
+ .md\:placeholder-pink-900::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:placeholder-pink-900::-moz-placeholder {
+ color: #702459;
+ }
+
+ .md\:placeholder-pink-900:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:placeholder-pink-900::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:placeholder-pink-900::placeholder {
+ color: #702459;
+ }
+
+ .md\:focus\:placeholder-transparent:focus::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:focus\:placeholder-transparent:focus::-moz-placeholder {
+ color: transparent;
+ }
+
+ .md\:focus\:placeholder-transparent:focus:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:focus\:placeholder-transparent:focus::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .md\:focus\:placeholder-transparent:focus::placeholder {
+ color: transparent;
+ }
+
+ .md\:focus\:placeholder-black:focus::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .md\:focus\:placeholder-black:focus::-moz-placeholder {
+ color: #000;
+ }
+
+ .md\:focus\:placeholder-black:focus:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .md\:focus\:placeholder-black:focus::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .md\:focus\:placeholder-black:focus::placeholder {
+ color: #000;
+ }
+
+ .md\:focus\:placeholder-white:focus::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:focus\:placeholder-white:focus::-moz-placeholder {
+ color: #fff;
+ }
+
+ .md\:focus\:placeholder-white:focus:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:focus\:placeholder-white:focus::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .md\:focus\:placeholder-white:focus::placeholder {
+ color: #fff;
+ }
+
+ .md\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:placeholder-gray-100:focus::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:placeholder-gray-100:focus::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:placeholder-gray-100:focus::placeholder {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:placeholder-gray-200:focus::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:placeholder-gray-200:focus::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:placeholder-gray-200:focus::placeholder {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:placeholder-gray-300:focus::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:placeholder-gray-300:focus::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:placeholder-gray-300:focus::placeholder {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:placeholder-gray-400:focus::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:placeholder-gray-400:focus::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:placeholder-gray-400:focus::placeholder {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:placeholder-gray-500:focus::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:placeholder-gray-500:focus::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:placeholder-gray-500:focus::placeholder {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:focus\:placeholder-gray-600:focus::-moz-placeholder {
+ color: #718096;
+ }
+
+ .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:focus\:placeholder-gray-600:focus::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .md\:focus\:placeholder-gray-600:focus::placeholder {
+ color: #718096;
+ }
+
+ .md\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:focus\:placeholder-gray-700:focus::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:focus\:placeholder-gray-700:focus::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .md\:focus\:placeholder-gray-700:focus::placeholder {
+ color: #4a5568;
+ }
+
+ .md\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:focus\:placeholder-gray-800:focus::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:focus\:placeholder-gray-800:focus::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .md\:focus\:placeholder-gray-800:focus::placeholder {
+ color: #2d3748;
+ }
+
+ .md\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:focus\:placeholder-gray-900:focus::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:focus\:placeholder-gray-900:focus::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .md\:focus\:placeholder-gray-900:focus::placeholder {
+ color: #1a202c;
+ }
+
+ .md\:focus\:placeholder-red-100:focus::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:placeholder-red-100:focus::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:placeholder-red-100:focus::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:placeholder-red-100:focus::placeholder {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:placeholder-red-200:focus::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:placeholder-red-200:focus::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:placeholder-red-200:focus::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:placeholder-red-200:focus::placeholder {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:placeholder-red-300:focus::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:placeholder-red-300:focus::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:placeholder-red-300:focus::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:placeholder-red-300:focus::placeholder {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:placeholder-red-400:focus::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:focus\:placeholder-red-400:focus::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:focus\:placeholder-red-400:focus::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .md\:focus\:placeholder-red-400:focus::placeholder {
+ color: #fc8181;
+ }
+
+ .md\:focus\:placeholder-red-500:focus::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:focus\:placeholder-red-500:focus::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:focus\:placeholder-red-500:focus::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .md\:focus\:placeholder-red-500:focus::placeholder {
+ color: #f56565;
+ }
+
+ .md\:focus\:placeholder-red-600:focus::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:placeholder-red-600:focus::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:placeholder-red-600:focus::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:placeholder-red-600:focus::placeholder {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:placeholder-red-700:focus::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:focus\:placeholder-red-700:focus::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:focus\:placeholder-red-700:focus::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .md\:focus\:placeholder-red-700:focus::placeholder {
+ color: #c53030;
+ }
+
+ .md\:focus\:placeholder-red-800:focus::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:placeholder-red-800:focus::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:placeholder-red-800:focus::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:placeholder-red-800:focus::placeholder {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:placeholder-red-900:focus::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:focus\:placeholder-red-900:focus::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:focus\:placeholder-red-900:focus::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .md\:focus\:placeholder-red-900:focus::placeholder {
+ color: #742a2a;
+ }
+
+ .md\:focus\:placeholder-orange-100:focus::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:placeholder-orange-100:focus::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:placeholder-orange-100:focus:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:placeholder-orange-100:focus::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:placeholder-orange-100:focus::placeholder {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:placeholder-orange-200:focus::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:focus\:placeholder-orange-200:focus::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:focus\:placeholder-orange-200:focus:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:focus\:placeholder-orange-200:focus::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .md\:focus\:placeholder-orange-200:focus::placeholder {
+ color: #feebc8;
+ }
+
+ .md\:focus\:placeholder-orange-300:focus::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:placeholder-orange-300:focus::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:placeholder-orange-300:focus:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:placeholder-orange-300:focus::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:placeholder-orange-300:focus::placeholder {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:placeholder-orange-400:focus::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:placeholder-orange-400:focus::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:placeholder-orange-400:focus:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:placeholder-orange-400:focus::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:placeholder-orange-400:focus::placeholder {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:placeholder-orange-500:focus::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:focus\:placeholder-orange-500:focus::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:focus\:placeholder-orange-500:focus:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:focus\:placeholder-orange-500:focus::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .md\:focus\:placeholder-orange-500:focus::placeholder {
+ color: #ed8936;
+ }
+
+ .md\:focus\:placeholder-orange-600:focus::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:placeholder-orange-600:focus::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:placeholder-orange-600:focus:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:placeholder-orange-600:focus::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:placeholder-orange-600:focus::placeholder {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:placeholder-orange-700:focus::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:focus\:placeholder-orange-700:focus::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .md\:focus\:placeholder-orange-700:focus:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:focus\:placeholder-orange-700:focus::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .md\:focus\:placeholder-orange-700:focus::placeholder {
+ color: #c05621;
+ }
+
+ .md\:focus\:placeholder-orange-800:focus::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:focus\:placeholder-orange-800:focus::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:focus\:placeholder-orange-800:focus:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:focus\:placeholder-orange-800:focus::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .md\:focus\:placeholder-orange-800:focus::placeholder {
+ color: #9c4221;
+ }
+
+ .md\:focus\:placeholder-orange-900:focus::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:focus\:placeholder-orange-900:focus::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:focus\:placeholder-orange-900:focus:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:focus\:placeholder-orange-900:focus::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .md\:focus\:placeholder-orange-900:focus::placeholder {
+ color: #7b341e;
+ }
+
+ .md\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .md\:focus\:placeholder-yellow-100:focus::placeholder {
+ color: #fffff0;
+ }
+
+ .md\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:placeholder-yellow-200:focus::placeholder {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .md\:focus\:placeholder-yellow-300:focus::placeholder {
+ color: #faf089;
+ }
+
+ .md\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:placeholder-yellow-400:focus::placeholder {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:placeholder-yellow-500:focus::placeholder {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:placeholder-yellow-600:focus::placeholder {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .md\:focus\:placeholder-yellow-700:focus::placeholder {
+ color: #b7791f;
+ }
+
+ .md\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .md\:focus\:placeholder-yellow-800:focus::placeholder {
+ color: #975a16;
+ }
+
+ .md\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder {
+ color: #744210;
+ }
+
+ .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .md\:focus\:placeholder-yellow-900:focus::placeholder {
+ color: #744210;
+ }
+
+ .md\:focus\:placeholder-green-100:focus::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:placeholder-green-100:focus::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:placeholder-green-100:focus::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:placeholder-green-100:focus::placeholder {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:placeholder-green-200:focus::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:placeholder-green-200:focus::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:placeholder-green-200:focus::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:placeholder-green-200:focus::placeholder {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:placeholder-green-300:focus::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:placeholder-green-300:focus::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:placeholder-green-300:focus::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:placeholder-green-300:focus::placeholder {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:placeholder-green-400:focus::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:focus\:placeholder-green-400:focus::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:focus\:placeholder-green-400:focus::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .md\:focus\:placeholder-green-400:focus::placeholder {
+ color: #68d391;
+ }
+
+ .md\:focus\:placeholder-green-500:focus::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:focus\:placeholder-green-500:focus::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:focus\:placeholder-green-500:focus::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .md\:focus\:placeholder-green-500:focus::placeholder {
+ color: #48bb78;
+ }
+
+ .md\:focus\:placeholder-green-600:focus::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:focus\:placeholder-green-600:focus::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:focus\:placeholder-green-600:focus::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .md\:focus\:placeholder-green-600:focus::placeholder {
+ color: #38a169;
+ }
+
+ .md\:focus\:placeholder-green-700:focus::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:focus\:placeholder-green-700:focus::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:focus\:placeholder-green-700:focus::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .md\:focus\:placeholder-green-700:focus::placeholder {
+ color: #2f855a;
+ }
+
+ .md\:focus\:placeholder-green-800:focus::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:focus\:placeholder-green-800:focus::-moz-placeholder {
+ color: #276749;
+ }
+
+ .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:focus\:placeholder-green-800:focus::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .md\:focus\:placeholder-green-800:focus::placeholder {
+ color: #276749;
+ }
+
+ .md\:focus\:placeholder-green-900:focus::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:focus\:placeholder-green-900:focus::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:focus\:placeholder-green-900:focus::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .md\:focus\:placeholder-green-900:focus::placeholder {
+ color: #22543d;
+ }
+
+ .md\:focus\:placeholder-teal-100:focus::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:placeholder-teal-100:focus::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:placeholder-teal-100:focus:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:placeholder-teal-100:focus::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:placeholder-teal-100:focus::placeholder {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:placeholder-teal-200:focus::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:placeholder-teal-200:focus::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:placeholder-teal-200:focus:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:placeholder-teal-200:focus::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:placeholder-teal-200:focus::placeholder {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:placeholder-teal-300:focus::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:placeholder-teal-300:focus::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:placeholder-teal-300:focus:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:placeholder-teal-300:focus::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:placeholder-teal-300:focus::placeholder {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:placeholder-teal-400:focus::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:placeholder-teal-400:focus::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:placeholder-teal-400:focus:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:placeholder-teal-400:focus::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:placeholder-teal-400:focus::placeholder {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:placeholder-teal-500:focus::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:placeholder-teal-500:focus::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:placeholder-teal-500:focus:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:placeholder-teal-500:focus::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:placeholder-teal-500:focus::placeholder {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:placeholder-teal-600:focus::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:focus\:placeholder-teal-600:focus::-moz-placeholder {
+ color: #319795;
+ }
+
+ .md\:focus\:placeholder-teal-600:focus:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:focus\:placeholder-teal-600:focus::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .md\:focus\:placeholder-teal-600:focus::placeholder {
+ color: #319795;
+ }
+
+ .md\:focus\:placeholder-teal-700:focus::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:placeholder-teal-700:focus::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:placeholder-teal-700:focus:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:placeholder-teal-700:focus::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:placeholder-teal-700:focus::placeholder {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:placeholder-teal-800:focus::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:focus\:placeholder-teal-800:focus::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .md\:focus\:placeholder-teal-800:focus:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:focus\:placeholder-teal-800:focus::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .md\:focus\:placeholder-teal-800:focus::placeholder {
+ color: #285e61;
+ }
+
+ .md\:focus\:placeholder-teal-900:focus::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:focus\:placeholder-teal-900:focus::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .md\:focus\:placeholder-teal-900:focus:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:focus\:placeholder-teal-900:focus::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .md\:focus\:placeholder-teal-900:focus::placeholder {
+ color: #234e52;
+ }
+
+ .md\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:placeholder-blue-100:focus::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:placeholder-blue-100:focus::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:placeholder-blue-100:focus::placeholder {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:placeholder-blue-200:focus::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:placeholder-blue-200:focus::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:placeholder-blue-200:focus::placeholder {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:placeholder-blue-300:focus::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:placeholder-blue-300:focus::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:placeholder-blue-300:focus::placeholder {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:placeholder-blue-400:focus::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:placeholder-blue-400:focus::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:placeholder-blue-400:focus::placeholder {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:focus\:placeholder-blue-500:focus::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:focus\:placeholder-blue-500:focus::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .md\:focus\:placeholder-blue-500:focus::placeholder {
+ color: #4299e1;
+ }
+
+ .md\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:focus\:placeholder-blue-600:focus::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:focus\:placeholder-blue-600:focus::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .md\:focus\:placeholder-blue-600:focus::placeholder {
+ color: #3182ce;
+ }
+
+ .md\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:placeholder-blue-700:focus::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:placeholder-blue-700:focus::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:placeholder-blue-700:focus::placeholder {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:focus\:placeholder-blue-800:focus::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:focus\:placeholder-blue-800:focus::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .md\:focus\:placeholder-blue-800:focus::placeholder {
+ color: #2c5282;
+ }
+
+ .md\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:focus\:placeholder-blue-900:focus::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:focus\:placeholder-blue-900:focus::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .md\:focus\:placeholder-blue-900:focus::placeholder {
+ color: #2a4365;
+ }
+
+ .md\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:placeholder-indigo-100:focus::placeholder {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:placeholder-indigo-200:focus::placeholder {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:placeholder-indigo-300:focus::placeholder {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:placeholder-indigo-400:focus::placeholder {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .md\:focus\:placeholder-indigo-500:focus::placeholder {
+ color: #667eea;
+ }
+
+ .md\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:placeholder-indigo-600:focus::placeholder {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:placeholder-indigo-700:focus::placeholder {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder {
+ color: #434190;
+ }
+
+ .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .md\:focus\:placeholder-indigo-800:focus::placeholder {
+ color: #434190;
+ }
+
+ .md\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .md\:focus\:placeholder-indigo-900:focus::placeholder {
+ color: #3c366b;
+ }
+
+ .md\:focus\:placeholder-purple-100:focus::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:placeholder-purple-100:focus::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:placeholder-purple-100:focus:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:placeholder-purple-100:focus::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:placeholder-purple-100:focus::placeholder {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:placeholder-purple-200:focus::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:placeholder-purple-200:focus::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:placeholder-purple-200:focus:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:placeholder-purple-200:focus::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:placeholder-purple-200:focus::placeholder {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:placeholder-purple-300:focus::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:placeholder-purple-300:focus::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:placeholder-purple-300:focus:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:placeholder-purple-300:focus::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:placeholder-purple-300:focus::placeholder {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:placeholder-purple-400:focus::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:focus\:placeholder-purple-400:focus::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:focus\:placeholder-purple-400:focus:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:focus\:placeholder-purple-400:focus::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .md\:focus\:placeholder-purple-400:focus::placeholder {
+ color: #b794f4;
+ }
+
+ .md\:focus\:placeholder-purple-500:focus::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:placeholder-purple-500:focus::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:placeholder-purple-500:focus:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:placeholder-purple-500:focus::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:placeholder-purple-500:focus::placeholder {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:placeholder-purple-600:focus::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:focus\:placeholder-purple-600:focus::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:focus\:placeholder-purple-600:focus:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:focus\:placeholder-purple-600:focus::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .md\:focus\:placeholder-purple-600:focus::placeholder {
+ color: #805ad5;
+ }
+
+ .md\:focus\:placeholder-purple-700:focus::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:placeholder-purple-700:focus::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:placeholder-purple-700:focus:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:placeholder-purple-700:focus::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:placeholder-purple-700:focus::placeholder {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:placeholder-purple-800:focus::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:focus\:placeholder-purple-800:focus::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:focus\:placeholder-purple-800:focus:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:focus\:placeholder-purple-800:focus::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .md\:focus\:placeholder-purple-800:focus::placeholder {
+ color: #553c9a;
+ }
+
+ .md\:focus\:placeholder-purple-900:focus::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:focus\:placeholder-purple-900:focus::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .md\:focus\:placeholder-purple-900:focus:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:focus\:placeholder-purple-900:focus::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .md\:focus\:placeholder-purple-900:focus::placeholder {
+ color: #44337a;
+ }
+
+ .md\:focus\:placeholder-pink-100:focus::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:placeholder-pink-100:focus::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:placeholder-pink-100:focus:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:placeholder-pink-100:focus::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:placeholder-pink-100:focus::placeholder {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:placeholder-pink-200:focus::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:placeholder-pink-200:focus::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:placeholder-pink-200:focus:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:placeholder-pink-200:focus::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:placeholder-pink-200:focus::placeholder {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:placeholder-pink-300:focus::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:placeholder-pink-300:focus::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:placeholder-pink-300:focus:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:placeholder-pink-300:focus::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:placeholder-pink-300:focus::placeholder {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:placeholder-pink-400:focus::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:focus\:placeholder-pink-400:focus::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:focus\:placeholder-pink-400:focus:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:focus\:placeholder-pink-400:focus::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .md\:focus\:placeholder-pink-400:focus::placeholder {
+ color: #f687b3;
+ }
+
+ .md\:focus\:placeholder-pink-500:focus::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:placeholder-pink-500:focus::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:placeholder-pink-500:focus:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:placeholder-pink-500:focus::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:placeholder-pink-500:focus::placeholder {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:placeholder-pink-600:focus::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:placeholder-pink-600:focus::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:placeholder-pink-600:focus:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:placeholder-pink-600:focus::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:placeholder-pink-600:focus::placeholder {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:placeholder-pink-700:focus::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:focus\:placeholder-pink-700:focus::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .md\:focus\:placeholder-pink-700:focus:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:focus\:placeholder-pink-700:focus::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .md\:focus\:placeholder-pink-700:focus::placeholder {
+ color: #b83280;
+ }
+
+ .md\:focus\:placeholder-pink-800:focus::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:focus\:placeholder-pink-800:focus::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .md\:focus\:placeholder-pink-800:focus:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:focus\:placeholder-pink-800:focus::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .md\:focus\:placeholder-pink-800:focus::placeholder {
+ color: #97266d;
+ }
+
+ .md\:focus\:placeholder-pink-900:focus::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:focus\:placeholder-pink-900:focus::-moz-placeholder {
+ color: #702459;
+ }
+
+ .md\:focus\:placeholder-pink-900:focus:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:focus\:placeholder-pink-900:focus::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .md\:focus\:placeholder-pink-900:focus::placeholder {
+ color: #702459;
+ }
+
+ .md\:pointer-events-none {
+ pointer-events: none;
+ }
+
+ .md\:pointer-events-auto {
+ pointer-events: auto;
+ }
+
+ .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: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ }
+
+ .md\:inset-auto {
+ top: auto;
+ right: auto;
+ bottom: auto;
+ left: auto;
+ }
+
+ .md\:inset-y-0 {
+ top: 0;
+ bottom: 0;
+ }
+
+ .md\:inset-x-0 {
+ right: 0;
+ left: 0;
+ }
+
+ .md\:inset-y-auto {
+ top: auto;
+ bottom: auto;
+ }
+
+ .md\:inset-x-auto {
+ right: auto;
+ left: auto;
+ }
+
+ .md\:top-0 {
+ top: 0;
+ }
+
+ .md\:right-0 {
+ right: 0;
+ }
+
+ .md\:bottom-0 {
+ bottom: 0;
+ }
+
+ .md\:left-0 {
+ left: 0;
+ }
+
+ .md\:top-auto {
+ top: auto;
+ }
+
+ .md\:right-auto {
+ right: auto;
+ }
+
+ .md\:bottom-auto {
+ bottom: auto;
+ }
+
+ .md\:left-auto {
+ left: auto;
+ }
+
+ .md\:resize-none {
+ resize: none;
+ }
+
+ .md\:resize-y {
+ resize: vertical;
+ }
+
+ .md\:resize-x {
+ resize: horizontal;
+ }
+
+ .md\:resize {
+ resize: both;
+ }
+
+ .md\:shadow {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:shadow-md {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:shadow-lg {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .md\:shadow-xl {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .md\:shadow-2xl {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .md\:shadow-inner {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:shadow-outline {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .md\:shadow-none {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .md\:hover\:shadow:hover {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:hover\:shadow-md:hover {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:hover\:shadow-lg:hover {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .md\:hover\:shadow-xl:hover {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .md\:hover\:shadow-2xl:hover {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .md\:hover\:shadow-inner:hover {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:hover\:shadow-outline:hover {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .md\:hover\:shadow-none:hover {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .md\:focus\:shadow:focus {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:focus\:shadow-md:focus {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:focus\:shadow-lg:focus {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .md\:focus\:shadow-xl:focus {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .md\:focus\:shadow-2xl:focus {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .md\:focus\:shadow-inner:focus {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .md\:focus\:shadow-outline:focus {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .md\:focus\:shadow-none:focus {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .md\:fill-current {
+ fill: currentColor;
+ }
+
+ .md\:stroke-current {
+ stroke: currentColor;
+ }
+
+ .md\:table-auto {
+ table-layout: auto;
+ }
+
+ .md\:table-fixed {
+ table-layout: fixed;
+ }
+
+ .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\:text-transparent {
+ color: transparent;
+ }
+
+ .md\:text-black {
+ color: #000;
+ }
+
+ .md\:text-white {
+ color: #fff;
+ }
+
+ .md\:text-gray-100 {
+ color: #f7fafc;
+ }
+
+ .md\:text-gray-200 {
+ color: #edf2f7;
+ }
+
+ .md\:text-gray-300 {
+ color: #e2e8f0;
+ }
+
+ .md\:text-gray-400 {
+ color: #cbd5e0;
+ }
+
+ .md\:text-gray-500 {
+ color: #a0aec0;
+ }
+
+ .md\:text-gray-600 {
+ color: #718096;
+ }
+
+ .md\:text-gray-700 {
+ color: #4a5568;
+ }
+
+ .md\:text-gray-800 {
+ color: #2d3748;
+ }
+
+ .md\:text-gray-900 {
+ color: #1a202c;
+ }
+
+ .md\:text-red-100 {
+ color: #fff5f5;
+ }
+
+ .md\:text-red-200 {
+ color: #fed7d7;
+ }
+
+ .md\:text-red-300 {
+ color: #feb2b2;
+ }
+
+ .md\:text-red-400 {
+ color: #fc8181;
+ }
+
+ .md\:text-red-500 {
+ color: #f56565;
+ }
+
+ .md\:text-red-600 {
+ color: #e53e3e;
+ }
+
+ .md\:text-red-700 {
+ color: #c53030;
+ }
+
+ .md\:text-red-800 {
+ color: #9b2c2c;
+ }
+
+ .md\:text-red-900 {
+ color: #742a2a;
+ }
+
+ .md\:text-orange-100 {
+ color: #fffaf0;
+ }
+
+ .md\:text-orange-200 {
+ color: #feebc8;
+ }
+
+ .md\:text-orange-300 {
+ color: #fbd38d;
+ }
+
+ .md\:text-orange-400 {
+ color: #f6ad55;
+ }
+
+ .md\:text-orange-500 {
+ color: #ed8936;
+ }
+
+ .md\:text-orange-600 {
+ color: #dd6b20;
+ }
+
+ .md\:text-orange-700 {
+ color: #c05621;
+ }
+
+ .md\:text-orange-800 {
+ color: #9c4221;
+ }
+
+ .md\:text-orange-900 {
+ color: #7b341e;
+ }
+
+ .md\:text-yellow-100 {
+ color: #fffff0;
+ }
+
+ .md\:text-yellow-200 {
+ color: #fefcbf;
+ }
+
+ .md\:text-yellow-300 {
+ color: #faf089;
+ }
+
+ .md\:text-yellow-400 {
+ color: #f6e05e;
+ }
+
+ .md\:text-yellow-500 {
+ color: #ecc94b;
+ }
+
+ .md\:text-yellow-600 {
+ color: #d69e2e;
+ }
+
+ .md\:text-yellow-700 {
+ color: #b7791f;
+ }
+
+ .md\:text-yellow-800 {
+ color: #975a16;
+ }
+
+ .md\:text-yellow-900 {
+ color: #744210;
+ }
+
+ .md\:text-green-100 {
+ color: #f0fff4;
+ }
+
+ .md\:text-green-200 {
+ color: #c6f6d5;
+ }
+
+ .md\:text-green-300 {
+ color: #9ae6b4;
+ }
+
+ .md\:text-green-400 {
+ color: #68d391;
+ }
+
+ .md\:text-green-500 {
+ color: #48bb78;
+ }
+
+ .md\:text-green-600 {
+ color: #38a169;
+ }
+
+ .md\:text-green-700 {
+ color: #2f855a;
+ }
+
+ .md\:text-green-800 {
+ color: #276749;
+ }
+
+ .md\:text-green-900 {
+ color: #22543d;
+ }
+
+ .md\:text-teal-100 {
+ color: #e6fffa;
+ }
+
+ .md\:text-teal-200 {
+ color: #b2f5ea;
+ }
+
+ .md\:text-teal-300 {
+ color: #81e6d9;
+ }
+
+ .md\:text-teal-400 {
+ color: #4fd1c5;
+ }
+
+ .md\:text-teal-500 {
+ color: #38b2ac;
+ }
+
+ .md\:text-teal-600 {
+ color: #319795;
+ }
+
+ .md\:text-teal-700 {
+ color: #2c7a7b;
+ }
+
+ .md\:text-teal-800 {
+ color: #285e61;
+ }
+
+ .md\:text-teal-900 {
+ color: #234e52;
+ }
+
+ .md\:text-blue-100 {
+ color: #ebf8ff;
+ }
+
+ .md\:text-blue-200 {
+ color: #bee3f8;
+ }
+
+ .md\:text-blue-300 {
+ color: #90cdf4;
+ }
+
+ .md\:text-blue-400 {
+ color: #63b3ed;
+ }
+
+ .md\:text-blue-500 {
+ color: #4299e1;
+ }
+
+ .md\:text-blue-600 {
+ color: #3182ce;
+ }
+
+ .md\:text-blue-700 {
+ color: #2b6cb0;
+ }
+
+ .md\:text-blue-800 {
+ color: #2c5282;
+ }
+
+ .md\:text-blue-900 {
+ color: #2a4365;
+ }
+
+ .md\:text-indigo-100 {
+ color: #ebf4ff;
+ }
+
+ .md\:text-indigo-200 {
+ color: #c3dafe;
+ }
+
+ .md\:text-indigo-300 {
+ color: #a3bffa;
+ }
+
+ .md\:text-indigo-400 {
+ color: #7f9cf5;
+ }
+
+ .md\:text-indigo-500 {
+ color: #667eea;
+ }
+
+ .md\:text-indigo-600 {
+ color: #5a67d8;
+ }
+
+ .md\:text-indigo-700 {
+ color: #4c51bf;
+ }
+
+ .md\:text-indigo-800 {
+ color: #434190;
+ }
+
+ .md\:text-indigo-900 {
+ color: #3c366b;
+ }
+
+ .md\:text-purple-100 {
+ color: #faf5ff;
+ }
+
+ .md\:text-purple-200 {
+ color: #e9d8fd;
+ }
+
+ .md\:text-purple-300 {
+ color: #d6bcfa;
+ }
+
+ .md\:text-purple-400 {
+ color: #b794f4;
+ }
+
+ .md\:text-purple-500 {
+ color: #9f7aea;
+ }
+
+ .md\:text-purple-600 {
+ color: #805ad5;
+ }
+
+ .md\:text-purple-700 {
+ color: #6b46c1;
+ }
+
+ .md\:text-purple-800 {
+ color: #553c9a;
+ }
+
+ .md\:text-purple-900 {
+ color: #44337a;
+ }
+
+ .md\:text-pink-100 {
+ color: #fff5f7;
+ }
+
+ .md\:text-pink-200 {
+ color: #fed7e2;
+ }
+
+ .md\:text-pink-300 {
+ color: #fbb6ce;
+ }
+
+ .md\:text-pink-400 {
+ color: #f687b3;
+ }
+
+ .md\:text-pink-500 {
+ color: #ed64a6;
+ }
+
+ .md\:text-pink-600 {
+ color: #d53f8c;
+ }
+
+ .md\:text-pink-700 {
+ color: #b83280;
+ }
+
+ .md\:text-pink-800 {
+ color: #97266d;
+ }
+
+ .md\:text-pink-900 {
+ color: #702459;
+ }
+
+ .md\:hover\:text-transparent:hover {
+ color: transparent;
+ }
+
+ .md\:hover\:text-black:hover {
+ color: #000;
+ }
+
+ .md\:hover\:text-white:hover {
+ color: #fff;
+ }
+
+ .md\:hover\:text-gray-100:hover {
+ color: #f7fafc;
+ }
+
+ .md\:hover\:text-gray-200:hover {
+ color: #edf2f7;
+ }
+
+ .md\:hover\:text-gray-300:hover {
+ color: #e2e8f0;
+ }
+
+ .md\:hover\:text-gray-400:hover {
+ color: #cbd5e0;
+ }
+
+ .md\:hover\:text-gray-500:hover {
+ color: #a0aec0;
+ }
+
+ .md\:hover\:text-gray-600:hover {
+ color: #718096;
+ }
+
+ .md\:hover\:text-gray-700:hover {
+ color: #4a5568;
+ }
+
+ .md\:hover\:text-gray-800:hover {
+ color: #2d3748;
+ }
+
+ .md\:hover\:text-gray-900:hover {
+ color: #1a202c;
+ }
+
+ .md\:hover\:text-red-100:hover {
+ color: #fff5f5;
+ }
+
+ .md\:hover\:text-red-200:hover {
+ color: #fed7d7;
+ }
+
+ .md\:hover\:text-red-300:hover {
+ color: #feb2b2;
+ }
+
+ .md\:hover\:text-red-400:hover {
+ color: #fc8181;
+ }
+
+ .md\:hover\:text-red-500:hover {
+ color: #f56565;
+ }
+
+ .md\:hover\:text-red-600:hover {
+ color: #e53e3e;
+ }
+
+ .md\:hover\:text-red-700:hover {
+ color: #c53030;
+ }
+
+ .md\:hover\:text-red-800:hover {
+ color: #9b2c2c;
+ }
+
+ .md\:hover\:text-red-900:hover {
+ color: #742a2a;
+ }
+
+ .md\:hover\:text-orange-100:hover {
+ color: #fffaf0;
+ }
+
+ .md\:hover\:text-orange-200:hover {
+ color: #feebc8;
+ }
+
+ .md\:hover\:text-orange-300:hover {
+ color: #fbd38d;
+ }
+
+ .md\:hover\:text-orange-400:hover {
+ color: #f6ad55;
+ }
+
+ .md\:hover\:text-orange-500:hover {
+ color: #ed8936;
+ }
+
+ .md\:hover\:text-orange-600:hover {
+ color: #dd6b20;
+ }
+
+ .md\:hover\:text-orange-700:hover {
+ color: #c05621;
+ }
+
+ .md\:hover\:text-orange-800:hover {
+ color: #9c4221;
+ }
+
+ .md\:hover\:text-orange-900:hover {
+ color: #7b341e;
+ }
+
+ .md\:hover\:text-yellow-100:hover {
+ color: #fffff0;
+ }
+
+ .md\:hover\:text-yellow-200:hover {
+ color: #fefcbf;
+ }
+
+ .md\:hover\:text-yellow-300:hover {
+ color: #faf089;
+ }
+
+ .md\:hover\:text-yellow-400:hover {
+ color: #f6e05e;
+ }
+
+ .md\:hover\:text-yellow-500:hover {
+ color: #ecc94b;
+ }
+
+ .md\:hover\:text-yellow-600:hover {
+ color: #d69e2e;
+ }
+
+ .md\:hover\:text-yellow-700:hover {
+ color: #b7791f;
+ }
+
+ .md\:hover\:text-yellow-800:hover {
+ color: #975a16;
+ }
+
+ .md\:hover\:text-yellow-900:hover {
+ color: #744210;
+ }
+
+ .md\:hover\:text-green-100:hover {
+ color: #f0fff4;
+ }
+
+ .md\:hover\:text-green-200:hover {
+ color: #c6f6d5;
+ }
+
+ .md\:hover\:text-green-300:hover {
+ color: #9ae6b4;
+ }
+
+ .md\:hover\:text-green-400:hover {
+ color: #68d391;
+ }
+
+ .md\:hover\:text-green-500:hover {
+ color: #48bb78;
+ }
+
+ .md\:hover\:text-green-600:hover {
+ color: #38a169;
+ }
+
+ .md\:hover\:text-green-700:hover {
+ color: #2f855a;
+ }
+
+ .md\:hover\:text-green-800:hover {
+ color: #276749;
+ }
+
+ .md\:hover\:text-green-900:hover {
+ color: #22543d;
+ }
+
+ .md\:hover\:text-teal-100:hover {
+ color: #e6fffa;
+ }
+
+ .md\:hover\:text-teal-200:hover {
+ color: #b2f5ea;
+ }
+
+ .md\:hover\:text-teal-300:hover {
+ color: #81e6d9;
+ }
+
+ .md\:hover\:text-teal-400:hover {
+ color: #4fd1c5;
+ }
+
+ .md\:hover\:text-teal-500:hover {
+ color: #38b2ac;
+ }
+
+ .md\:hover\:text-teal-600:hover {
+ color: #319795;
+ }
+
+ .md\:hover\:text-teal-700:hover {
+ color: #2c7a7b;
+ }
+
+ .md\:hover\:text-teal-800:hover {
+ color: #285e61;
+ }
+
+ .md\:hover\:text-teal-900:hover {
+ color: #234e52;
+ }
+
+ .md\:hover\:text-blue-100:hover {
+ color: #ebf8ff;
+ }
+
+ .md\:hover\:text-blue-200:hover {
+ color: #bee3f8;
+ }
+
+ .md\:hover\:text-blue-300:hover {
+ color: #90cdf4;
+ }
+
+ .md\:hover\:text-blue-400:hover {
+ color: #63b3ed;
+ }
+
+ .md\:hover\:text-blue-500:hover {
+ color: #4299e1;
+ }
+
+ .md\:hover\:text-blue-600:hover {
+ color: #3182ce;
+ }
+
+ .md\:hover\:text-blue-700:hover {
+ color: #2b6cb0;
+ }
+
+ .md\:hover\:text-blue-800:hover {
+ color: #2c5282;
+ }
+
+ .md\:hover\:text-blue-900:hover {
+ color: #2a4365;
+ }
+
+ .md\:hover\:text-indigo-100:hover {
+ color: #ebf4ff;
+ }
+
+ .md\:hover\:text-indigo-200:hover {
+ color: #c3dafe;
+ }
+
+ .md\:hover\:text-indigo-300:hover {
+ color: #a3bffa;
+ }
+
+ .md\:hover\:text-indigo-400:hover {
+ color: #7f9cf5;
+ }
+
+ .md\:hover\:text-indigo-500:hover {
+ color: #667eea;
+ }
+
+ .md\:hover\:text-indigo-600:hover {
+ color: #5a67d8;
+ }
+
+ .md\:hover\:text-indigo-700:hover {
+ color: #4c51bf;
+ }
+
+ .md\:hover\:text-indigo-800:hover {
+ color: #434190;
+ }
+
+ .md\:hover\:text-indigo-900:hover {
+ color: #3c366b;
+ }
+
+ .md\:hover\:text-purple-100:hover {
+ color: #faf5ff;
+ }
+
+ .md\:hover\:text-purple-200:hover {
+ color: #e9d8fd;
+ }
+
+ .md\:hover\:text-purple-300:hover {
+ color: #d6bcfa;
+ }
+
+ .md\:hover\:text-purple-400:hover {
+ color: #b794f4;
+ }
+
+ .md\:hover\:text-purple-500:hover {
+ color: #9f7aea;
+ }
+
+ .md\:hover\:text-purple-600:hover {
+ color: #805ad5;
+ }
+
+ .md\:hover\:text-purple-700:hover {
+ color: #6b46c1;
+ }
+
+ .md\:hover\:text-purple-800:hover {
+ color: #553c9a;
+ }
+
+ .md\:hover\:text-purple-900:hover {
+ color: #44337a;
+ }
+
+ .md\:hover\:text-pink-100:hover {
+ color: #fff5f7;
+ }
+
+ .md\:hover\:text-pink-200:hover {
+ color: #fed7e2;
+ }
+
+ .md\:hover\:text-pink-300:hover {
+ color: #fbb6ce;
+ }
+
+ .md\:hover\:text-pink-400:hover {
+ color: #f687b3;
+ }
+
+ .md\:hover\:text-pink-500:hover {
+ color: #ed64a6;
+ }
+
+ .md\:hover\:text-pink-600:hover {
+ color: #d53f8c;
+ }
+
+ .md\:hover\:text-pink-700:hover {
+ color: #b83280;
+ }
+
+ .md\:hover\:text-pink-800:hover {
+ color: #97266d;
+ }
+
+ .md\:hover\:text-pink-900:hover {
+ color: #702459;
+ }
+
+ .md\:focus\:text-transparent:focus {
+ color: transparent;
+ }
+
+ .md\:focus\:text-black:focus {
+ color: #000;
+ }
+
+ .md\:focus\:text-white:focus {
+ color: #fff;
+ }
+
+ .md\:focus\:text-gray-100:focus {
+ color: #f7fafc;
+ }
+
+ .md\:focus\:text-gray-200:focus {
+ color: #edf2f7;
+ }
+
+ .md\:focus\:text-gray-300:focus {
+ color: #e2e8f0;
+ }
+
+ .md\:focus\:text-gray-400:focus {
+ color: #cbd5e0;
+ }
+
+ .md\:focus\:text-gray-500:focus {
+ color: #a0aec0;
+ }
+
+ .md\:focus\:text-gray-600:focus {
+ color: #718096;
+ }
+
+ .md\:focus\:text-gray-700:focus {
+ color: #4a5568;
+ }
+
+ .md\:focus\:text-gray-800:focus {
+ color: #2d3748;
+ }
+
+ .md\:focus\:text-gray-900:focus {
+ color: #1a202c;
+ }
+
+ .md\:focus\:text-red-100:focus {
+ color: #fff5f5;
+ }
+
+ .md\:focus\:text-red-200:focus {
+ color: #fed7d7;
+ }
+
+ .md\:focus\:text-red-300:focus {
+ color: #feb2b2;
+ }
+
+ .md\:focus\:text-red-400:focus {
+ color: #fc8181;
+ }
+
+ .md\:focus\:text-red-500:focus {
+ color: #f56565;
+ }
+
+ .md\:focus\:text-red-600:focus {
+ color: #e53e3e;
+ }
+
+ .md\:focus\:text-red-700:focus {
+ color: #c53030;
+ }
+
+ .md\:focus\:text-red-800:focus {
+ color: #9b2c2c;
+ }
+
+ .md\:focus\:text-red-900:focus {
+ color: #742a2a;
+ }
+
+ .md\:focus\:text-orange-100:focus {
+ color: #fffaf0;
+ }
+
+ .md\:focus\:text-orange-200:focus {
+ color: #feebc8;
+ }
+
+ .md\:focus\:text-orange-300:focus {
+ color: #fbd38d;
+ }
+
+ .md\:focus\:text-orange-400:focus {
+ color: #f6ad55;
+ }
+
+ .md\:focus\:text-orange-500:focus {
+ color: #ed8936;
+ }
+
+ .md\:focus\:text-orange-600:focus {
+ color: #dd6b20;
+ }
+
+ .md\:focus\:text-orange-700:focus {
+ color: #c05621;
+ }
+
+ .md\:focus\:text-orange-800:focus {
+ color: #9c4221;
+ }
+
+ .md\:focus\:text-orange-900:focus {
+ color: #7b341e;
+ }
+
+ .md\:focus\:text-yellow-100:focus {
+ color: #fffff0;
+ }
+
+ .md\:focus\:text-yellow-200:focus {
+ color: #fefcbf;
+ }
+
+ .md\:focus\:text-yellow-300:focus {
+ color: #faf089;
+ }
+
+ .md\:focus\:text-yellow-400:focus {
+ color: #f6e05e;
+ }
+
+ .md\:focus\:text-yellow-500:focus {
+ color: #ecc94b;
+ }
+
+ .md\:focus\:text-yellow-600:focus {
+ color: #d69e2e;
+ }
+
+ .md\:focus\:text-yellow-700:focus {
+ color: #b7791f;
+ }
+
+ .md\:focus\:text-yellow-800:focus {
+ color: #975a16;
+ }
+
+ .md\:focus\:text-yellow-900:focus {
+ color: #744210;
+ }
+
+ .md\:focus\:text-green-100:focus {
+ color: #f0fff4;
+ }
+
+ .md\:focus\:text-green-200:focus {
+ color: #c6f6d5;
+ }
+
+ .md\:focus\:text-green-300:focus {
+ color: #9ae6b4;
+ }
+
+ .md\:focus\:text-green-400:focus {
+ color: #68d391;
+ }
+
+ .md\:focus\:text-green-500:focus {
+ color: #48bb78;
+ }
+
+ .md\:focus\:text-green-600:focus {
+ color: #38a169;
+ }
+
+ .md\:focus\:text-green-700:focus {
+ color: #2f855a;
+ }
+
+ .md\:focus\:text-green-800:focus {
+ color: #276749;
+ }
+
+ .md\:focus\:text-green-900:focus {
+ color: #22543d;
+ }
+
+ .md\:focus\:text-teal-100:focus {
+ color: #e6fffa;
+ }
+
+ .md\:focus\:text-teal-200:focus {
+ color: #b2f5ea;
+ }
+
+ .md\:focus\:text-teal-300:focus {
+ color: #81e6d9;
+ }
+
+ .md\:focus\:text-teal-400:focus {
+ color: #4fd1c5;
+ }
+
+ .md\:focus\:text-teal-500:focus {
+ color: #38b2ac;
+ }
+
+ .md\:focus\:text-teal-600:focus {
+ color: #319795;
+ }
+
+ .md\:focus\:text-teal-700:focus {
+ color: #2c7a7b;
+ }
+
+ .md\:focus\:text-teal-800:focus {
+ color: #285e61;
+ }
+
+ .md\:focus\:text-teal-900:focus {
+ color: #234e52;
+ }
+
+ .md\:focus\:text-blue-100:focus {
+ color: #ebf8ff;
+ }
+
+ .md\:focus\:text-blue-200:focus {
+ color: #bee3f8;
+ }
+
+ .md\:focus\:text-blue-300:focus {
+ color: #90cdf4;
+ }
+
+ .md\:focus\:text-blue-400:focus {
+ color: #63b3ed;
+ }
+
+ .md\:focus\:text-blue-500:focus {
+ color: #4299e1;
+ }
+
+ .md\:focus\:text-blue-600:focus {
+ color: #3182ce;
+ }
+
+ .md\:focus\:text-blue-700:focus {
+ color: #2b6cb0;
+ }
+
+ .md\:focus\:text-blue-800:focus {
+ color: #2c5282;
+ }
+
+ .md\:focus\:text-blue-900:focus {
+ color: #2a4365;
+ }
+
+ .md\:focus\:text-indigo-100:focus {
+ color: #ebf4ff;
+ }
+
+ .md\:focus\:text-indigo-200:focus {
+ color: #c3dafe;
+ }
+
+ .md\:focus\:text-indigo-300:focus {
+ color: #a3bffa;
+ }
+
+ .md\:focus\:text-indigo-400:focus {
+ color: #7f9cf5;
+ }
+
+ .md\:focus\:text-indigo-500:focus {
+ color: #667eea;
+ }
+
+ .md\:focus\:text-indigo-600:focus {
+ color: #5a67d8;
+ }
+
+ .md\:focus\:text-indigo-700:focus {
+ color: #4c51bf;
+ }
+
+ .md\:focus\:text-indigo-800:focus {
+ color: #434190;
+ }
+
+ .md\:focus\:text-indigo-900:focus {
+ color: #3c366b;
+ }
+
+ .md\:focus\:text-purple-100:focus {
+ color: #faf5ff;
+ }
+
+ .md\:focus\:text-purple-200:focus {
+ color: #e9d8fd;
+ }
+
+ .md\:focus\:text-purple-300:focus {
+ color: #d6bcfa;
+ }
+
+ .md\:focus\:text-purple-400:focus {
+ color: #b794f4;
+ }
+
+ .md\:focus\:text-purple-500:focus {
+ color: #9f7aea;
+ }
+
+ .md\:focus\:text-purple-600:focus {
+ color: #805ad5;
+ }
+
+ .md\:focus\:text-purple-700:focus {
+ color: #6b46c1;
+ }
+
+ .md\:focus\:text-purple-800:focus {
+ color: #553c9a;
+ }
+
+ .md\:focus\:text-purple-900:focus {
+ color: #44337a;
+ }
+
+ .md\:focus\:text-pink-100:focus {
+ color: #fff5f7;
+ }
+
+ .md\:focus\:text-pink-200:focus {
+ color: #fed7e2;
+ }
+
+ .md\:focus\:text-pink-300:focus {
+ color: #fbb6ce;
+ }
+
+ .md\:focus\:text-pink-400:focus {
+ color: #f687b3;
+ }
+
+ .md\:focus\:text-pink-500:focus {
+ color: #ed64a6;
+ }
+
+ .md\:focus\:text-pink-600:focus {
+ color: #d53f8c;
+ }
+
+ .md\:focus\:text-pink-700:focus {
+ color: #b83280;
+ }
+
+ .md\:focus\:text-pink-800:focus {
+ color: #97266d;
+ }
+
+ .md\:focus\:text-pink-900:focus {
+ color: #702459;
+ }
+
+ .md\:text-xs {
+ font-size: 0.75rem;
+ }
+
+ .md\:text-sm {
+ font-size: 0.875rem;
+ }
+
+ .md\:text-base {
+ font-size: 1rem;
+ }
+
+ .md\:text-lg {
+ font-size: 1.125rem;
+ }
+
+ .md\:text-xl {
+ font-size: 1.25rem;
+ }
+
+ .md\:text-2xl {
+ font-size: 1.5rem;
+ }
+
+ .md\:text-3xl {
+ font-size: 1.875rem;
+ }
+
+ .md\:text-4xl {
+ font-size: 2.25rem;
+ }
+
+ .md\:text-5xl {
+ font-size: 3rem;
+ }
+
+ .md\:text-6xl {
+ font-size: 4rem;
+ }
+
+ .md\:italic {
+ font-style: italic;
+ }
+
+ .md\:not-italic {
+ font-style: normal;
+ }
+
+ .md\:uppercase {
+ text-transform: uppercase;
+ }
+
+ .md\:lowercase {
+ text-transform: lowercase;
+ }
+
+ .md\:capitalize {
+ text-transform: capitalize;
+ }
+
+ .md\:normal-case {
+ text-transform: none;
+ }
+
+ .md\:underline {
+ text-decoration: underline;
+ }
+
+ .md\:line-through {
+ text-decoration: line-through;
+ }
+
+ .md\:no-underline {
+ 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\:tracking-tighter {
+ letter-spacing: -0.05em;
+ }
+
+ .md\:tracking-tight {
+ letter-spacing: -0.025em;
+ }
+
+ .md\:tracking-normal {
+ letter-spacing: 0;
+ }
+
+ .md\:tracking-wide {
+ letter-spacing: 0.025em;
+ }
+
+ .md\:tracking-wider {
+ letter-spacing: 0.05em;
+ }
+
+ .md\:tracking-widest {
+ letter-spacing: 0.1em;
+ }
+
+ .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;
+ -ms-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\: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\:visible {
+ visibility: visible;
+ }
+
+ .md\:invisible {
+ visibility: hidden;
+ }
+
+ .md\:whitespace-normal {
+ white-space: normal;
+ }
+
+ .md\:whitespace-no-wrap {
+ 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\:truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
+ .md\:w-0 {
+ width: 0;
+ }
+
+ .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-8 {
+ width: 2rem;
+ }
+
+ .md\:w-10 {
+ width: 2.5rem;
+ }
+
+ .md\:w-12 {
+ width: 3rem;
+ }
+
+ .md\:w-16 {
+ width: 4rem;
+ }
+
+ .md\:w-20 {
+ width: 5rem;
+ }
+
+ .md\:w-24 {
+ width: 6rem;
+ }
+
+ .md\:w-32 {
+ width: 8rem;
+ }
+
+ .md\:w-40 {
+ width: 10rem;
+ }
+
+ .md\:w-48 {
+ width: 12rem;
+ }
+
+ .md\:w-56 {
+ width: 14rem;
+ }
+
+ .md\:w-64 {
+ width: 16rem;
+ }
+
+ .md\:w-auto {
+ width: auto;
+ }
+
+ .md\:w-px {
+ width: 1px;
+ }
+
+ .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\: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;
+ }
+}
+
+@media (min-width: 1024px) {
+ .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\: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\:appearance-none {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+
+ .lg\:bg-fixed {
+ background-attachment: fixed;
+ }
+
+ .lg\:bg-local {
+ background-attachment: local;
+ }
+
+ .lg\:bg-scroll {
+ background-attachment: scroll;
+ }
+
+ .lg\:bg-transparent {
+ background-color: transparent;
+ }
+
+ .lg\:bg-black {
+ background-color: #000;
+ }
+
+ .lg\:bg-white {
+ background-color: #fff;
+ }
+
+ .lg\:bg-gray-100 {
+ background-color: #f7fafc;
+ }
+
+ .lg\:bg-gray-200 {
+ background-color: #edf2f7;
+ }
+
+ .lg\:bg-gray-300 {
+ background-color: #e2e8f0;
+ }
+
+ .lg\:bg-gray-400 {
+ background-color: #cbd5e0;
+ }
+
+ .lg\:bg-gray-500 {
+ background-color: #a0aec0;
+ }
+
+ .lg\:bg-gray-600 {
+ background-color: #718096;
+ }
+
+ .lg\:bg-gray-700 {
+ background-color: #4a5568;
+ }
+
+ .lg\:bg-gray-800 {
+ background-color: #2d3748;
+ }
+
+ .lg\:bg-gray-900 {
+ background-color: #1a202c;
+ }
+
+ .lg\:bg-red-100 {
+ background-color: #fff5f5;
+ }
+
+ .lg\:bg-red-200 {
+ background-color: #fed7d7;
+ }
+
+ .lg\:bg-red-300 {
+ background-color: #feb2b2;
+ }
+
+ .lg\:bg-red-400 {
+ background-color: #fc8181;
+ }
+
+ .lg\:bg-red-500 {
+ background-color: #f56565;
+ }
+
+ .lg\:bg-red-600 {
+ background-color: #e53e3e;
+ }
+
+ .lg\:bg-red-700 {
+ background-color: #c53030;
+ }
+
+ .lg\:bg-red-800 {
+ background-color: #9b2c2c;
+ }
+
+ .lg\:bg-red-900 {
+ background-color: #742a2a;
+ }
+
+ .lg\:bg-orange-100 {
+ background-color: #fffaf0;
+ }
+
+ .lg\:bg-orange-200 {
+ background-color: #feebc8;
+ }
+
+ .lg\:bg-orange-300 {
+ background-color: #fbd38d;
+ }
+
+ .lg\:bg-orange-400 {
+ background-color: #f6ad55;
+ }
+
+ .lg\:bg-orange-500 {
+ background-color: #ed8936;
+ }
+
+ .lg\:bg-orange-600 {
+ background-color: #dd6b20;
+ }
+
+ .lg\:bg-orange-700 {
+ background-color: #c05621;
+ }
+
+ .lg\:bg-orange-800 {
+ background-color: #9c4221;
+ }
+
+ .lg\:bg-orange-900 {
+ background-color: #7b341e;
+ }
+
+ .lg\:bg-yellow-100 {
+ background-color: #fffff0;
+ }
+
+ .lg\:bg-yellow-200 {
+ background-color: #fefcbf;
+ }
+
+ .lg\:bg-yellow-300 {
+ background-color: #faf089;
+ }
+
+ .lg\:bg-yellow-400 {
+ background-color: #f6e05e;
+ }
+
+ .lg\:bg-yellow-500 {
+ background-color: #ecc94b;
+ }
+
+ .lg\:bg-yellow-600 {
+ background-color: #d69e2e;
+ }
+
+ .lg\:bg-yellow-700 {
+ background-color: #b7791f;
+ }
+
+ .lg\:bg-yellow-800 {
+ background-color: #975a16;
+ }
+
+ .lg\:bg-yellow-900 {
+ background-color: #744210;
+ }
+
+ .lg\:bg-green-100 {
+ background-color: #f0fff4;
+ }
+
+ .lg\:bg-green-200 {
+ background-color: #c6f6d5;
+ }
+
+ .lg\:bg-green-300 {
+ background-color: #9ae6b4;
+ }
+
+ .lg\:bg-green-400 {
+ background-color: #68d391;
+ }
+
+ .lg\:bg-green-500 {
+ background-color: #48bb78;
+ }
+
+ .lg\:bg-green-600 {
+ background-color: #38a169;
+ }
+
+ .lg\:bg-green-700 {
+ background-color: #2f855a;
+ }
+
+ .lg\:bg-green-800 {
+ background-color: #276749;
+ }
+
+ .lg\:bg-green-900 {
+ background-color: #22543d;
+ }
+
+ .lg\:bg-teal-100 {
+ background-color: #e6fffa;
+ }
+
+ .lg\:bg-teal-200 {
+ background-color: #b2f5ea;
+ }
+
+ .lg\:bg-teal-300 {
+ background-color: #81e6d9;
+ }
+
+ .lg\:bg-teal-400 {
+ background-color: #4fd1c5;
+ }
+
+ .lg\:bg-teal-500 {
+ background-color: #38b2ac;
+ }
+
+ .lg\:bg-teal-600 {
+ background-color: #319795;
+ }
+
+ .lg\:bg-teal-700 {
+ background-color: #2c7a7b;
+ }
+
+ .lg\:bg-teal-800 {
+ background-color: #285e61;
+ }
+
+ .lg\:bg-teal-900 {
+ background-color: #234e52;
+ }
+
+ .lg\:bg-blue-100 {
+ background-color: #ebf8ff;
+ }
+
+ .lg\:bg-blue-200 {
+ background-color: #bee3f8;
+ }
+
+ .lg\:bg-blue-300 {
+ background-color: #90cdf4;
+ }
+
+ .lg\:bg-blue-400 {
+ background-color: #63b3ed;
+ }
+
+ .lg\:bg-blue-500 {
+ background-color: #4299e1;
+ }
+
+ .lg\:bg-blue-600 {
+ background-color: #3182ce;
+ }
+
+ .lg\:bg-blue-700 {
+ background-color: #2b6cb0;
+ }
+
+ .lg\:bg-blue-800 {
+ background-color: #2c5282;
+ }
+
+ .lg\:bg-blue-900 {
+ background-color: #2a4365;
+ }
+
+ .lg\:bg-indigo-100 {
+ background-color: #ebf4ff;
+ }
+
+ .lg\:bg-indigo-200 {
+ background-color: #c3dafe;
+ }
+
+ .lg\:bg-indigo-300 {
+ background-color: #a3bffa;
+ }
+
+ .lg\:bg-indigo-400 {
+ background-color: #7f9cf5;
+ }
+
+ .lg\:bg-indigo-500 {
+ background-color: #667eea;
+ }
+
+ .lg\:bg-indigo-600 {
+ background-color: #5a67d8;
+ }
+
+ .lg\:bg-indigo-700 {
+ background-color: #4c51bf;
+ }
+
+ .lg\:bg-indigo-800 {
+ background-color: #434190;
+ }
+
+ .lg\:bg-indigo-900 {
+ background-color: #3c366b;
+ }
+
+ .lg\:bg-purple-100 {
+ background-color: #faf5ff;
+ }
+
+ .lg\:bg-purple-200 {
+ background-color: #e9d8fd;
+ }
+
+ .lg\:bg-purple-300 {
+ background-color: #d6bcfa;
+ }
+
+ .lg\:bg-purple-400 {
+ background-color: #b794f4;
+ }
+
+ .lg\:bg-purple-500 {
+ background-color: #9f7aea;
+ }
+
+ .lg\:bg-purple-600 {
+ background-color: #805ad5;
+ }
+
+ .lg\:bg-purple-700 {
+ background-color: #6b46c1;
+ }
+
+ .lg\:bg-purple-800 {
+ background-color: #553c9a;
+ }
+
+ .lg\:bg-purple-900 {
+ background-color: #44337a;
+ }
+
+ .lg\:bg-pink-100 {
+ background-color: #fff5f7;
+ }
+
+ .lg\:bg-pink-200 {
+ background-color: #fed7e2;
+ }
+
+ .lg\:bg-pink-300 {
+ background-color: #fbb6ce;
+ }
+
+ .lg\:bg-pink-400 {
+ background-color: #f687b3;
+ }
+
+ .lg\:bg-pink-500 {
+ background-color: #ed64a6;
+ }
+
+ .lg\:bg-pink-600 {
+ background-color: #d53f8c;
+ }
+
+ .lg\:bg-pink-700 {
+ background-color: #b83280;
+ }
+
+ .lg\:bg-pink-800 {
+ background-color: #97266d;
+ }
+
+ .lg\:bg-pink-900 {
+ background-color: #702459;
+ }
+
+ .lg\:hover\:bg-transparent:hover {
+ background-color: transparent;
+ }
+
+ .lg\:hover\:bg-black:hover {
+ background-color: #000;
+ }
+
+ .lg\:hover\:bg-white:hover {
+ background-color: #fff;
+ }
+
+ .lg\:hover\:bg-gray-100:hover {
+ background-color: #f7fafc;
+ }
+
+ .lg\:hover\:bg-gray-200:hover {
+ background-color: #edf2f7;
+ }
+
+ .lg\:hover\:bg-gray-300:hover {
+ background-color: #e2e8f0;
+ }
+
+ .lg\:hover\:bg-gray-400:hover {
+ background-color: #cbd5e0;
+ }
+
+ .lg\:hover\:bg-gray-500:hover {
+ background-color: #a0aec0;
+ }
+
+ .lg\:hover\:bg-gray-600:hover {
+ background-color: #718096;
+ }
+
+ .lg\:hover\:bg-gray-700:hover {
+ background-color: #4a5568;
+ }
+
+ .lg\:hover\:bg-gray-800:hover {
+ background-color: #2d3748;
+ }
+
+ .lg\:hover\:bg-gray-900:hover {
+ background-color: #1a202c;
+ }
+
+ .lg\:hover\:bg-red-100:hover {
+ background-color: #fff5f5;
+ }
+
+ .lg\:hover\:bg-red-200:hover {
+ background-color: #fed7d7;
+ }
+
+ .lg\:hover\:bg-red-300:hover {
+ background-color: #feb2b2;
+ }
+
+ .lg\:hover\:bg-red-400:hover {
+ background-color: #fc8181;
+ }
+
+ .lg\:hover\:bg-red-500:hover {
+ background-color: #f56565;
+ }
+
+ .lg\:hover\:bg-red-600:hover {
+ background-color: #e53e3e;
+ }
+
+ .lg\:hover\:bg-red-700:hover {
+ background-color: #c53030;
+ }
+
+ .lg\:hover\:bg-red-800:hover {
+ background-color: #9b2c2c;
+ }
+
+ .lg\:hover\:bg-red-900:hover {
+ background-color: #742a2a;
+ }
+
+ .lg\:hover\:bg-orange-100:hover {
+ background-color: #fffaf0;
+ }
+
+ .lg\:hover\:bg-orange-200:hover {
+ background-color: #feebc8;
+ }
+
+ .lg\:hover\:bg-orange-300:hover {
+ background-color: #fbd38d;
+ }
+
+ .lg\:hover\:bg-orange-400:hover {
+ background-color: #f6ad55;
+ }
+
+ .lg\:hover\:bg-orange-500:hover {
+ background-color: #ed8936;
+ }
+
+ .lg\:hover\:bg-orange-600:hover {
+ background-color: #dd6b20;
+ }
+
+ .lg\:hover\:bg-orange-700:hover {
+ background-color: #c05621;
+ }
+
+ .lg\:hover\:bg-orange-800:hover {
+ background-color: #9c4221;
+ }
+
+ .lg\:hover\:bg-orange-900:hover {
+ background-color: #7b341e;
+ }
+
+ .lg\:hover\:bg-yellow-100:hover {
+ background-color: #fffff0;
+ }
+
+ .lg\:hover\:bg-yellow-200:hover {
+ background-color: #fefcbf;
+ }
+
+ .lg\:hover\:bg-yellow-300:hover {
+ background-color: #faf089;
+ }
+
+ .lg\:hover\:bg-yellow-400:hover {
+ background-color: #f6e05e;
+ }
+
+ .lg\:hover\:bg-yellow-500:hover {
+ background-color: #ecc94b;
+ }
+
+ .lg\:hover\:bg-yellow-600:hover {
+ background-color: #d69e2e;
+ }
+
+ .lg\:hover\:bg-yellow-700:hover {
+ background-color: #b7791f;
+ }
+
+ .lg\:hover\:bg-yellow-800:hover {
+ background-color: #975a16;
+ }
+
+ .lg\:hover\:bg-yellow-900:hover {
+ background-color: #744210;
+ }
+
+ .lg\:hover\:bg-green-100:hover {
+ background-color: #f0fff4;
+ }
+
+ .lg\:hover\:bg-green-200:hover {
+ background-color: #c6f6d5;
+ }
+
+ .lg\:hover\:bg-green-300:hover {
+ background-color: #9ae6b4;
+ }
+
+ .lg\:hover\:bg-green-400:hover {
+ background-color: #68d391;
+ }
+
+ .lg\:hover\:bg-green-500:hover {
+ background-color: #48bb78;
+ }
+
+ .lg\:hover\:bg-green-600:hover {
+ background-color: #38a169;
+ }
+
+ .lg\:hover\:bg-green-700:hover {
+ background-color: #2f855a;
+ }
+
+ .lg\:hover\:bg-green-800:hover {
+ background-color: #276749;
+ }
+
+ .lg\:hover\:bg-green-900:hover {
+ background-color: #22543d;
+ }
+
+ .lg\:hover\:bg-teal-100:hover {
+ background-color: #e6fffa;
+ }
+
+ .lg\:hover\:bg-teal-200:hover {
+ background-color: #b2f5ea;
+ }
+
+ .lg\:hover\:bg-teal-300:hover {
+ background-color: #81e6d9;
+ }
+
+ .lg\:hover\:bg-teal-400:hover {
+ background-color: #4fd1c5;
+ }
+
+ .lg\:hover\:bg-teal-500:hover {
+ background-color: #38b2ac;
+ }
+
+ .lg\:hover\:bg-teal-600:hover {
+ background-color: #319795;
+ }
+
+ .lg\:hover\:bg-teal-700:hover {
+ background-color: #2c7a7b;
+ }
+
+ .lg\:hover\:bg-teal-800:hover {
+ background-color: #285e61;
+ }
+
+ .lg\:hover\:bg-teal-900:hover {
+ background-color: #234e52;
+ }
+
+ .lg\:hover\:bg-blue-100:hover {
+ background-color: #ebf8ff;
+ }
+
+ .lg\:hover\:bg-blue-200:hover {
+ background-color: #bee3f8;
+ }
+
+ .lg\:hover\:bg-blue-300:hover {
+ background-color: #90cdf4;
+ }
+
+ .lg\:hover\:bg-blue-400:hover {
+ background-color: #63b3ed;
+ }
+
+ .lg\:hover\:bg-blue-500:hover {
+ background-color: #4299e1;
+ }
+
+ .lg\:hover\:bg-blue-600:hover {
+ background-color: #3182ce;
+ }
+
+ .lg\:hover\:bg-blue-700:hover {
+ background-color: #2b6cb0;
+ }
+
+ .lg\:hover\:bg-blue-800:hover {
+ background-color: #2c5282;
+ }
+
+ .lg\:hover\:bg-blue-900:hover {
+ background-color: #2a4365;
+ }
+
+ .lg\:hover\:bg-indigo-100:hover {
+ background-color: #ebf4ff;
+ }
+
+ .lg\:hover\:bg-indigo-200:hover {
+ background-color: #c3dafe;
+ }
+
+ .lg\:hover\:bg-indigo-300:hover {
+ background-color: #a3bffa;
+ }
+
+ .lg\:hover\:bg-indigo-400:hover {
+ background-color: #7f9cf5;
+ }
+
+ .lg\:hover\:bg-indigo-500:hover {
+ background-color: #667eea;
+ }
+
+ .lg\:hover\:bg-indigo-600:hover {
+ background-color: #5a67d8;
+ }
+
+ .lg\:hover\:bg-indigo-700:hover {
+ background-color: #4c51bf;
+ }
+
+ .lg\:hover\:bg-indigo-800:hover {
+ background-color: #434190;
+ }
+
+ .lg\:hover\:bg-indigo-900:hover {
+ background-color: #3c366b;
+ }
+
+ .lg\:hover\:bg-purple-100:hover {
+ background-color: #faf5ff;
+ }
+
+ .lg\:hover\:bg-purple-200:hover {
+ background-color: #e9d8fd;
+ }
+
+ .lg\:hover\:bg-purple-300:hover {
+ background-color: #d6bcfa;
+ }
+
+ .lg\:hover\:bg-purple-400:hover {
+ background-color: #b794f4;
+ }
+
+ .lg\:hover\:bg-purple-500:hover {
+ background-color: #9f7aea;
+ }
+
+ .lg\:hover\:bg-purple-600:hover {
+ background-color: #805ad5;
+ }
+
+ .lg\:hover\:bg-purple-700:hover {
+ background-color: #6b46c1;
+ }
+
+ .lg\:hover\:bg-purple-800:hover {
+ background-color: #553c9a;
+ }
+
+ .lg\:hover\:bg-purple-900:hover {
+ background-color: #44337a;
+ }
+
+ .lg\:hover\:bg-pink-100:hover {
+ background-color: #fff5f7;
+ }
+
+ .lg\:hover\:bg-pink-200:hover {
+ background-color: #fed7e2;
+ }
+
+ .lg\:hover\:bg-pink-300:hover {
+ background-color: #fbb6ce;
+ }
+
+ .lg\:hover\:bg-pink-400:hover {
+ background-color: #f687b3;
+ }
+
+ .lg\:hover\:bg-pink-500:hover {
+ background-color: #ed64a6;
+ }
+
+ .lg\:hover\:bg-pink-600:hover {
+ background-color: #d53f8c;
+ }
+
+ .lg\:hover\:bg-pink-700:hover {
+ background-color: #b83280;
+ }
+
+ .lg\:hover\:bg-pink-800:hover {
+ background-color: #97266d;
+ }
+
+ .lg\:hover\:bg-pink-900:hover {
+ background-color: #702459;
+ }
+
+ .lg\:focus\:bg-transparent:focus {
+ background-color: transparent;
+ }
+
+ .lg\:focus\:bg-black:focus {
+ background-color: #000;
+ }
+
+ .lg\:focus\:bg-white:focus {
+ background-color: #fff;
+ }
+
+ .lg\:focus\:bg-gray-100:focus {
+ background-color: #f7fafc;
+ }
+
+ .lg\:focus\:bg-gray-200:focus {
+ background-color: #edf2f7;
+ }
+
+ .lg\:focus\:bg-gray-300:focus {
+ background-color: #e2e8f0;
+ }
+
+ .lg\:focus\:bg-gray-400:focus {
+ background-color: #cbd5e0;
+ }
+
+ .lg\:focus\:bg-gray-500:focus {
+ background-color: #a0aec0;
+ }
+
+ .lg\:focus\:bg-gray-600:focus {
+ background-color: #718096;
+ }
+
+ .lg\:focus\:bg-gray-700:focus {
+ background-color: #4a5568;
+ }
+
+ .lg\:focus\:bg-gray-800:focus {
+ background-color: #2d3748;
+ }
+
+ .lg\:focus\:bg-gray-900:focus {
+ background-color: #1a202c;
+ }
+
+ .lg\:focus\:bg-red-100:focus {
+ background-color: #fff5f5;
+ }
+
+ .lg\:focus\:bg-red-200:focus {
+ background-color: #fed7d7;
+ }
+
+ .lg\:focus\:bg-red-300:focus {
+ background-color: #feb2b2;
+ }
+
+ .lg\:focus\:bg-red-400:focus {
+ background-color: #fc8181;
+ }
+
+ .lg\:focus\:bg-red-500:focus {
+ background-color: #f56565;
+ }
+
+ .lg\:focus\:bg-red-600:focus {
+ background-color: #e53e3e;
+ }
+
+ .lg\:focus\:bg-red-700:focus {
+ background-color: #c53030;
+ }
+
+ .lg\:focus\:bg-red-800:focus {
+ background-color: #9b2c2c;
+ }
+
+ .lg\:focus\:bg-red-900:focus {
+ background-color: #742a2a;
+ }
+
+ .lg\:focus\:bg-orange-100:focus {
+ background-color: #fffaf0;
+ }
+
+ .lg\:focus\:bg-orange-200:focus {
+ background-color: #feebc8;
+ }
+
+ .lg\:focus\:bg-orange-300:focus {
+ background-color: #fbd38d;
+ }
+
+ .lg\:focus\:bg-orange-400:focus {
+ background-color: #f6ad55;
+ }
+
+ .lg\:focus\:bg-orange-500:focus {
+ background-color: #ed8936;
+ }
+
+ .lg\:focus\:bg-orange-600:focus {
+ background-color: #dd6b20;
+ }
+
+ .lg\:focus\:bg-orange-700:focus {
+ background-color: #c05621;
+ }
+
+ .lg\:focus\:bg-orange-800:focus {
+ background-color: #9c4221;
+ }
+
+ .lg\:focus\:bg-orange-900:focus {
+ background-color: #7b341e;
+ }
+
+ .lg\:focus\:bg-yellow-100:focus {
+ background-color: #fffff0;
+ }
+
+ .lg\:focus\:bg-yellow-200:focus {
+ background-color: #fefcbf;
+ }
+
+ .lg\:focus\:bg-yellow-300:focus {
+ background-color: #faf089;
+ }
+
+ .lg\:focus\:bg-yellow-400:focus {
+ background-color: #f6e05e;
+ }
+
+ .lg\:focus\:bg-yellow-500:focus {
+ background-color: #ecc94b;
+ }
+
+ .lg\:focus\:bg-yellow-600:focus {
+ background-color: #d69e2e;
+ }
+
+ .lg\:focus\:bg-yellow-700:focus {
+ background-color: #b7791f;
+ }
+
+ .lg\:focus\:bg-yellow-800:focus {
+ background-color: #975a16;
+ }
+
+ .lg\:focus\:bg-yellow-900:focus {
+ background-color: #744210;
+ }
+
+ .lg\:focus\:bg-green-100:focus {
+ background-color: #f0fff4;
+ }
+
+ .lg\:focus\:bg-green-200:focus {
+ background-color: #c6f6d5;
+ }
+
+ .lg\:focus\:bg-green-300:focus {
+ background-color: #9ae6b4;
+ }
+
+ .lg\:focus\:bg-green-400:focus {
+ background-color: #68d391;
+ }
+
+ .lg\:focus\:bg-green-500:focus {
+ background-color: #48bb78;
+ }
+
+ .lg\:focus\:bg-green-600:focus {
+ background-color: #38a169;
+ }
+
+ .lg\:focus\:bg-green-700:focus {
+ background-color: #2f855a;
+ }
+
+ .lg\:focus\:bg-green-800:focus {
+ background-color: #276749;
+ }
+
+ .lg\:focus\:bg-green-900:focus {
+ background-color: #22543d;
+ }
+
+ .lg\:focus\:bg-teal-100:focus {
+ background-color: #e6fffa;
+ }
+
+ .lg\:focus\:bg-teal-200:focus {
+ background-color: #b2f5ea;
+ }
+
+ .lg\:focus\:bg-teal-300:focus {
+ background-color: #81e6d9;
+ }
+
+ .lg\:focus\:bg-teal-400:focus {
+ background-color: #4fd1c5;
+ }
+
+ .lg\:focus\:bg-teal-500:focus {
+ background-color: #38b2ac;
+ }
+
+ .lg\:focus\:bg-teal-600:focus {
+ background-color: #319795;
+ }
+
+ .lg\:focus\:bg-teal-700:focus {
+ background-color: #2c7a7b;
+ }
+
+ .lg\:focus\:bg-teal-800:focus {
+ background-color: #285e61;
+ }
+
+ .lg\:focus\:bg-teal-900:focus {
+ background-color: #234e52;
+ }
+
+ .lg\:focus\:bg-blue-100:focus {
+ background-color: #ebf8ff;
+ }
+
+ .lg\:focus\:bg-blue-200:focus {
+ background-color: #bee3f8;
+ }
+
+ .lg\:focus\:bg-blue-300:focus {
+ background-color: #90cdf4;
+ }
+
+ .lg\:focus\:bg-blue-400:focus {
+ background-color: #63b3ed;
+ }
+
+ .lg\:focus\:bg-blue-500:focus {
+ background-color: #4299e1;
+ }
+
+ .lg\:focus\:bg-blue-600:focus {
+ background-color: #3182ce;
+ }
+
+ .lg\:focus\:bg-blue-700:focus {
+ background-color: #2b6cb0;
+ }
+
+ .lg\:focus\:bg-blue-800:focus {
+ background-color: #2c5282;
+ }
+
+ .lg\:focus\:bg-blue-900:focus {
+ background-color: #2a4365;
+ }
+
+ .lg\:focus\:bg-indigo-100:focus {
+ background-color: #ebf4ff;
+ }
+
+ .lg\:focus\:bg-indigo-200:focus {
+ background-color: #c3dafe;
+ }
+
+ .lg\:focus\:bg-indigo-300:focus {
+ background-color: #a3bffa;
+ }
+
+ .lg\:focus\:bg-indigo-400:focus {
+ background-color: #7f9cf5;
+ }
+
+ .lg\:focus\:bg-indigo-500:focus {
+ background-color: #667eea;
+ }
+
+ .lg\:focus\:bg-indigo-600:focus {
+ background-color: #5a67d8;
+ }
+
+ .lg\:focus\:bg-indigo-700:focus {
+ background-color: #4c51bf;
+ }
+
+ .lg\:focus\:bg-indigo-800:focus {
+ background-color: #434190;
+ }
+
+ .lg\:focus\:bg-indigo-900:focus {
+ background-color: #3c366b;
+ }
+
+ .lg\:focus\:bg-purple-100:focus {
+ background-color: #faf5ff;
+ }
+
+ .lg\:focus\:bg-purple-200:focus {
+ background-color: #e9d8fd;
+ }
+
+ .lg\:focus\:bg-purple-300:focus {
+ background-color: #d6bcfa;
+ }
+
+ .lg\:focus\:bg-purple-400:focus {
+ background-color: #b794f4;
+ }
+
+ .lg\:focus\:bg-purple-500:focus {
+ background-color: #9f7aea;
+ }
+
+ .lg\:focus\:bg-purple-600:focus {
+ background-color: #805ad5;
+ }
+
+ .lg\:focus\:bg-purple-700:focus {
+ background-color: #6b46c1;
+ }
+
+ .lg\:focus\:bg-purple-800:focus {
+ background-color: #553c9a;
+ }
+
+ .lg\:focus\:bg-purple-900:focus {
+ background-color: #44337a;
+ }
+
+ .lg\:focus\:bg-pink-100:focus {
+ background-color: #fff5f7;
+ }
+
+ .lg\:focus\:bg-pink-200:focus {
+ background-color: #fed7e2;
+ }
+
+ .lg\:focus\:bg-pink-300:focus {
+ background-color: #fbb6ce;
+ }
+
+ .lg\:focus\:bg-pink-400:focus {
+ background-color: #f687b3;
+ }
+
+ .lg\:focus\:bg-pink-500:focus {
+ background-color: #ed64a6;
+ }
+
+ .lg\:focus\:bg-pink-600:focus {
+ background-color: #d53f8c;
+ }
+
+ .lg\:focus\:bg-pink-700:focus {
+ background-color: #b83280;
+ }
+
+ .lg\:focus\:bg-pink-800:focus {
+ background-color: #97266d;
+ }
+
+ .lg\:focus\:bg-pink-900:focus {
+ background-color: #702459;
+ }
+
+ .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-auto {
+ background-size: auto;
+ }
+
+ .lg\:bg-cover {
+ background-size: cover;
+ }
+
+ .lg\:bg-contain {
+ background-size: contain;
+ }
+
+ .lg\:border-collapse {
+ border-collapse: collapse;
+ }
+
+ .lg\:border-separate {
+ border-collapse: separate;
+ }
+
+ .lg\:border-transparent {
+ border-color: transparent;
+ }
+
+ .lg\:border-black {
+ border-color: #000;
+ }
+
+ .lg\:border-white {
+ border-color: #fff;
+ }
+
+ .lg\:border-gray-100 {
+ border-color: #f7fafc;
+ }
+
+ .lg\:border-gray-200 {
+ border-color: #edf2f7;
+ }
+
+ .lg\:border-gray-300 {
+ border-color: #e2e8f0;
+ }
+
+ .lg\:border-gray-400 {
+ border-color: #cbd5e0;
+ }
+
+ .lg\:border-gray-500 {
+ border-color: #a0aec0;
+ }
+
+ .lg\:border-gray-600 {
+ border-color: #718096;
+ }
+
+ .lg\:border-gray-700 {
+ border-color: #4a5568;
+ }
+
+ .lg\:border-gray-800 {
+ border-color: #2d3748;
+ }
+
+ .lg\:border-gray-900 {
+ border-color: #1a202c;
+ }
+
+ .lg\:border-red-100 {
+ border-color: #fff5f5;
+ }
+
+ .lg\:border-red-200 {
+ border-color: #fed7d7;
+ }
+
+ .lg\:border-red-300 {
+ border-color: #feb2b2;
+ }
+
+ .lg\:border-red-400 {
+ border-color: #fc8181;
+ }
+
+ .lg\:border-red-500 {
+ border-color: #f56565;
+ }
+
+ .lg\:border-red-600 {
+ border-color: #e53e3e;
+ }
+
+ .lg\:border-red-700 {
+ border-color: #c53030;
+ }
+
+ .lg\:border-red-800 {
+ border-color: #9b2c2c;
+ }
+
+ .lg\:border-red-900 {
+ border-color: #742a2a;
+ }
+
+ .lg\:border-orange-100 {
+ border-color: #fffaf0;
+ }
+
+ .lg\:border-orange-200 {
+ border-color: #feebc8;
+ }
+
+ .lg\:border-orange-300 {
+ border-color: #fbd38d;
+ }
+
+ .lg\:border-orange-400 {
+ border-color: #f6ad55;
+ }
+
+ .lg\:border-orange-500 {
+ border-color: #ed8936;
+ }
+
+ .lg\:border-orange-600 {
+ border-color: #dd6b20;
+ }
+
+ .lg\:border-orange-700 {
+ border-color: #c05621;
+ }
+
+ .lg\:border-orange-800 {
+ border-color: #9c4221;
+ }
+
+ .lg\:border-orange-900 {
+ border-color: #7b341e;
+ }
+
+ .lg\:border-yellow-100 {
+ border-color: #fffff0;
+ }
+
+ .lg\:border-yellow-200 {
+ border-color: #fefcbf;
+ }
+
+ .lg\:border-yellow-300 {
+ border-color: #faf089;
+ }
+
+ .lg\:border-yellow-400 {
+ border-color: #f6e05e;
+ }
+
+ .lg\:border-yellow-500 {
+ border-color: #ecc94b;
+ }
+
+ .lg\:border-yellow-600 {
+ border-color: #d69e2e;
+ }
+
+ .lg\:border-yellow-700 {
+ border-color: #b7791f;
+ }
+
+ .lg\:border-yellow-800 {
+ border-color: #975a16;
+ }
+
+ .lg\:border-yellow-900 {
+ border-color: #744210;
+ }
+
+ .lg\:border-green-100 {
+ border-color: #f0fff4;
+ }
+
+ .lg\:border-green-200 {
+ border-color: #c6f6d5;
+ }
+
+ .lg\:border-green-300 {
+ border-color: #9ae6b4;
+ }
+
+ .lg\:border-green-400 {
+ border-color: #68d391;
+ }
+
+ .lg\:border-green-500 {
+ border-color: #48bb78;
+ }
+
+ .lg\:border-green-600 {
+ border-color: #38a169;
+ }
+
+ .lg\:border-green-700 {
+ border-color: #2f855a;
+ }
+
+ .lg\:border-green-800 {
+ border-color: #276749;
+ }
+
+ .lg\:border-green-900 {
+ border-color: #22543d;
+ }
+
+ .lg\:border-teal-100 {
+ border-color: #e6fffa;
+ }
+
+ .lg\:border-teal-200 {
+ border-color: #b2f5ea;
+ }
+
+ .lg\:border-teal-300 {
+ border-color: #81e6d9;
+ }
+
+ .lg\:border-teal-400 {
+ border-color: #4fd1c5;
+ }
+
+ .lg\:border-teal-500 {
+ border-color: #38b2ac;
+ }
+
+ .lg\:border-teal-600 {
+ border-color: #319795;
+ }
+
+ .lg\:border-teal-700 {
+ border-color: #2c7a7b;
+ }
+
+ .lg\:border-teal-800 {
+ border-color: #285e61;
+ }
+
+ .lg\:border-teal-900 {
+ border-color: #234e52;
+ }
+
+ .lg\:border-blue-100 {
+ border-color: #ebf8ff;
+ }
+
+ .lg\:border-blue-200 {
+ border-color: #bee3f8;
+ }
+
+ .lg\:border-blue-300 {
+ border-color: #90cdf4;
+ }
+
+ .lg\:border-blue-400 {
+ border-color: #63b3ed;
+ }
+
+ .lg\:border-blue-500 {
+ border-color: #4299e1;
+ }
+
+ .lg\:border-blue-600 {
+ border-color: #3182ce;
+ }
+
+ .lg\:border-blue-700 {
+ border-color: #2b6cb0;
+ }
+
+ .lg\:border-blue-800 {
+ border-color: #2c5282;
+ }
+
+ .lg\:border-blue-900 {
+ border-color: #2a4365;
+ }
+
+ .lg\:border-indigo-100 {
+ border-color: #ebf4ff;
+ }
+
+ .lg\:border-indigo-200 {
+ border-color: #c3dafe;
+ }
+
+ .lg\:border-indigo-300 {
+ border-color: #a3bffa;
+ }
+
+ .lg\:border-indigo-400 {
+ border-color: #7f9cf5;
+ }
+
+ .lg\:border-indigo-500 {
+ border-color: #667eea;
+ }
+
+ .lg\:border-indigo-600 {
+ border-color: #5a67d8;
+ }
+
+ .lg\:border-indigo-700 {
+ border-color: #4c51bf;
+ }
+
+ .lg\:border-indigo-800 {
+ border-color: #434190;
+ }
+
+ .lg\:border-indigo-900 {
+ border-color: #3c366b;
+ }
+
+ .lg\:border-purple-100 {
+ border-color: #faf5ff;
+ }
+
+ .lg\:border-purple-200 {
+ border-color: #e9d8fd;
+ }
+
+ .lg\:border-purple-300 {
+ border-color: #d6bcfa;
+ }
+
+ .lg\:border-purple-400 {
+ border-color: #b794f4;
+ }
+
+ .lg\:border-purple-500 {
+ border-color: #9f7aea;
+ }
+
+ .lg\:border-purple-600 {
+ border-color: #805ad5;
+ }
+
+ .lg\:border-purple-700 {
+ border-color: #6b46c1;
+ }
+
+ .lg\:border-purple-800 {
+ border-color: #553c9a;
+ }
+
+ .lg\:border-purple-900 {
+ border-color: #44337a;
+ }
+
+ .lg\:border-pink-100 {
+ border-color: #fff5f7;
+ }
+
+ .lg\:border-pink-200 {
+ border-color: #fed7e2;
+ }
+
+ .lg\:border-pink-300 {
+ border-color: #fbb6ce;
+ }
+
+ .lg\:border-pink-400 {
+ border-color: #f687b3;
+ }
+
+ .lg\:border-pink-500 {
+ border-color: #ed64a6;
+ }
+
+ .lg\:border-pink-600 {
+ border-color: #d53f8c;
+ }
+
+ .lg\:border-pink-700 {
+ border-color: #b83280;
+ }
+
+ .lg\:border-pink-800 {
+ border-color: #97266d;
+ }
+
+ .lg\:border-pink-900 {
+ border-color: #702459;
+ }
+
+ .lg\:hover\:border-transparent:hover {
+ border-color: transparent;
+ }
+
+ .lg\:hover\:border-black:hover {
+ border-color: #000;
+ }
+
+ .lg\:hover\:border-white:hover {
+ border-color: #fff;
+ }
+
+ .lg\:hover\:border-gray-100:hover {
+ border-color: #f7fafc;
+ }
+
+ .lg\:hover\:border-gray-200:hover {
+ border-color: #edf2f7;
+ }
+
+ .lg\:hover\:border-gray-300:hover {
+ border-color: #e2e8f0;
+ }
+
+ .lg\:hover\:border-gray-400:hover {
+ border-color: #cbd5e0;
+ }
+
+ .lg\:hover\:border-gray-500:hover {
+ border-color: #a0aec0;
+ }
+
+ .lg\:hover\:border-gray-600:hover {
+ border-color: #718096;
+ }
+
+ .lg\:hover\:border-gray-700:hover {
+ border-color: #4a5568;
+ }
+
+ .lg\:hover\:border-gray-800:hover {
+ border-color: #2d3748;
+ }
+
+ .lg\:hover\:border-gray-900:hover {
+ border-color: #1a202c;
+ }
+
+ .lg\:hover\:border-red-100:hover {
+ border-color: #fff5f5;
+ }
+
+ .lg\:hover\:border-red-200:hover {
+ border-color: #fed7d7;
+ }
+
+ .lg\:hover\:border-red-300:hover {
+ border-color: #feb2b2;
+ }
+
+ .lg\:hover\:border-red-400:hover {
+ border-color: #fc8181;
+ }
+
+ .lg\:hover\:border-red-500:hover {
+ border-color: #f56565;
+ }
+
+ .lg\:hover\:border-red-600:hover {
+ border-color: #e53e3e;
+ }
+
+ .lg\:hover\:border-red-700:hover {
+ border-color: #c53030;
+ }
+
+ .lg\:hover\:border-red-800:hover {
+ border-color: #9b2c2c;
+ }
+
+ .lg\:hover\:border-red-900:hover {
+ border-color: #742a2a;
+ }
+
+ .lg\:hover\:border-orange-100:hover {
+ border-color: #fffaf0;
+ }
+
+ .lg\:hover\:border-orange-200:hover {
+ border-color: #feebc8;
+ }
+
+ .lg\:hover\:border-orange-300:hover {
+ border-color: #fbd38d;
+ }
+
+ .lg\:hover\:border-orange-400:hover {
+ border-color: #f6ad55;
+ }
+
+ .lg\:hover\:border-orange-500:hover {
+ border-color: #ed8936;
+ }
+
+ .lg\:hover\:border-orange-600:hover {
+ border-color: #dd6b20;
+ }
+
+ .lg\:hover\:border-orange-700:hover {
+ border-color: #c05621;
+ }
+
+ .lg\:hover\:border-orange-800:hover {
+ border-color: #9c4221;
+ }
+
+ .lg\:hover\:border-orange-900:hover {
+ border-color: #7b341e;
+ }
+
+ .lg\:hover\:border-yellow-100:hover {
+ border-color: #fffff0;
+ }
+
+ .lg\:hover\:border-yellow-200:hover {
+ border-color: #fefcbf;
+ }
+
+ .lg\:hover\:border-yellow-300:hover {
+ border-color: #faf089;
+ }
+
+ .lg\:hover\:border-yellow-400:hover {
+ border-color: #f6e05e;
+ }
+
+ .lg\:hover\:border-yellow-500:hover {
+ border-color: #ecc94b;
+ }
+
+ .lg\:hover\:border-yellow-600:hover {
+ border-color: #d69e2e;
+ }
+
+ .lg\:hover\:border-yellow-700:hover {
+ border-color: #b7791f;
+ }
+
+ .lg\:hover\:border-yellow-800:hover {
+ border-color: #975a16;
+ }
+
+ .lg\:hover\:border-yellow-900:hover {
+ border-color: #744210;
+ }
+
+ .lg\:hover\:border-green-100:hover {
+ border-color: #f0fff4;
+ }
+
+ .lg\:hover\:border-green-200:hover {
+ border-color: #c6f6d5;
+ }
+
+ .lg\:hover\:border-green-300:hover {
+ border-color: #9ae6b4;
+ }
+
+ .lg\:hover\:border-green-400:hover {
+ border-color: #68d391;
+ }
+
+ .lg\:hover\:border-green-500:hover {
+ border-color: #48bb78;
+ }
+
+ .lg\:hover\:border-green-600:hover {
+ border-color: #38a169;
+ }
+
+ .lg\:hover\:border-green-700:hover {
+ border-color: #2f855a;
+ }
+
+ .lg\:hover\:border-green-800:hover {
+ border-color: #276749;
+ }
+
+ .lg\:hover\:border-green-900:hover {
+ border-color: #22543d;
+ }
+
+ .lg\:hover\:border-teal-100:hover {
+ border-color: #e6fffa;
+ }
+
+ .lg\:hover\:border-teal-200:hover {
+ border-color: #b2f5ea;
+ }
+
+ .lg\:hover\:border-teal-300:hover {
+ border-color: #81e6d9;
+ }
+
+ .lg\:hover\:border-teal-400:hover {
+ border-color: #4fd1c5;
+ }
+
+ .lg\:hover\:border-teal-500:hover {
+ border-color: #38b2ac;
+ }
+
+ .lg\:hover\:border-teal-600:hover {
+ border-color: #319795;
+ }
+
+ .lg\:hover\:border-teal-700:hover {
+ border-color: #2c7a7b;
+ }
+
+ .lg\:hover\:border-teal-800:hover {
+ border-color: #285e61;
+ }
+
+ .lg\:hover\:border-teal-900:hover {
+ border-color: #234e52;
+ }
+
+ .lg\:hover\:border-blue-100:hover {
+ border-color: #ebf8ff;
+ }
+
+ .lg\:hover\:border-blue-200:hover {
+ border-color: #bee3f8;
+ }
+
+ .lg\:hover\:border-blue-300:hover {
+ border-color: #90cdf4;
+ }
+
+ .lg\:hover\:border-blue-400:hover {
+ border-color: #63b3ed;
+ }
+
+ .lg\:hover\:border-blue-500:hover {
+ border-color: #4299e1;
+ }
+
+ .lg\:hover\:border-blue-600:hover {
+ border-color: #3182ce;
+ }
+
+ .lg\:hover\:border-blue-700:hover {
+ border-color: #2b6cb0;
+ }
+
+ .lg\:hover\:border-blue-800:hover {
+ border-color: #2c5282;
+ }
+
+ .lg\:hover\:border-blue-900:hover {
+ border-color: #2a4365;
+ }
+
+ .lg\:hover\:border-indigo-100:hover {
+ border-color: #ebf4ff;
+ }
+
+ .lg\:hover\:border-indigo-200:hover {
+ border-color: #c3dafe;
+ }
+
+ .lg\:hover\:border-indigo-300:hover {
+ border-color: #a3bffa;
+ }
+
+ .lg\:hover\:border-indigo-400:hover {
+ border-color: #7f9cf5;
+ }
+
+ .lg\:hover\:border-indigo-500:hover {
+ border-color: #667eea;
+ }
+
+ .lg\:hover\:border-indigo-600:hover {
+ border-color: #5a67d8;
+ }
+
+ .lg\:hover\:border-indigo-700:hover {
+ border-color: #4c51bf;
+ }
+
+ .lg\:hover\:border-indigo-800:hover {
+ border-color: #434190;
+ }
+
+ .lg\:hover\:border-indigo-900:hover {
+ border-color: #3c366b;
+ }
+
+ .lg\:hover\:border-purple-100:hover {
+ border-color: #faf5ff;
+ }
+
+ .lg\:hover\:border-purple-200:hover {
+ border-color: #e9d8fd;
+ }
+
+ .lg\:hover\:border-purple-300:hover {
+ border-color: #d6bcfa;
+ }
+
+ .lg\:hover\:border-purple-400:hover {
+ border-color: #b794f4;
+ }
+
+ .lg\:hover\:border-purple-500:hover {
+ border-color: #9f7aea;
+ }
+
+ .lg\:hover\:border-purple-600:hover {
+ border-color: #805ad5;
+ }
+
+ .lg\:hover\:border-purple-700:hover {
+ border-color: #6b46c1;
+ }
+
+ .lg\:hover\:border-purple-800:hover {
+ border-color: #553c9a;
+ }
+
+ .lg\:hover\:border-purple-900:hover {
+ border-color: #44337a;
+ }
+
+ .lg\:hover\:border-pink-100:hover {
+ border-color: #fff5f7;
+ }
+
+ .lg\:hover\:border-pink-200:hover {
+ border-color: #fed7e2;
+ }
+
+ .lg\:hover\:border-pink-300:hover {
+ border-color: #fbb6ce;
+ }
+
+ .lg\:hover\:border-pink-400:hover {
+ border-color: #f687b3;
+ }
+
+ .lg\:hover\:border-pink-500:hover {
+ border-color: #ed64a6;
+ }
+
+ .lg\:hover\:border-pink-600:hover {
+ border-color: #d53f8c;
+ }
+
+ .lg\:hover\:border-pink-700:hover {
+ border-color: #b83280;
+ }
+
+ .lg\:hover\:border-pink-800:hover {
+ border-color: #97266d;
+ }
+
+ .lg\:hover\:border-pink-900:hover {
+ border-color: #702459;
+ }
+
+ .lg\:focus\:border-transparent:focus {
+ border-color: transparent;
+ }
+
+ .lg\:focus\:border-black:focus {
+ border-color: #000;
+ }
+
+ .lg\:focus\:border-white:focus {
+ border-color: #fff;
+ }
+
+ .lg\:focus\:border-gray-100:focus {
+ border-color: #f7fafc;
+ }
+
+ .lg\:focus\:border-gray-200:focus {
+ border-color: #edf2f7;
+ }
+
+ .lg\:focus\:border-gray-300:focus {
+ border-color: #e2e8f0;
+ }
+
+ .lg\:focus\:border-gray-400:focus {
+ border-color: #cbd5e0;
+ }
+
+ .lg\:focus\:border-gray-500:focus {
+ border-color: #a0aec0;
+ }
+
+ .lg\:focus\:border-gray-600:focus {
+ border-color: #718096;
+ }
+
+ .lg\:focus\:border-gray-700:focus {
+ border-color: #4a5568;
+ }
+
+ .lg\:focus\:border-gray-800:focus {
+ border-color: #2d3748;
+ }
+
+ .lg\:focus\:border-gray-900:focus {
+ border-color: #1a202c;
+ }
+
+ .lg\:focus\:border-red-100:focus {
+ border-color: #fff5f5;
+ }
+
+ .lg\:focus\:border-red-200:focus {
+ border-color: #fed7d7;
+ }
+
+ .lg\:focus\:border-red-300:focus {
+ border-color: #feb2b2;
+ }
+
+ .lg\:focus\:border-red-400:focus {
+ border-color: #fc8181;
+ }
+
+ .lg\:focus\:border-red-500:focus {
+ border-color: #f56565;
+ }
+
+ .lg\:focus\:border-red-600:focus {
+ border-color: #e53e3e;
+ }
+
+ .lg\:focus\:border-red-700:focus {
+ border-color: #c53030;
+ }
+
+ .lg\:focus\:border-red-800:focus {
+ border-color: #9b2c2c;
+ }
+
+ .lg\:focus\:border-red-900:focus {
+ border-color: #742a2a;
+ }
+
+ .lg\:focus\:border-orange-100:focus {
+ border-color: #fffaf0;
+ }
+
+ .lg\:focus\:border-orange-200:focus {
+ border-color: #feebc8;
+ }
+
+ .lg\:focus\:border-orange-300:focus {
+ border-color: #fbd38d;
+ }
+
+ .lg\:focus\:border-orange-400:focus {
+ border-color: #f6ad55;
+ }
+
+ .lg\:focus\:border-orange-500:focus {
+ border-color: #ed8936;
+ }
+
+ .lg\:focus\:border-orange-600:focus {
+ border-color: #dd6b20;
+ }
+
+ .lg\:focus\:border-orange-700:focus {
+ border-color: #c05621;
+ }
+
+ .lg\:focus\:border-orange-800:focus {
+ border-color: #9c4221;
+ }
+
+ .lg\:focus\:border-orange-900:focus {
+ border-color: #7b341e;
+ }
+
+ .lg\:focus\:border-yellow-100:focus {
+ border-color: #fffff0;
+ }
+
+ .lg\:focus\:border-yellow-200:focus {
+ border-color: #fefcbf;
+ }
+
+ .lg\:focus\:border-yellow-300:focus {
+ border-color: #faf089;
+ }
+
+ .lg\:focus\:border-yellow-400:focus {
+ border-color: #f6e05e;
+ }
+
+ .lg\:focus\:border-yellow-500:focus {
+ border-color: #ecc94b;
+ }
+
+ .lg\:focus\:border-yellow-600:focus {
+ border-color: #d69e2e;
+ }
+
+ .lg\:focus\:border-yellow-700:focus {
+ border-color: #b7791f;
+ }
+
+ .lg\:focus\:border-yellow-800:focus {
+ border-color: #975a16;
+ }
+
+ .lg\:focus\:border-yellow-900:focus {
+ border-color: #744210;
+ }
+
+ .lg\:focus\:border-green-100:focus {
+ border-color: #f0fff4;
+ }
+
+ .lg\:focus\:border-green-200:focus {
+ border-color: #c6f6d5;
+ }
+
+ .lg\:focus\:border-green-300:focus {
+ border-color: #9ae6b4;
+ }
+
+ .lg\:focus\:border-green-400:focus {
+ border-color: #68d391;
+ }
+
+ .lg\:focus\:border-green-500:focus {
+ border-color: #48bb78;
+ }
+
+ .lg\:focus\:border-green-600:focus {
+ border-color: #38a169;
+ }
+
+ .lg\:focus\:border-green-700:focus {
+ border-color: #2f855a;
+ }
+
+ .lg\:focus\:border-green-800:focus {
+ border-color: #276749;
+ }
+
+ .lg\:focus\:border-green-900:focus {
+ border-color: #22543d;
+ }
+
+ .lg\:focus\:border-teal-100:focus {
+ border-color: #e6fffa;
+ }
+
+ .lg\:focus\:border-teal-200:focus {
+ border-color: #b2f5ea;
+ }
+
+ .lg\:focus\:border-teal-300:focus {
+ border-color: #81e6d9;
+ }
+
+ .lg\:focus\:border-teal-400:focus {
+ border-color: #4fd1c5;
+ }
+
+ .lg\:focus\:border-teal-500:focus {
+ border-color: #38b2ac;
+ }
+
+ .lg\:focus\:border-teal-600:focus {
+ border-color: #319795;
+ }
+
+ .lg\:focus\:border-teal-700:focus {
+ border-color: #2c7a7b;
+ }
+
+ .lg\:focus\:border-teal-800:focus {
+ border-color: #285e61;
+ }
+
+ .lg\:focus\:border-teal-900:focus {
+ border-color: #234e52;
+ }
+
+ .lg\:focus\:border-blue-100:focus {
+ border-color: #ebf8ff;
+ }
+
+ .lg\:focus\:border-blue-200:focus {
+ border-color: #bee3f8;
+ }
+
+ .lg\:focus\:border-blue-300:focus {
+ border-color: #90cdf4;
+ }
+
+ .lg\:focus\:border-blue-400:focus {
+ border-color: #63b3ed;
+ }
+
+ .lg\:focus\:border-blue-500:focus {
+ border-color: #4299e1;
+ }
+
+ .lg\:focus\:border-blue-600:focus {
+ border-color: #3182ce;
+ }
+
+ .lg\:focus\:border-blue-700:focus {
+ border-color: #2b6cb0;
+ }
+
+ .lg\:focus\:border-blue-800:focus {
+ border-color: #2c5282;
+ }
+
+ .lg\:focus\:border-blue-900:focus {
+ border-color: #2a4365;
+ }
+
+ .lg\:focus\:border-indigo-100:focus {
+ border-color: #ebf4ff;
+ }
+
+ .lg\:focus\:border-indigo-200:focus {
+ border-color: #c3dafe;
+ }
+
+ .lg\:focus\:border-indigo-300:focus {
+ border-color: #a3bffa;
+ }
+
+ .lg\:focus\:border-indigo-400:focus {
+ border-color: #7f9cf5;
+ }
+
+ .lg\:focus\:border-indigo-500:focus {
+ border-color: #667eea;
+ }
+
+ .lg\:focus\:border-indigo-600:focus {
+ border-color: #5a67d8;
+ }
+
+ .lg\:focus\:border-indigo-700:focus {
+ border-color: #4c51bf;
+ }
+
+ .lg\:focus\:border-indigo-800:focus {
+ border-color: #434190;
+ }
+
+ .lg\:focus\:border-indigo-900:focus {
+ border-color: #3c366b;
+ }
+
+ .lg\:focus\:border-purple-100:focus {
+ border-color: #faf5ff;
+ }
+
+ .lg\:focus\:border-purple-200:focus {
+ border-color: #e9d8fd;
+ }
+
+ .lg\:focus\:border-purple-300:focus {
+ border-color: #d6bcfa;
+ }
+
+ .lg\:focus\:border-purple-400:focus {
+ border-color: #b794f4;
+ }
+
+ .lg\:focus\:border-purple-500:focus {
+ border-color: #9f7aea;
+ }
+
+ .lg\:focus\:border-purple-600:focus {
+ border-color: #805ad5;
+ }
+
+ .lg\:focus\:border-purple-700:focus {
+ border-color: #6b46c1;
+ }
+
+ .lg\:focus\:border-purple-800:focus {
+ border-color: #553c9a;
+ }
+
+ .lg\:focus\:border-purple-900:focus {
+ border-color: #44337a;
+ }
+
+ .lg\:focus\:border-pink-100:focus {
+ border-color: #fff5f7;
+ }
+
+ .lg\:focus\:border-pink-200:focus {
+ border-color: #fed7e2;
+ }
+
+ .lg\:focus\:border-pink-300:focus {
+ border-color: #fbb6ce;
+ }
+
+ .lg\:focus\:border-pink-400:focus {
+ border-color: #f687b3;
+ }
+
+ .lg\:focus\:border-pink-500:focus {
+ border-color: #ed64a6;
+ }
+
+ .lg\:focus\:border-pink-600:focus {
+ border-color: #d53f8c;
+ }
+
+ .lg\:focus\:border-pink-700:focus {
+ border-color: #b83280;
+ }
+
+ .lg\:focus\:border-pink-800:focus {
+ border-color: #97266d;
+ }
+
+ .lg\:focus\:border-pink-900:focus {
+ border-color: #702459;
+ }
+
+ .lg\:rounded-none {
+ border-radius: 0;
+ }
+
+ .lg\:rounded-sm {
+ border-radius: 0.125rem;
+ }
+
+ .lg\:rounded {
+ border-radius: 0.25rem;
+ }
+
+ .lg\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .lg\:rounded-full {
+ border-radius: 9999px;
+ }
+
+ .lg\:rounded-t-none {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ .lg\:rounded-r-none {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+
+ .lg\:rounded-b-none {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .lg\:rounded-l-none {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .lg\:rounded-t-sm {
+ border-top-left-radius: 0.125rem;
+ border-top-right-radius: 0.125rem;
+ }
+
+ .lg\:rounded-r-sm {
+ border-top-right-radius: 0.125rem;
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .lg\:rounded-b-sm {
+ border-bottom-right-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .lg\:rounded-l-sm {
+ border-top-left-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .lg\:rounded-t {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+
+ .lg\:rounded-r {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .lg\:rounded-b {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .lg\:rounded-l {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .lg\:rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+ }
+
+ .lg\:rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .lg\:rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .lg\:rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .lg\:rounded-t-full {
+ border-top-left-radius: 9999px;
+ border-top-right-radius: 9999px;
+ }
+
+ .lg\:rounded-r-full {
+ border-top-right-radius: 9999px;
+ border-bottom-right-radius: 9999px;
+ }
+
+ .lg\:rounded-b-full {
+ border-bottom-right-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .lg\:rounded-l-full {
+ border-top-left-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .lg\:rounded-tl-none {
+ border-top-left-radius: 0;
+ }
+
+ .lg\:rounded-tr-none {
+ border-top-right-radius: 0;
+ }
+
+ .lg\:rounded-br-none {
+ border-bottom-right-radius: 0;
+ }
+
+ .lg\:rounded-bl-none {
+ border-bottom-left-radius: 0;
+ }
+
+ .lg\:rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+ }
+
+ .lg\:rounded-tr-sm {
+ border-top-right-radius: 0.125rem;
+ }
+
+ .lg\:rounded-br-sm {
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .lg\:rounded-bl-sm {
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .lg\:rounded-tl {
+ border-top-left-radius: 0.25rem;
+ }
+
+ .lg\:rounded-tr {
+ border-top-right-radius: 0.25rem;
+ }
+
+ .lg\:rounded-br {
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .lg\:rounded-bl {
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .lg\:rounded-tl-lg {
+ border-top-left-radius: 0.5rem;
+ }
+
+ .lg\:rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+ }
+
+ .lg\:rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .lg\:rounded-bl-lg {
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .lg\:rounded-tl-full {
+ border-top-left-radius: 9999px;
+ }
+
+ .lg\:rounded-tr-full {
+ border-top-right-radius: 9999px;
+ }
+
+ .lg\:rounded-br-full {
+ border-bottom-right-radius: 9999px;
+ }
+
+ .lg\:rounded-bl-full {
+ border-bottom-left-radius: 9999px;
+ }
+
+ .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-0 {
+ border-width: 0;
+ }
+
+ .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: 0;
+ }
+
+ .lg\:border-r-0 {
+ border-right-width: 0;
+ }
+
+ .lg\:border-b-0 {
+ border-bottom-width: 0;
+ }
+
+ .lg\:border-l-0 {
+ border-left-width: 0;
+ }
+
+ .lg\:border-t-2 {
+ border-top-width: 2px;
+ }
+
+ .lg\:border-r-2 {
+ border-right-width: 2px;
+ }
+
+ .lg\:border-b-2 {
+ border-bottom-width: 2px;
+ }
+
+ .lg\:border-l-2 {
+ border-left-width: 2px;
+ }
+
+ .lg\:border-t-4 {
+ border-top-width: 4px;
+ }
+
+ .lg\:border-r-4 {
+ border-right-width: 4px;
+ }
+
+ .lg\:border-b-4 {
+ border-bottom-width: 4px;
+ }
+
+ .lg\:border-l-4 {
+ border-left-width: 4px;
+ }
+
+ .lg\:border-t-8 {
+ border-top-width: 8px;
+ }
+
+ .lg\:border-r-8 {
+ border-right-width: 8px;
+ }
+
+ .lg\:border-b-8 {
+ border-bottom-width: 8px;
+ }
+
+ .lg\:border-l-8 {
+ border-left-width: 8px;
+ }
+
+ .lg\:border-t {
+ border-top-width: 1px;
+ }
+
+ .lg\:border-r {
+ border-right-width: 1px;
+ }
+
+ .lg\:border-b {
+ border-bottom-width: 1px;
+ }
+
+ .lg\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-not-allowed {
+ cursor: not-allowed;
+ }
+
+ .lg\:block {
+ display: block;
+ }
+
+ .lg\:inline-block {
+ display: inline-block;
+ }
+
+ .lg\:inline {
+ display: inline;
+ }
+
+ .lg\:flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .lg\:inline-flex {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ }
+
+ .lg\:table {
+ display: table;
+ }
+
+ .lg\:table-row {
+ display: table-row;
+ }
+
+ .lg\:table-cell {
+ display: table-cell;
+ }
+
+ .lg\:hidden {
+ display: none;
+ }
+
+ .lg\:flex-row {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+
+ .lg\:flex-row-reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+ }
+
+ .lg\:flex-col {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+
+ .lg\:flex-col-reverse {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+ }
+
+ .lg\:flex-wrap {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+
+ .lg\:flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+ }
+
+ .lg\:flex-no-wrap {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+
+ .lg\:items-start {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+
+ .lg\:items-end {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ }
+
+ .lg\:items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+
+ .lg\:items-baseline {
+ -webkit-box-align: baseline;
+ -ms-flex-align: baseline;
+ align-items: baseline;
+ }
+
+ .lg\:items-stretch {
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ }
+
+ .lg\:self-auto {
+ -ms-flex-item-align: auto;
+ align-self: auto;
+ }
+
+ .lg\:self-start {
+ -ms-flex-item-align: start;
+ align-self: flex-start;
+ }
+
+ .lg\:self-end {
+ -ms-flex-item-align: end;
+ align-self: flex-end;
+ }
+
+ .lg\:self-center {
+ -ms-flex-item-align: center;
+ align-self: center;
+ }
+
+ .lg\:self-stretch {
+ -ms-flex-item-align: stretch;
+ align-self: stretch;
+ }
+
+ .lg\:justify-start {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+
+ .lg\:justify-end {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ }
+
+ .lg\:justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+
+ .lg\:justify-between {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+
+ .lg\:justify-around {
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ }
+
+ .lg\:content-center {
+ -ms-flex-line-pack: center;
+ align-content: center;
+ }
+
+ .lg\:content-start {
+ -ms-flex-line-pack: start;
+ align-content: flex-start;
+ }
+
+ .lg\:content-end {
+ -ms-flex-line-pack: end;
+ align-content: flex-end;
+ }
+
+ .lg\:content-between {
+ -ms-flex-line-pack: justify;
+ align-content: space-between;
+ }
+
+ .lg\:content-around {
+ -ms-flex-line-pack: distribute;
+ align-content: space-around;
+ }
+
+ .lg\:flex-1 {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0%;
+ flex: 1 1 0%;
+ }
+
+ .lg\:flex-auto {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+
+ .lg\:flex-initial {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ }
+
+ .lg\:flex-none {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ }
+
+ .lg\:flex-grow-0 {
+ -webkit-box-flex: 0;
+ -ms-flex-positive: 0;
+ flex-grow: 0;
+ }
+
+ .lg\:flex-grow {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ }
+
+ .lg\:flex-shrink-0 {
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ }
+
+ .lg\:flex-shrink {
+ -ms-flex-negative: 1;
+ flex-shrink: 1;
+ }
+
+ .lg\:order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+
+ .lg\:order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+
+ .lg\:order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+
+ .lg\:order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+
+ .lg\:order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+
+ .lg\:order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+
+ .lg\:order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+
+ .lg\:order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+
+ .lg\:order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+
+ .lg\:order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+
+ .lg\:order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+
+ .lg\:order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+
+ .lg\:order-first {
+ -webkit-box-ordinal-group: -9998;
+ -ms-flex-order: -9999;
+ order: -9999;
+ }
+
+ .lg\:order-last {
+ -webkit-box-ordinal-group: 10000;
+ -ms-flex-order: 9999;
+ order: 9999;
+ }
+
+ .lg\:order-none {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+
+ .lg\:float-right {
+ float: right;
+ }
+
+ .lg\:float-left {
+ float: left;
+ }
+
+ .lg\:float-none {
+ float: none;
+ }
+
+ .lg\:clearfix:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+
+ .lg\:font-sans {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ }
+
+ .lg\:font-serif {
+ font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+ }
+
+ .lg\:font-mono {
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ }
+
+ .lg\:font-hairline {
+ font-weight: 100;
+ }
+
+ .lg\:font-thin {
+ 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\:hover\:font-hairline:hover {
+ font-weight: 100;
+ }
+
+ .lg\:hover\:font-thin:hover {
+ font-weight: 200;
+ }
+
+ .lg\:hover\:font-light:hover {
+ font-weight: 300;
+ }
+
+ .lg\:hover\:font-normal:hover {
+ font-weight: 400;
+ }
+
+ .lg\:hover\:font-medium:hover {
+ font-weight: 500;
+ }
+
+ .lg\:hover\:font-semibold:hover {
+ font-weight: 600;
+ }
+
+ .lg\:hover\:font-bold:hover {
+ font-weight: 700;
+ }
+
+ .lg\:hover\:font-extrabold:hover {
+ font-weight: 800;
+ }
+
+ .lg\:hover\:font-black:hover {
+ font-weight: 900;
+ }
+
+ .lg\:focus\:font-hairline:focus {
+ font-weight: 100;
+ }
+
+ .lg\:focus\:font-thin:focus {
+ font-weight: 200;
+ }
+
+ .lg\:focus\:font-light:focus {
+ font-weight: 300;
+ }
+
+ .lg\:focus\:font-normal:focus {
+ font-weight: 400;
+ }
+
+ .lg\:focus\:font-medium:focus {
+ font-weight: 500;
+ }
+
+ .lg\:focus\:font-semibold:focus {
+ font-weight: 600;
+ }
+
+ .lg\:focus\:font-bold:focus {
+ font-weight: 700;
+ }
+
+ .lg\:focus\:font-extrabold:focus {
+ font-weight: 800;
+ }
+
+ .lg\:focus\:font-black:focus {
+ font-weight: 900;
+ }
+
+ .lg\:h-0 {
+ height: 0;
+ }
+
+ .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-8 {
+ height: 2rem;
+ }
+
+ .lg\:h-10 {
+ height: 2.5rem;
+ }
+
+ .lg\:h-12 {
+ height: 3rem;
+ }
+
+ .lg\:h-16 {
+ height: 4rem;
+ }
+
+ .lg\:h-20 {
+ height: 5rem;
+ }
+
+ .lg\:h-24 {
+ height: 6rem;
+ }
+
+ .lg\:h-32 {
+ height: 8rem;
+ }
+
+ .lg\:h-40 {
+ height: 10rem;
+ }
+
+ .lg\:h-48 {
+ height: 12rem;
+ }
+
+ .lg\:h-56 {
+ height: 14rem;
+ }
+
+ .lg\:h-64 {
+ height: 16rem;
+ }
+
+ .lg\:h-auto {
+ height: auto;
+ }
+
+ .lg\:h-px {
+ height: 1px;
+ }
+
+ .lg\:h-full {
+ height: 100%;
+ }
+
+ .lg\:h-screen {
+ height: 100vh;
+ }
+
+ .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\: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\:m-0 {
+ margin: 0;
+ }
+
+ .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-8 {
+ margin: 2rem;
+ }
+
+ .lg\:m-10 {
+ margin: 2.5rem;
+ }
+
+ .lg\:m-12 {
+ margin: 3rem;
+ }
+
+ .lg\:m-16 {
+ margin: 4rem;
+ }
+
+ .lg\:m-20 {
+ margin: 5rem;
+ }
+
+ .lg\:m-24 {
+ margin: 6rem;
+ }
+
+ .lg\:m-32 {
+ margin: 8rem;
+ }
+
+ .lg\:m-40 {
+ margin: 10rem;
+ }
+
+ .lg\:m-48 {
+ margin: 12rem;
+ }
+
+ .lg\:m-56 {
+ margin: 14rem;
+ }
+
+ .lg\:m-64 {
+ margin: 16rem;
+ }
+
+ .lg\:m-auto {
+ margin: auto;
+ }
+
+ .lg\:m-px {
+ margin: 1px;
+ }
+
+ .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-8 {
+ margin: -2rem;
+ }
+
+ .lg\:-m-10 {
+ margin: -2.5rem;
+ }
+
+ .lg\:-m-12 {
+ margin: -3rem;
+ }
+
+ .lg\:-m-16 {
+ margin: -4rem;
+ }
+
+ .lg\:-m-20 {
+ margin: -5rem;
+ }
+
+ .lg\:-m-24 {
+ margin: -6rem;
+ }
+
+ .lg\:-m-32 {
+ margin: -8rem;
+ }
+
+ .lg\:-m-40 {
+ margin: -10rem;
+ }
+
+ .lg\:-m-48 {
+ margin: -12rem;
+ }
+
+ .lg\:-m-56 {
+ margin: -14rem;
+ }
+
+ .lg\:-m-64 {
+ margin: -16rem;
+ }
+
+ .lg\:-m-px {
+ margin: -1px;
+ }
+
+ .lg\:my-0 {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .lg\:mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+ }
+
+ .lg\:my-1 {
+ margin-top: 0.25rem;
+ margin-bottom: 0.25rem;
+ }
+
+ .lg\:mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+ }
+
+ .lg\:my-2 {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .lg\:mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+ }
+
+ .lg\:my-3 {
+ margin-top: 0.75rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .lg\:mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+ }
+
+ .lg\:my-4 {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .lg\:mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+ }
+
+ .lg\:my-5 {
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+ }
+
+ .lg\:mx-5 {
+ margin-left: 1.25rem;
+ margin-right: 1.25rem;
+ }
+
+ .lg\:my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .lg\:mx-6 {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .lg\:my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .lg\:mx-8 {
+ margin-left: 2rem;
+ margin-right: 2rem;
+ }
+
+ .lg\:my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+ }
+
+ .lg\:mx-10 {
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+ }
+
+ .lg\:my-12 {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+ }
+
+ .lg\:mx-12 {
+ margin-left: 3rem;
+ margin-right: 3rem;
+ }
+
+ .lg\:my-16 {
+ margin-top: 4rem;
+ margin-bottom: 4rem;
+ }
+
+ .lg\:mx-16 {
+ margin-left: 4rem;
+ margin-right: 4rem;
+ }
+
+ .lg\:my-20 {
+ margin-top: 5rem;
+ margin-bottom: 5rem;
+ }
+
+ .lg\:mx-20 {
+ margin-left: 5rem;
+ margin-right: 5rem;
+ }
+
+ .lg\:my-24 {
+ margin-top: 6rem;
+ margin-bottom: 6rem;
+ }
+
+ .lg\:mx-24 {
+ margin-left: 6rem;
+ margin-right: 6rem;
+ }
+
+ .lg\:my-32 {
+ margin-top: 8rem;
+ margin-bottom: 8rem;
+ }
+
+ .lg\:mx-32 {
+ margin-left: 8rem;
+ margin-right: 8rem;
+ }
+
+ .lg\:my-40 {
+ margin-top: 10rem;
+ margin-bottom: 10rem;
+ }
+
+ .lg\:mx-40 {
+ margin-left: 10rem;
+ margin-right: 10rem;
+ }
+
+ .lg\:my-48 {
+ margin-top: 12rem;
+ margin-bottom: 12rem;
+ }
+
+ .lg\:mx-48 {
+ margin-left: 12rem;
+ margin-right: 12rem;
+ }
+
+ .lg\:my-56 {
+ margin-top: 14rem;
+ margin-bottom: 14rem;
+ }
+
+ .lg\:mx-56 {
+ margin-left: 14rem;
+ margin-right: 14rem;
+ }
+
+ .lg\:my-64 {
+ margin-top: 16rem;
+ margin-bottom: 16rem;
+ }
+
+ .lg\:mx-64 {
+ margin-left: 16rem;
+ margin-right: 16rem;
+ }
+
+ .lg\:my-auto {
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+
+ .lg\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .lg\:my-px {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ }
+
+ .lg\:mx-px {
+ margin-left: 1px;
+ margin-right: 1px;
+ }
+
+ .lg\:-my-1 {
+ margin-top: -0.25rem;
+ margin-bottom: -0.25rem;
+ }
+
+ .lg\:-mx-1 {
+ margin-left: -0.25rem;
+ margin-right: -0.25rem;
+ }
+
+ .lg\:-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+ }
+
+ .lg\:-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+ }
+
+ .lg\:-my-3 {
+ margin-top: -0.75rem;
+ margin-bottom: -0.75rem;
+ }
+
+ .lg\:-mx-3 {
+ margin-left: -0.75rem;
+ margin-right: -0.75rem;
+ }
+
+ .lg\:-my-4 {
+ margin-top: -1rem;
+ margin-bottom: -1rem;
+ }
+
+ .lg\:-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+ }
+
+ .lg\:-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+ }
+
+ .lg\:-mx-5 {
+ margin-left: -1.25rem;
+ margin-right: -1.25rem;
+ }
+
+ .lg\:-my-6 {
+ margin-top: -1.5rem;
+ margin-bottom: -1.5rem;
+ }
+
+ .lg\:-mx-6 {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+ }
+
+ .lg\:-my-8 {
+ margin-top: -2rem;
+ margin-bottom: -2rem;
+ }
+
+ .lg\:-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+ }
+
+ .lg\:-my-10 {
+ margin-top: -2.5rem;
+ margin-bottom: -2.5rem;
+ }
+
+ .lg\:-mx-10 {
+ margin-left: -2.5rem;
+ margin-right: -2.5rem;
+ }
+
+ .lg\:-my-12 {
+ margin-top: -3rem;
+ margin-bottom: -3rem;
+ }
+
+ .lg\:-mx-12 {
+ margin-left: -3rem;
+ margin-right: -3rem;
+ }
+
+ .lg\:-my-16 {
+ margin-top: -4rem;
+ margin-bottom: -4rem;
+ }
+
+ .lg\:-mx-16 {
+ margin-left: -4rem;
+ margin-right: -4rem;
+ }
+
+ .lg\:-my-20 {
+ margin-top: -5rem;
+ margin-bottom: -5rem;
+ }
+
+ .lg\:-mx-20 {
+ margin-left: -5rem;
+ margin-right: -5rem;
+ }
+
+ .lg\:-my-24 {
+ margin-top: -6rem;
+ margin-bottom: -6rem;
+ }
+
+ .lg\:-mx-24 {
+ margin-left: -6rem;
+ margin-right: -6rem;
+ }
+
+ .lg\:-my-32 {
+ margin-top: -8rem;
+ margin-bottom: -8rem;
+ }
+
+ .lg\:-mx-32 {
+ margin-left: -8rem;
+ margin-right: -8rem;
+ }
+
+ .lg\:-my-40 {
+ margin-top: -10rem;
+ margin-bottom: -10rem;
+ }
+
+ .lg\:-mx-40 {
+ margin-left: -10rem;
+ margin-right: -10rem;
+ }
+
+ .lg\:-my-48 {
+ margin-top: -12rem;
+ margin-bottom: -12rem;
+ }
+
+ .lg\:-mx-48 {
+ margin-left: -12rem;
+ margin-right: -12rem;
+ }
+
+ .lg\:-my-56 {
+ margin-top: -14rem;
+ margin-bottom: -14rem;
+ }
+
+ .lg\:-mx-56 {
+ margin-left: -14rem;
+ margin-right: -14rem;
+ }
+
+ .lg\:-my-64 {
+ margin-top: -16rem;
+ margin-bottom: -16rem;
+ }
+
+ .lg\:-mx-64 {
+ margin-left: -16rem;
+ margin-right: -16rem;
+ }
+
+ .lg\:-my-px {
+ margin-top: -1px;
+ margin-bottom: -1px;
+ }
+
+ .lg\:-mx-px {
+ margin-left: -1px;
+ margin-right: -1px;
+ }
+
+ .lg\:mt-0 {
+ margin-top: 0;
+ }
+
+ .lg\:mr-0 {
+ margin-right: 0;
+ }
+
+ .lg\:mb-0 {
+ margin-bottom: 0;
+ }
+
+ .lg\:ml-0 {
+ margin-left: 0;
+ }
+
+ .lg\:mt-1 {
+ margin-top: 0.25rem;
+ }
+
+ .lg\:mr-1 {
+ margin-right: 0.25rem;
+ }
+
+ .lg\:mb-1 {
+ margin-bottom: 0.25rem;
+ }
+
+ .lg\:ml-1 {
+ margin-left: 0.25rem;
+ }
+
+ .lg\:mt-2 {
+ margin-top: 0.5rem;
+ }
+
+ .lg\:mr-2 {
+ margin-right: 0.5rem;
+ }
+
+ .lg\:mb-2 {
+ margin-bottom: 0.5rem;
+ }
+
+ .lg\:ml-2 {
+ margin-left: 0.5rem;
+ }
+
+ .lg\:mt-3 {
+ margin-top: 0.75rem;
+ }
+
+ .lg\:mr-3 {
+ margin-right: 0.75rem;
+ }
+
+ .lg\:mb-3 {
+ margin-bottom: 0.75rem;
+ }
+
+ .lg\:ml-3 {
+ margin-left: 0.75rem;
+ }
+
+ .lg\:mt-4 {
+ margin-top: 1rem;
+ }
+
+ .lg\:mr-4 {
+ margin-right: 1rem;
+ }
+
+ .lg\:mb-4 {
+ margin-bottom: 1rem;
+ }
+
+ .lg\:ml-4 {
+ margin-left: 1rem;
+ }
+
+ .lg\:mt-5 {
+ margin-top: 1.25rem;
+ }
+
+ .lg\:mr-5 {
+ margin-right: 1.25rem;
+ }
+
+ .lg\:mb-5 {
+ margin-bottom: 1.25rem;
+ }
+
+ .lg\:ml-5 {
+ margin-left: 1.25rem;
+ }
+
+ .lg\:mt-6 {
+ margin-top: 1.5rem;
+ }
+
+ .lg\:mr-6 {
+ margin-right: 1.5rem;
+ }
+
+ .lg\:mb-6 {
+ margin-bottom: 1.5rem;
+ }
+
+ .lg\:ml-6 {
+ margin-left: 1.5rem;
+ }
+
+ .lg\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .lg\:mr-8 {
+ margin-right: 2rem;
+ }
+
+ .lg\:mb-8 {
+ margin-bottom: 2rem;
+ }
+
+ .lg\:ml-8 {
+ margin-left: 2rem;
+ }
+
+ .lg\:mt-10 {
+ margin-top: 2.5rem;
+ }
+
+ .lg\:mr-10 {
+ margin-right: 2.5rem;
+ }
+
+ .lg\:mb-10 {
+ margin-bottom: 2.5rem;
+ }
+
+ .lg\:ml-10 {
+ margin-left: 2.5rem;
+ }
+
+ .lg\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .lg\:mr-12 {
+ margin-right: 3rem;
+ }
+
+ .lg\:mb-12 {
+ margin-bottom: 3rem;
+ }
+
+ .lg\:ml-12 {
+ margin-left: 3rem;
+ }
+
+ .lg\:mt-16 {
+ margin-top: 4rem;
+ }
+
+ .lg\:mr-16 {
+ margin-right: 4rem;
+ }
+
+ .lg\:mb-16 {
+ margin-bottom: 4rem;
+ }
+
+ .lg\:ml-16 {
+ margin-left: 4rem;
+ }
+
+ .lg\:mt-20 {
+ margin-top: 5rem;
+ }
+
+ .lg\:mr-20 {
+ margin-right: 5rem;
+ }
+
+ .lg\:mb-20 {
+ margin-bottom: 5rem;
+ }
+
+ .lg\:ml-20 {
+ margin-left: 5rem;
+ }
+
+ .lg\:mt-24 {
+ margin-top: 6rem;
+ }
+
+ .lg\:mr-24 {
+ margin-right: 6rem;
+ }
+
+ .lg\:mb-24 {
+ margin-bottom: 6rem;
+ }
+
+ .lg\:ml-24 {
+ margin-left: 6rem;
+ }
+
+ .lg\:mt-32 {
+ margin-top: 8rem;
+ }
+
+ .lg\:mr-32 {
+ margin-right: 8rem;
+ }
+
+ .lg\:mb-32 {
+ margin-bottom: 8rem;
+ }
+
+ .lg\:ml-32 {
+ margin-left: 8rem;
+ }
+
+ .lg\:mt-40 {
+ margin-top: 10rem;
+ }
+
+ .lg\:mr-40 {
+ margin-right: 10rem;
+ }
+
+ .lg\:mb-40 {
+ margin-bottom: 10rem;
+ }
+
+ .lg\:ml-40 {
+ margin-left: 10rem;
+ }
+
+ .lg\:mt-48 {
+ margin-top: 12rem;
+ }
+
+ .lg\:mr-48 {
+ margin-right: 12rem;
+ }
+
+ .lg\:mb-48 {
+ margin-bottom: 12rem;
+ }
+
+ .lg\:ml-48 {
+ margin-left: 12rem;
+ }
+
+ .lg\:mt-56 {
+ margin-top: 14rem;
+ }
+
+ .lg\:mr-56 {
+ margin-right: 14rem;
+ }
+
+ .lg\:mb-56 {
+ margin-bottom: 14rem;
+ }
+
+ .lg\:ml-56 {
+ margin-left: 14rem;
+ }
+
+ .lg\:mt-64 {
+ margin-top: 16rem;
+ }
+
+ .lg\:mr-64 {
+ margin-right: 16rem;
+ }
+
+ .lg\:mb-64 {
+ margin-bottom: 16rem;
+ }
+
+ .lg\:ml-64 {
+ margin-left: 16rem;
+ }
+
+ .lg\:mt-auto {
+ margin-top: auto;
+ }
+
+ .lg\:mr-auto {
+ margin-right: auto;
+ }
+
+ .lg\:mb-auto {
+ margin-bottom: auto;
+ }
+
+ .lg\:ml-auto {
+ margin-left: auto;
+ }
+
+ .lg\:mt-px {
+ margin-top: 1px;
+ }
+
+ .lg\:mr-px {
+ margin-right: 1px;
+ }
+
+ .lg\:mb-px {
+ margin-bottom: 1px;
+ }
+
+ .lg\:ml-px {
+ margin-left: 1px;
+ }
+
+ .lg\:-mt-1 {
+ margin-top: -0.25rem;
+ }
+
+ .lg\:-mr-1 {
+ margin-right: -0.25rem;
+ }
+
+ .lg\:-mb-1 {
+ margin-bottom: -0.25rem;
+ }
+
+ .lg\:-ml-1 {
+ margin-left: -0.25rem;
+ }
+
+ .lg\:-mt-2 {
+ margin-top: -0.5rem;
+ }
+
+ .lg\:-mr-2 {
+ margin-right: -0.5rem;
+ }
+
+ .lg\:-mb-2 {
+ margin-bottom: -0.5rem;
+ }
+
+ .lg\:-ml-2 {
+ margin-left: -0.5rem;
+ }
+
+ .lg\:-mt-3 {
+ margin-top: -0.75rem;
+ }
+
+ .lg\:-mr-3 {
+ margin-right: -0.75rem;
+ }
+
+ .lg\:-mb-3 {
+ margin-bottom: -0.75rem;
+ }
+
+ .lg\:-ml-3 {
+ margin-left: -0.75rem;
+ }
+
+ .lg\:-mt-4 {
+ margin-top: -1rem;
+ }
+
+ .lg\:-mr-4 {
+ margin-right: -1rem;
+ }
+
+ .lg\:-mb-4 {
+ margin-bottom: -1rem;
+ }
+
+ .lg\:-ml-4 {
+ margin-left: -1rem;
+ }
+
+ .lg\:-mt-5 {
+ margin-top: -1.25rem;
+ }
+
+ .lg\:-mr-5 {
+ margin-right: -1.25rem;
+ }
+
+ .lg\:-mb-5 {
+ margin-bottom: -1.25rem;
+ }
+
+ .lg\:-ml-5 {
+ margin-left: -1.25rem;
+ }
+
+ .lg\:-mt-6 {
+ margin-top: -1.5rem;
+ }
+
+ .lg\:-mr-6 {
+ margin-right: -1.5rem;
+ }
+
+ .lg\:-mb-6 {
+ margin-bottom: -1.5rem;
+ }
+
+ .lg\:-ml-6 {
+ margin-left: -1.5rem;
+ }
+
+ .lg\:-mt-8 {
+ margin-top: -2rem;
+ }
+
+ .lg\:-mr-8 {
+ margin-right: -2rem;
+ }
+
+ .lg\:-mb-8 {
+ margin-bottom: -2rem;
+ }
+
+ .lg\:-ml-8 {
+ margin-left: -2rem;
+ }
+
+ .lg\:-mt-10 {
+ margin-top: -2.5rem;
+ }
+
+ .lg\:-mr-10 {
+ margin-right: -2.5rem;
+ }
+
+ .lg\:-mb-10 {
+ margin-bottom: -2.5rem;
+ }
+
+ .lg\:-ml-10 {
+ margin-left: -2.5rem;
+ }
+
+ .lg\:-mt-12 {
+ margin-top: -3rem;
+ }
+
+ .lg\:-mr-12 {
+ margin-right: -3rem;
+ }
+
+ .lg\:-mb-12 {
+ margin-bottom: -3rem;
+ }
+
+ .lg\:-ml-12 {
+ margin-left: -3rem;
+ }
+
+ .lg\:-mt-16 {
+ margin-top: -4rem;
+ }
+
+ .lg\:-mr-16 {
+ margin-right: -4rem;
+ }
+
+ .lg\:-mb-16 {
+ margin-bottom: -4rem;
+ }
+
+ .lg\:-ml-16 {
+ margin-left: -4rem;
+ }
+
+ .lg\:-mt-20 {
+ margin-top: -5rem;
+ }
+
+ .lg\:-mr-20 {
+ margin-right: -5rem;
+ }
+
+ .lg\:-mb-20 {
+ margin-bottom: -5rem;
+ }
+
+ .lg\:-ml-20 {
+ margin-left: -5rem;
+ }
+
+ .lg\:-mt-24 {
+ margin-top: -6rem;
+ }
+
+ .lg\:-mr-24 {
+ margin-right: -6rem;
+ }
+
+ .lg\:-mb-24 {
+ margin-bottom: -6rem;
+ }
+
+ .lg\:-ml-24 {
+ margin-left: -6rem;
+ }
+
+ .lg\:-mt-32 {
+ margin-top: -8rem;
+ }
+
+ .lg\:-mr-32 {
+ margin-right: -8rem;
+ }
+
+ .lg\:-mb-32 {
+ margin-bottom: -8rem;
+ }
+
+ .lg\:-ml-32 {
+ margin-left: -8rem;
+ }
+
+ .lg\:-mt-40 {
+ margin-top: -10rem;
+ }
+
+ .lg\:-mr-40 {
+ margin-right: -10rem;
+ }
+
+ .lg\:-mb-40 {
+ margin-bottom: -10rem;
+ }
+
+ .lg\:-ml-40 {
+ margin-left: -10rem;
+ }
+
+ .lg\:-mt-48 {
+ margin-top: -12rem;
+ }
+
+ .lg\:-mr-48 {
+ margin-right: -12rem;
+ }
+
+ .lg\:-mb-48 {
+ margin-bottom: -12rem;
+ }
+
+ .lg\:-ml-48 {
+ margin-left: -12rem;
+ }
+
+ .lg\:-mt-56 {
+ margin-top: -14rem;
+ }
+
+ .lg\:-mr-56 {
+ margin-right: -14rem;
+ }
+
+ .lg\:-mb-56 {
+ margin-bottom: -14rem;
+ }
+
+ .lg\:-ml-56 {
+ margin-left: -14rem;
+ }
+
+ .lg\:-mt-64 {
+ margin-top: -16rem;
+ }
+
+ .lg\:-mr-64 {
+ margin-right: -16rem;
+ }
+
+ .lg\:-mb-64 {
+ margin-bottom: -16rem;
+ }
+
+ .lg\:-ml-64 {
+ margin-left: -16rem;
+ }
+
+ .lg\:-mt-px {
+ margin-top: -1px;
+ }
+
+ .lg\:-mr-px {
+ margin-right: -1px;
+ }
+
+ .lg\:-mb-px {
+ margin-bottom: -1px;
+ }
+
+ .lg\:-ml-px {
+ margin-left: -1px;
+ }
+
+ .lg\:max-h-full {
+ max-height: 100%;
+ }
+
+ .lg\:max-h-screen {
+ max-height: 100vh;
+ }
+
+ .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-full {
+ max-width: 100%;
+ }
+
+ .lg\:min-h-0 {
+ min-height: 0;
+ }
+
+ .lg\:min-h-full {
+ min-height: 100%;
+ }
+
+ .lg\:min-h-screen {
+ min-height: 100vh;
+ }
+
+ .lg\:min-w-0 {
+ min-width: 0;
+ }
+
+ .lg\:min-w-full {
+ min-width: 100%;
+ }
+
+ .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\:opacity-0 {
+ opacity: 0;
+ }
+
+ .lg\:opacity-25 {
+ opacity: 0.25;
+ }
+
+ .lg\:opacity-50 {
+ opacity: 0.5;
+ }
+
+ .lg\:opacity-75 {
+ opacity: 0.75;
+ }
+
+ .lg\:opacity-100 {
+ opacity: 1;
+ }
+
+ .lg\:hover\:opacity-0:hover {
+ opacity: 0;
+ }
+
+ .lg\:hover\:opacity-25:hover {
+ opacity: 0.25;
+ }
+
+ .lg\:hover\:opacity-50:hover {
+ opacity: 0.5;
+ }
+
+ .lg\:hover\:opacity-75:hover {
+ opacity: 0.75;
+ }
+
+ .lg\:hover\:opacity-100:hover {
+ opacity: 1;
+ }
+
+ .lg\:focus\:opacity-0:focus {
+ opacity: 0;
+ }
+
+ .lg\:focus\:opacity-25:focus {
+ opacity: 0.25;
+ }
+
+ .lg\:focus\:opacity-50:focus {
+ opacity: 0.5;
+ }
+
+ .lg\:focus\:opacity-75:focus {
+ opacity: 0.75;
+ }
+
+ .lg\:focus\:opacity-100:focus {
+ opacity: 1;
+ }
+
+ .lg\:outline-none {
+ outline: 0;
+ }
+
+ .lg\:focus\:outline-none:focus {
+ outline: 0;
+ }
+
+ .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\:scrolling-touch {
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .lg\:scrolling-auto {
+ -webkit-overflow-scrolling: auto;
+ }
+
+ .lg\:p-0 {
+ padding: 0;
+ }
+
+ .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-8 {
+ padding: 2rem;
+ }
+
+ .lg\:p-10 {
+ padding: 2.5rem;
+ }
+
+ .lg\:p-12 {
+ padding: 3rem;
+ }
+
+ .lg\:p-16 {
+ padding: 4rem;
+ }
+
+ .lg\:p-20 {
+ padding: 5rem;
+ }
+
+ .lg\:p-24 {
+ padding: 6rem;
+ }
+
+ .lg\:p-32 {
+ padding: 8rem;
+ }
+
+ .lg\:p-40 {
+ padding: 10rem;
+ }
+
+ .lg\:p-48 {
+ padding: 12rem;
+ }
+
+ .lg\:p-56 {
+ padding: 14rem;
+ }
+
+ .lg\:p-64 {
+ padding: 16rem;
+ }
+
+ .lg\:p-px {
+ padding: 1px;
+ }
+
+ .lg\:py-0 {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+
+ .lg\:px-0 {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .lg\:py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ }
+
+ .lg\:px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+ }
+
+ .lg\:py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ }
+
+ .lg\:px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ }
+
+ .lg\:py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ }
+
+ .lg\:px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ }
+
+ .lg\:py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+
+ .lg\:px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+
+ .lg\:py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+ }
+
+ .lg\:px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ }
+
+ .lg\:py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+ }
+
+ .lg\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .lg\:py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+ }
+
+ .lg\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
+
+ .lg\:py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+ }
+
+ .lg\:px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+ }
+
+ .lg\:py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ .lg\:px-12 {
+ padding-left: 3rem;
+ padding-right: 3rem;
+ }
+
+ .lg\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .lg\:px-16 {
+ padding-left: 4rem;
+ padding-right: 4rem;
+ }
+
+ .lg\:py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+ }
+
+ .lg\:px-20 {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .lg\:py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+ }
+
+ .lg\:px-24 {
+ padding-left: 6rem;
+ padding-right: 6rem;
+ }
+
+ .lg\:py-32 {
+ padding-top: 8rem;
+ padding-bottom: 8rem;
+ }
+
+ .lg\:px-32 {
+ padding-left: 8rem;
+ padding-right: 8rem;
+ }
+
+ .lg\:py-40 {
+ padding-top: 10rem;
+ padding-bottom: 10rem;
+ }
+
+ .lg\:px-40 {
+ padding-left: 10rem;
+ padding-right: 10rem;
+ }
+
+ .lg\:py-48 {
+ padding-top: 12rem;
+ padding-bottom: 12rem;
+ }
+
+ .lg\:px-48 {
+ padding-left: 12rem;
+ padding-right: 12rem;
+ }
+
+ .lg\:py-56 {
+ padding-top: 14rem;
+ padding-bottom: 14rem;
+ }
+
+ .lg\:px-56 {
+ padding-left: 14rem;
+ padding-right: 14rem;
+ }
+
+ .lg\:py-64 {
+ padding-top: 16rem;
+ padding-bottom: 16rem;
+ }
+
+ .lg\:px-64 {
+ padding-left: 16rem;
+ padding-right: 16rem;
+ }
+
+ .lg\:py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+ }
+
+ .lg\:px-px {
+ padding-left: 1px;
+ padding-right: 1px;
+ }
+
+ .lg\:pt-0 {
+ padding-top: 0;
+ }
+
+ .lg\:pr-0 {
+ padding-right: 0;
+ }
+
+ .lg\:pb-0 {
+ padding-bottom: 0;
+ }
+
+ .lg\:pl-0 {
+ padding-left: 0;
+ }
+
+ .lg\:pt-1 {
+ padding-top: 0.25rem;
+ }
+
+ .lg\:pr-1 {
+ padding-right: 0.25rem;
+ }
+
+ .lg\:pb-1 {
+ padding-bottom: 0.25rem;
+ }
+
+ .lg\:pl-1 {
+ padding-left: 0.25rem;
+ }
+
+ .lg\:pt-2 {
+ padding-top: 0.5rem;
+ }
+
+ .lg\:pr-2 {
+ padding-right: 0.5rem;
+ }
+
+ .lg\:pb-2 {
+ padding-bottom: 0.5rem;
+ }
+
+ .lg\:pl-2 {
+ padding-left: 0.5rem;
+ }
+
+ .lg\:pt-3 {
+ padding-top: 0.75rem;
+ }
+
+ .lg\:pr-3 {
+ padding-right: 0.75rem;
+ }
+
+ .lg\:pb-3 {
+ padding-bottom: 0.75rem;
+ }
+
+ .lg\:pl-3 {
+ padding-left: 0.75rem;
+ }
+
+ .lg\:pt-4 {
+ padding-top: 1rem;
+ }
+
+ .lg\:pr-4 {
+ padding-right: 1rem;
+ }
+
+ .lg\:pb-4 {
+ padding-bottom: 1rem;
+ }
+
+ .lg\:pl-4 {
+ padding-left: 1rem;
+ }
+
+ .lg\:pt-5 {
+ padding-top: 1.25rem;
+ }
+
+ .lg\:pr-5 {
+ padding-right: 1.25rem;
+ }
+
+ .lg\:pb-5 {
+ padding-bottom: 1.25rem;
+ }
+
+ .lg\:pl-5 {
+ padding-left: 1.25rem;
+ }
+
+ .lg\:pt-6 {
+ padding-top: 1.5rem;
+ }
+
+ .lg\:pr-6 {
+ padding-right: 1.5rem;
+ }
+
+ .lg\:pb-6 {
+ padding-bottom: 1.5rem;
+ }
+
+ .lg\:pl-6 {
+ padding-left: 1.5rem;
+ }
+
+ .lg\:pt-8 {
+ padding-top: 2rem;
+ }
+
+ .lg\:pr-8 {
+ padding-right: 2rem;
+ }
+
+ .lg\:pb-8 {
+ padding-bottom: 2rem;
+ }
+
+ .lg\:pl-8 {
+ padding-left: 2rem;
+ }
+
+ .lg\:pt-10 {
+ padding-top: 2.5rem;
+ }
+
+ .lg\:pr-10 {
+ padding-right: 2.5rem;
+ }
+
+ .lg\:pb-10 {
+ padding-bottom: 2.5rem;
+ }
+
+ .lg\:pl-10 {
+ padding-left: 2.5rem;
+ }
+
+ .lg\:pt-12 {
+ padding-top: 3rem;
+ }
+
+ .lg\:pr-12 {
+ padding-right: 3rem;
+ }
+
+ .lg\:pb-12 {
+ padding-bottom: 3rem;
+ }
+
+ .lg\:pl-12 {
+ padding-left: 3rem;
+ }
+
+ .lg\:pt-16 {
+ padding-top: 4rem;
+ }
+
+ .lg\:pr-16 {
+ padding-right: 4rem;
+ }
+
+ .lg\:pb-16 {
+ padding-bottom: 4rem;
+ }
+
+ .lg\:pl-16 {
+ padding-left: 4rem;
+ }
+
+ .lg\:pt-20 {
+ padding-top: 5rem;
+ }
+
+ .lg\:pr-20 {
+ padding-right: 5rem;
+ }
+
+ .lg\:pb-20 {
+ padding-bottom: 5rem;
+ }
+
+ .lg\:pl-20 {
+ padding-left: 5rem;
+ }
+
+ .lg\:pt-24 {
+ padding-top: 6rem;
+ }
+
+ .lg\:pr-24 {
+ padding-right: 6rem;
+ }
+
+ .lg\:pb-24 {
+ padding-bottom: 6rem;
+ }
+
+ .lg\:pl-24 {
+ padding-left: 6rem;
+ }
+
+ .lg\:pt-32 {
+ padding-top: 8rem;
+ }
+
+ .lg\:pr-32 {
+ padding-right: 8rem;
+ }
+
+ .lg\:pb-32 {
+ padding-bottom: 8rem;
+ }
+
+ .lg\:pl-32 {
+ padding-left: 8rem;
+ }
+
+ .lg\:pt-40 {
+ padding-top: 10rem;
+ }
+
+ .lg\:pr-40 {
+ padding-right: 10rem;
+ }
+
+ .lg\:pb-40 {
+ padding-bottom: 10rem;
+ }
+
+ .lg\:pl-40 {
+ padding-left: 10rem;
+ }
+
+ .lg\:pt-48 {
+ padding-top: 12rem;
+ }
+
+ .lg\:pr-48 {
+ padding-right: 12rem;
+ }
+
+ .lg\:pb-48 {
+ padding-bottom: 12rem;
+ }
+
+ .lg\:pl-48 {
+ padding-left: 12rem;
+ }
+
+ .lg\:pt-56 {
+ padding-top: 14rem;
+ }
+
+ .lg\:pr-56 {
+ padding-right: 14rem;
+ }
+
+ .lg\:pb-56 {
+ padding-bottom: 14rem;
+ }
+
+ .lg\:pl-56 {
+ padding-left: 14rem;
+ }
+
+ .lg\:pt-64 {
+ padding-top: 16rem;
+ }
+
+ .lg\:pr-64 {
+ padding-right: 16rem;
+ }
+
+ .lg\:pb-64 {
+ padding-bottom: 16rem;
+ }
+
+ .lg\:pl-64 {
+ padding-left: 16rem;
+ }
+
+ .lg\:pt-px {
+ padding-top: 1px;
+ }
+
+ .lg\:pr-px {
+ padding-right: 1px;
+ }
+
+ .lg\:pb-px {
+ padding-bottom: 1px;
+ }
+
+ .lg\:pl-px {
+ padding-left: 1px;
+ }
+
+ .lg\:placeholder-transparent::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:placeholder-transparent::-moz-placeholder {
+ color: transparent;
+ }
+
+ .lg\:placeholder-transparent:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:placeholder-transparent::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:placeholder-transparent::placeholder {
+ color: transparent;
+ }
+
+ .lg\:placeholder-black::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:placeholder-black::-moz-placeholder {
+ color: #000;
+ }
+
+ .lg\:placeholder-black:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:placeholder-black::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:placeholder-black::placeholder {
+ color: #000;
+ }
+
+ .lg\:placeholder-white::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:placeholder-white::-moz-placeholder {
+ color: #fff;
+ }
+
+ .lg\:placeholder-white:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:placeholder-white::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:placeholder-white::placeholder {
+ color: #fff;
+ }
+
+ .lg\:placeholder-gray-100::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:placeholder-gray-100::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:placeholder-gray-100:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:placeholder-gray-100::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:placeholder-gray-100::placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:placeholder-gray-200::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:placeholder-gray-200::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:placeholder-gray-200:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:placeholder-gray-200::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:placeholder-gray-200::placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:placeholder-gray-300::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:placeholder-gray-300::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:placeholder-gray-300:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:placeholder-gray-300::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:placeholder-gray-300::placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:placeholder-gray-400::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:placeholder-gray-400::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:placeholder-gray-400:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:placeholder-gray-400::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:placeholder-gray-400::placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:placeholder-gray-500::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:placeholder-gray-500::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:placeholder-gray-500:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:placeholder-gray-500::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:placeholder-gray-500::placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:placeholder-gray-600::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:placeholder-gray-600::-moz-placeholder {
+ color: #718096;
+ }
+
+ .lg\:placeholder-gray-600:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:placeholder-gray-600::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:placeholder-gray-600::placeholder {
+ color: #718096;
+ }
+
+ .lg\:placeholder-gray-700::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:placeholder-gray-700::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:placeholder-gray-700:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:placeholder-gray-700::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:placeholder-gray-700::placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:placeholder-gray-800::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:placeholder-gray-800::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:placeholder-gray-800:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:placeholder-gray-800::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:placeholder-gray-800::placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:placeholder-gray-900::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:placeholder-gray-900::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:placeholder-gray-900:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:placeholder-gray-900::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:placeholder-gray-900::placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:placeholder-red-100::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:placeholder-red-100::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:placeholder-red-100:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:placeholder-red-100::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:placeholder-red-100::placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:placeholder-red-200::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:placeholder-red-200::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:placeholder-red-200:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:placeholder-red-200::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:placeholder-red-200::placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:placeholder-red-300::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:placeholder-red-300::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:placeholder-red-300:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:placeholder-red-300::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:placeholder-red-300::placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:placeholder-red-400::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:placeholder-red-400::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:placeholder-red-400:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:placeholder-red-400::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:placeholder-red-400::placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:placeholder-red-500::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:placeholder-red-500::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:placeholder-red-500:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:placeholder-red-500::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:placeholder-red-500::placeholder {
+ color: #f56565;
+ }
+
+ .lg\:placeholder-red-600::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:placeholder-red-600::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:placeholder-red-600:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:placeholder-red-600::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:placeholder-red-600::placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:placeholder-red-700::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:placeholder-red-700::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:placeholder-red-700:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:placeholder-red-700::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:placeholder-red-700::placeholder {
+ color: #c53030;
+ }
+
+ .lg\:placeholder-red-800::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:placeholder-red-800::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:placeholder-red-800:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:placeholder-red-800::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:placeholder-red-800::placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:placeholder-red-900::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:placeholder-red-900::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:placeholder-red-900:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:placeholder-red-900::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:placeholder-red-900::placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:placeholder-orange-100::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:placeholder-orange-100::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:placeholder-orange-100:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:placeholder-orange-100::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:placeholder-orange-100::placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:placeholder-orange-200::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:placeholder-orange-200::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:placeholder-orange-200:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:placeholder-orange-200::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:placeholder-orange-200::placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:placeholder-orange-300::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:placeholder-orange-300::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:placeholder-orange-300:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:placeholder-orange-300::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:placeholder-orange-300::placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:placeholder-orange-400::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:placeholder-orange-400::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:placeholder-orange-400:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:placeholder-orange-400::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:placeholder-orange-400::placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:placeholder-orange-500::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:placeholder-orange-500::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:placeholder-orange-500:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:placeholder-orange-500::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:placeholder-orange-500::placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:placeholder-orange-600::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:placeholder-orange-600::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:placeholder-orange-600:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:placeholder-orange-600::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:placeholder-orange-600::placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:placeholder-orange-700::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:placeholder-orange-700::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:placeholder-orange-700:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:placeholder-orange-700::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:placeholder-orange-700::placeholder {
+ color: #c05621;
+ }
+
+ .lg\:placeholder-orange-800::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:placeholder-orange-800::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:placeholder-orange-800:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:placeholder-orange-800::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:placeholder-orange-800::placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:placeholder-orange-900::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:placeholder-orange-900::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:placeholder-orange-900:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:placeholder-orange-900::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:placeholder-orange-900::placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:placeholder-yellow-100::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:placeholder-yellow-100::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:placeholder-yellow-100:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:placeholder-yellow-100::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:placeholder-yellow-100::placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:placeholder-yellow-200::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:placeholder-yellow-200::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:placeholder-yellow-200:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:placeholder-yellow-200::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:placeholder-yellow-200::placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:placeholder-yellow-300::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:placeholder-yellow-300::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:placeholder-yellow-300:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:placeholder-yellow-300::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:placeholder-yellow-300::placeholder {
+ color: #faf089;
+ }
+
+ .lg\:placeholder-yellow-400::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:placeholder-yellow-400::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:placeholder-yellow-400:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:placeholder-yellow-400::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:placeholder-yellow-400::placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:placeholder-yellow-500::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:placeholder-yellow-500::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:placeholder-yellow-500:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:placeholder-yellow-500::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:placeholder-yellow-500::placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:placeholder-yellow-600::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:placeholder-yellow-600::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:placeholder-yellow-600:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:placeholder-yellow-600::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:placeholder-yellow-600::placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:placeholder-yellow-700::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:placeholder-yellow-700::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:placeholder-yellow-700:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:placeholder-yellow-700::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:placeholder-yellow-700::placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:placeholder-yellow-800::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:placeholder-yellow-800::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:placeholder-yellow-800:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:placeholder-yellow-800::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:placeholder-yellow-800::placeholder {
+ color: #975a16;
+ }
+
+ .lg\:placeholder-yellow-900::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:placeholder-yellow-900::-moz-placeholder {
+ color: #744210;
+ }
+
+ .lg\:placeholder-yellow-900:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:placeholder-yellow-900::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:placeholder-yellow-900::placeholder {
+ color: #744210;
+ }
+
+ .lg\:placeholder-green-100::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:placeholder-green-100::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:placeholder-green-100:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:placeholder-green-100::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:placeholder-green-100::placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:placeholder-green-200::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:placeholder-green-200::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:placeholder-green-200:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:placeholder-green-200::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:placeholder-green-200::placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:placeholder-green-300::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:placeholder-green-300::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:placeholder-green-300:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:placeholder-green-300::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:placeholder-green-300::placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:placeholder-green-400::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:placeholder-green-400::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:placeholder-green-400:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:placeholder-green-400::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:placeholder-green-400::placeholder {
+ color: #68d391;
+ }
+
+ .lg\:placeholder-green-500::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:placeholder-green-500::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:placeholder-green-500:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:placeholder-green-500::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:placeholder-green-500::placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:placeholder-green-600::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:placeholder-green-600::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:placeholder-green-600:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:placeholder-green-600::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:placeholder-green-600::placeholder {
+ color: #38a169;
+ }
+
+ .lg\:placeholder-green-700::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:placeholder-green-700::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:placeholder-green-700:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:placeholder-green-700::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:placeholder-green-700::placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:placeholder-green-800::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:placeholder-green-800::-moz-placeholder {
+ color: #276749;
+ }
+
+ .lg\:placeholder-green-800:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:placeholder-green-800::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:placeholder-green-800::placeholder {
+ color: #276749;
+ }
+
+ .lg\:placeholder-green-900::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:placeholder-green-900::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:placeholder-green-900:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:placeholder-green-900::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:placeholder-green-900::placeholder {
+ color: #22543d;
+ }
+
+ .lg\:placeholder-teal-100::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:placeholder-teal-100::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:placeholder-teal-100:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:placeholder-teal-100::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:placeholder-teal-100::placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:placeholder-teal-200::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:placeholder-teal-200::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:placeholder-teal-200:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:placeholder-teal-200::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:placeholder-teal-200::placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:placeholder-teal-300::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:placeholder-teal-300::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:placeholder-teal-300:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:placeholder-teal-300::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:placeholder-teal-300::placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:placeholder-teal-400::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:placeholder-teal-400::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:placeholder-teal-400:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:placeholder-teal-400::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:placeholder-teal-400::placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:placeholder-teal-500::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:placeholder-teal-500::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:placeholder-teal-500:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:placeholder-teal-500::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:placeholder-teal-500::placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:placeholder-teal-600::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:placeholder-teal-600::-moz-placeholder {
+ color: #319795;
+ }
+
+ .lg\:placeholder-teal-600:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:placeholder-teal-600::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:placeholder-teal-600::placeholder {
+ color: #319795;
+ }
+
+ .lg\:placeholder-teal-700::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:placeholder-teal-700::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:placeholder-teal-700:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:placeholder-teal-700::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:placeholder-teal-700::placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:placeholder-teal-800::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:placeholder-teal-800::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:placeholder-teal-800:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:placeholder-teal-800::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:placeholder-teal-800::placeholder {
+ color: #285e61;
+ }
+
+ .lg\:placeholder-teal-900::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:placeholder-teal-900::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:placeholder-teal-900:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:placeholder-teal-900::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:placeholder-teal-900::placeholder {
+ color: #234e52;
+ }
+
+ .lg\:placeholder-blue-100::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:placeholder-blue-100::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:placeholder-blue-100:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:placeholder-blue-100::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:placeholder-blue-100::placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:placeholder-blue-200::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:placeholder-blue-200::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:placeholder-blue-200:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:placeholder-blue-200::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:placeholder-blue-200::placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:placeholder-blue-300::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:placeholder-blue-300::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:placeholder-blue-300:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:placeholder-blue-300::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:placeholder-blue-300::placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:placeholder-blue-400::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:placeholder-blue-400::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:placeholder-blue-400:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:placeholder-blue-400::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:placeholder-blue-400::placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:placeholder-blue-500::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:placeholder-blue-500::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:placeholder-blue-500:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:placeholder-blue-500::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:placeholder-blue-500::placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:placeholder-blue-600::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:placeholder-blue-600::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:placeholder-blue-600:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:placeholder-blue-600::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:placeholder-blue-600::placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:placeholder-blue-700::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:placeholder-blue-700::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:placeholder-blue-700:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:placeholder-blue-700::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:placeholder-blue-700::placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:placeholder-blue-800::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:placeholder-blue-800::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:placeholder-blue-800:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:placeholder-blue-800::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:placeholder-blue-800::placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:placeholder-blue-900::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:placeholder-blue-900::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:placeholder-blue-900:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:placeholder-blue-900::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:placeholder-blue-900::placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:placeholder-indigo-100::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:placeholder-indigo-100::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:placeholder-indigo-100:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:placeholder-indigo-100::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:placeholder-indigo-100::placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:placeholder-indigo-200::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:placeholder-indigo-200::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:placeholder-indigo-200:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:placeholder-indigo-200::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:placeholder-indigo-200::placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:placeholder-indigo-300::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:placeholder-indigo-300::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:placeholder-indigo-300:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:placeholder-indigo-300::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:placeholder-indigo-300::placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:placeholder-indigo-400::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:placeholder-indigo-400::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:placeholder-indigo-400:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:placeholder-indigo-400::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:placeholder-indigo-400::placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:placeholder-indigo-500::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:placeholder-indigo-500::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:placeholder-indigo-500:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:placeholder-indigo-500::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:placeholder-indigo-500::placeholder {
+ color: #667eea;
+ }
+
+ .lg\:placeholder-indigo-600::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:placeholder-indigo-600::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:placeholder-indigo-600:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:placeholder-indigo-600::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:placeholder-indigo-600::placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:placeholder-indigo-700::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:placeholder-indigo-700::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:placeholder-indigo-700:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:placeholder-indigo-700::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:placeholder-indigo-700::placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:placeholder-indigo-800::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:placeholder-indigo-800::-moz-placeholder {
+ color: #434190;
+ }
+
+ .lg\:placeholder-indigo-800:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:placeholder-indigo-800::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:placeholder-indigo-800::placeholder {
+ color: #434190;
+ }
+
+ .lg\:placeholder-indigo-900::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:placeholder-indigo-900::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:placeholder-indigo-900:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:placeholder-indigo-900::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:placeholder-indigo-900::placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:placeholder-purple-100::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:placeholder-purple-100::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:placeholder-purple-100:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:placeholder-purple-100::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:placeholder-purple-100::placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:placeholder-purple-200::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:placeholder-purple-200::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:placeholder-purple-200:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:placeholder-purple-200::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:placeholder-purple-200::placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:placeholder-purple-300::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:placeholder-purple-300::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:placeholder-purple-300:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:placeholder-purple-300::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:placeholder-purple-300::placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:placeholder-purple-400::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:placeholder-purple-400::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:placeholder-purple-400:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:placeholder-purple-400::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:placeholder-purple-400::placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:placeholder-purple-500::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:placeholder-purple-500::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:placeholder-purple-500:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:placeholder-purple-500::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:placeholder-purple-500::placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:placeholder-purple-600::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:placeholder-purple-600::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:placeholder-purple-600:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:placeholder-purple-600::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:placeholder-purple-600::placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:placeholder-purple-700::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:placeholder-purple-700::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:placeholder-purple-700:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:placeholder-purple-700::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:placeholder-purple-700::placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:placeholder-purple-800::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:placeholder-purple-800::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:placeholder-purple-800:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:placeholder-purple-800::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:placeholder-purple-800::placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:placeholder-purple-900::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:placeholder-purple-900::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:placeholder-purple-900:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:placeholder-purple-900::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:placeholder-purple-900::placeholder {
+ color: #44337a;
+ }
+
+ .lg\:placeholder-pink-100::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:placeholder-pink-100::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:placeholder-pink-100:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:placeholder-pink-100::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:placeholder-pink-100::placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:placeholder-pink-200::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:placeholder-pink-200::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:placeholder-pink-200:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:placeholder-pink-200::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:placeholder-pink-200::placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:placeholder-pink-300::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:placeholder-pink-300::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:placeholder-pink-300:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:placeholder-pink-300::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:placeholder-pink-300::placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:placeholder-pink-400::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:placeholder-pink-400::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:placeholder-pink-400:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:placeholder-pink-400::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:placeholder-pink-400::placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:placeholder-pink-500::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:placeholder-pink-500::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:placeholder-pink-500:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:placeholder-pink-500::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:placeholder-pink-500::placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:placeholder-pink-600::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:placeholder-pink-600::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:placeholder-pink-600:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:placeholder-pink-600::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:placeholder-pink-600::placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:placeholder-pink-700::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:placeholder-pink-700::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:placeholder-pink-700:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:placeholder-pink-700::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:placeholder-pink-700::placeholder {
+ color: #b83280;
+ }
+
+ .lg\:placeholder-pink-800::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:placeholder-pink-800::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:placeholder-pink-800:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:placeholder-pink-800::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:placeholder-pink-800::placeholder {
+ color: #97266d;
+ }
+
+ .lg\:placeholder-pink-900::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:placeholder-pink-900::-moz-placeholder {
+ color: #702459;
+ }
+
+ .lg\:placeholder-pink-900:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:placeholder-pink-900::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:placeholder-pink-900::placeholder {
+ color: #702459;
+ }
+
+ .lg\:focus\:placeholder-transparent:focus::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:focus\:placeholder-transparent:focus::-moz-placeholder {
+ color: transparent;
+ }
+
+ .lg\:focus\:placeholder-transparent:focus:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:focus\:placeholder-transparent:focus::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .lg\:focus\:placeholder-transparent:focus::placeholder {
+ color: transparent;
+ }
+
+ .lg\:focus\:placeholder-black:focus::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:focus\:placeholder-black:focus::-moz-placeholder {
+ color: #000;
+ }
+
+ .lg\:focus\:placeholder-black:focus:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:focus\:placeholder-black:focus::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .lg\:focus\:placeholder-black:focus::placeholder {
+ color: #000;
+ }
+
+ .lg\:focus\:placeholder-white:focus::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:focus\:placeholder-white:focus::-moz-placeholder {
+ color: #fff;
+ }
+
+ .lg\:focus\:placeholder-white:focus:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:focus\:placeholder-white:focus::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .lg\:focus\:placeholder-white:focus::placeholder {
+ color: #fff;
+ }
+
+ .lg\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:placeholder-gray-100:focus::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:placeholder-gray-100:focus::placeholder {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:placeholder-gray-200:focus::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:placeholder-gray-200:focus::placeholder {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:placeholder-gray-300:focus::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:placeholder-gray-300:focus::placeholder {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:placeholder-gray-400:focus::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:placeholder-gray-400:focus::placeholder {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:placeholder-gray-500:focus::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:placeholder-gray-500:focus::placeholder {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder {
+ color: #718096;
+ }
+
+ .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:focus\:placeholder-gray-600:focus::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .lg\:focus\:placeholder-gray-600:focus::placeholder {
+ color: #718096;
+ }
+
+ .lg\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:placeholder-gray-700:focus::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:placeholder-gray-700:focus::placeholder {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:placeholder-gray-800:focus::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:placeholder-gray-800:focus::placeholder {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:placeholder-gray-900:focus::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:placeholder-gray-900:focus::placeholder {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:placeholder-red-100:focus::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:placeholder-red-100:focus::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:placeholder-red-100:focus::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:placeholder-red-100:focus::placeholder {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:placeholder-red-200:focus::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:placeholder-red-200:focus::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:placeholder-red-200:focus::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:placeholder-red-200:focus::placeholder {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:placeholder-red-300:focus::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:placeholder-red-300:focus::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:placeholder-red-300:focus::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:placeholder-red-300:focus::placeholder {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:placeholder-red-400:focus::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:placeholder-red-400:focus::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:placeholder-red-400:focus::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:placeholder-red-400:focus::placeholder {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:placeholder-red-500:focus::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:focus\:placeholder-red-500:focus::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:focus\:placeholder-red-500:focus::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .lg\:focus\:placeholder-red-500:focus::placeholder {
+ color: #f56565;
+ }
+
+ .lg\:focus\:placeholder-red-600:focus::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:placeholder-red-600:focus::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:placeholder-red-600:focus::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:placeholder-red-600:focus::placeholder {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:placeholder-red-700:focus::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:focus\:placeholder-red-700:focus::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:focus\:placeholder-red-700:focus::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .lg\:focus\:placeholder-red-700:focus::placeholder {
+ color: #c53030;
+ }
+
+ .lg\:focus\:placeholder-red-800:focus::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:placeholder-red-800:focus::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:placeholder-red-800:focus::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:placeholder-red-800:focus::placeholder {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:placeholder-red-900:focus::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:placeholder-red-900:focus::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:placeholder-red-900:focus::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:placeholder-red-900:focus::placeholder {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:placeholder-orange-100:focus::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:placeholder-orange-100:focus::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:placeholder-orange-100:focus:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:placeholder-orange-100:focus::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:placeholder-orange-100:focus::placeholder {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:placeholder-orange-200:focus::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:placeholder-orange-200:focus::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:placeholder-orange-200:focus:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:placeholder-orange-200:focus::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:placeholder-orange-200:focus::placeholder {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:placeholder-orange-300:focus::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:placeholder-orange-300:focus::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:placeholder-orange-300:focus:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:placeholder-orange-300:focus::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:placeholder-orange-300:focus::placeholder {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:placeholder-orange-400:focus::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:placeholder-orange-400:focus::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:placeholder-orange-400:focus:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:placeholder-orange-400:focus::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:placeholder-orange-400:focus::placeholder {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:placeholder-orange-500:focus::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:placeholder-orange-500:focus::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:placeholder-orange-500:focus:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:placeholder-orange-500:focus::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:placeholder-orange-500:focus::placeholder {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:placeholder-orange-600:focus::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:placeholder-orange-600:focus::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:placeholder-orange-600:focus:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:placeholder-orange-600:focus::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:placeholder-orange-600:focus::placeholder {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:placeholder-orange-700:focus::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:focus\:placeholder-orange-700:focus::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:focus\:placeholder-orange-700:focus:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:focus\:placeholder-orange-700:focus::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .lg\:focus\:placeholder-orange-700:focus::placeholder {
+ color: #c05621;
+ }
+
+ .lg\:focus\:placeholder-orange-800:focus::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:placeholder-orange-800:focus::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:placeholder-orange-800:focus:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:placeholder-orange-800:focus::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:placeholder-orange-800:focus::placeholder {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:placeholder-orange-900:focus::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:placeholder-orange-900:focus::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:placeholder-orange-900:focus:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:placeholder-orange-900:focus::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:placeholder-orange-900:focus::placeholder {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:placeholder-yellow-100:focus::placeholder {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:placeholder-yellow-200:focus::placeholder {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .lg\:focus\:placeholder-yellow-300:focus::placeholder {
+ color: #faf089;
+ }
+
+ .lg\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:placeholder-yellow-400:focus::placeholder {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:placeholder-yellow-500:focus::placeholder {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:placeholder-yellow-600:focus::placeholder {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:placeholder-yellow-700:focus::placeholder {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .lg\:focus\:placeholder-yellow-800:focus::placeholder {
+ color: #975a16;
+ }
+
+ .lg\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder {
+ color: #744210;
+ }
+
+ .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .lg\:focus\:placeholder-yellow-900:focus::placeholder {
+ color: #744210;
+ }
+
+ .lg\:focus\:placeholder-green-100:focus::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:placeholder-green-100:focus::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:placeholder-green-100:focus::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:placeholder-green-100:focus::placeholder {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:placeholder-green-200:focus::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:placeholder-green-200:focus::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:placeholder-green-200:focus::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:placeholder-green-200:focus::placeholder {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:placeholder-green-300:focus::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:placeholder-green-300:focus::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:placeholder-green-300:focus::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:placeholder-green-300:focus::placeholder {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:placeholder-green-400:focus::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:focus\:placeholder-green-400:focus::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:focus\:placeholder-green-400:focus::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .lg\:focus\:placeholder-green-400:focus::placeholder {
+ color: #68d391;
+ }
+
+ .lg\:focus\:placeholder-green-500:focus::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:placeholder-green-500:focus::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:placeholder-green-500:focus::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:placeholder-green-500:focus::placeholder {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:placeholder-green-600:focus::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:focus\:placeholder-green-600:focus::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:focus\:placeholder-green-600:focus::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .lg\:focus\:placeholder-green-600:focus::placeholder {
+ color: #38a169;
+ }
+
+ .lg\:focus\:placeholder-green-700:focus::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:placeholder-green-700:focus::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:placeholder-green-700:focus::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:placeholder-green-700:focus::placeholder {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:placeholder-green-800:focus::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:focus\:placeholder-green-800:focus::-moz-placeholder {
+ color: #276749;
+ }
+
+ .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:focus\:placeholder-green-800:focus::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .lg\:focus\:placeholder-green-800:focus::placeholder {
+ color: #276749;
+ }
+
+ .lg\:focus\:placeholder-green-900:focus::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:focus\:placeholder-green-900:focus::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:focus\:placeholder-green-900:focus::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .lg\:focus\:placeholder-green-900:focus::placeholder {
+ color: #22543d;
+ }
+
+ .lg\:focus\:placeholder-teal-100:focus::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:placeholder-teal-100:focus::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:placeholder-teal-100:focus:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:placeholder-teal-100:focus::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:placeholder-teal-100:focus::placeholder {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:placeholder-teal-200:focus::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:placeholder-teal-200:focus::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:placeholder-teal-200:focus:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:placeholder-teal-200:focus::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:placeholder-teal-200:focus::placeholder {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:placeholder-teal-300:focus::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:placeholder-teal-300:focus::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:placeholder-teal-300:focus:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:placeholder-teal-300:focus::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:placeholder-teal-300:focus::placeholder {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:placeholder-teal-400:focus::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:placeholder-teal-400:focus::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:placeholder-teal-400:focus:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:placeholder-teal-400:focus::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:placeholder-teal-400:focus::placeholder {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:placeholder-teal-500:focus::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:placeholder-teal-500:focus::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:placeholder-teal-500:focus:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:placeholder-teal-500:focus::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:placeholder-teal-500:focus::placeholder {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:placeholder-teal-600:focus::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:focus\:placeholder-teal-600:focus::-moz-placeholder {
+ color: #319795;
+ }
+
+ .lg\:focus\:placeholder-teal-600:focus:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:focus\:placeholder-teal-600:focus::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .lg\:focus\:placeholder-teal-600:focus::placeholder {
+ color: #319795;
+ }
+
+ .lg\:focus\:placeholder-teal-700:focus::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:placeholder-teal-700:focus::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:placeholder-teal-700:focus:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:placeholder-teal-700:focus::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:placeholder-teal-700:focus::placeholder {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:placeholder-teal-800:focus::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:focus\:placeholder-teal-800:focus::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:focus\:placeholder-teal-800:focus:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:focus\:placeholder-teal-800:focus::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .lg\:focus\:placeholder-teal-800:focus::placeholder {
+ color: #285e61;
+ }
+
+ .lg\:focus\:placeholder-teal-900:focus::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:focus\:placeholder-teal-900:focus::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:focus\:placeholder-teal-900:focus:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:focus\:placeholder-teal-900:focus::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .lg\:focus\:placeholder-teal-900:focus::placeholder {
+ color: #234e52;
+ }
+
+ .lg\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:placeholder-blue-100:focus::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:placeholder-blue-100:focus::placeholder {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:placeholder-blue-200:focus::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:placeholder-blue-200:focus::placeholder {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:placeholder-blue-300:focus::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:placeholder-blue-300:focus::placeholder {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:placeholder-blue-400:focus::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:placeholder-blue-400:focus::placeholder {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:placeholder-blue-500:focus::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:placeholder-blue-500:focus::placeholder {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:placeholder-blue-600:focus::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:placeholder-blue-600:focus::placeholder {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:placeholder-blue-700:focus::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:placeholder-blue-700:focus::placeholder {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:placeholder-blue-800:focus::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:placeholder-blue-800:focus::placeholder {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:placeholder-blue-900:focus::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:placeholder-blue-900:focus::placeholder {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:placeholder-indigo-100:focus::placeholder {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:placeholder-indigo-200:focus::placeholder {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:placeholder-indigo-300:focus::placeholder {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:placeholder-indigo-400:focus::placeholder {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .lg\:focus\:placeholder-indigo-500:focus::placeholder {
+ color: #667eea;
+ }
+
+ .lg\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:placeholder-indigo-600:focus::placeholder {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:placeholder-indigo-700:focus::placeholder {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder {
+ color: #434190;
+ }
+
+ .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .lg\:focus\:placeholder-indigo-800:focus::placeholder {
+ color: #434190;
+ }
+
+ .lg\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:placeholder-indigo-900:focus::placeholder {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:placeholder-purple-100:focus::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:placeholder-purple-100:focus::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:placeholder-purple-100:focus:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:placeholder-purple-100:focus::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:placeholder-purple-100:focus::placeholder {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:placeholder-purple-200:focus::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:placeholder-purple-200:focus::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:placeholder-purple-200:focus:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:placeholder-purple-200:focus::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:placeholder-purple-200:focus::placeholder {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:placeholder-purple-300:focus::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:placeholder-purple-300:focus::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:placeholder-purple-300:focus:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:placeholder-purple-300:focus::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:placeholder-purple-300:focus::placeholder {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:placeholder-purple-400:focus::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:placeholder-purple-400:focus::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:placeholder-purple-400:focus:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:placeholder-purple-400:focus::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:placeholder-purple-400:focus::placeholder {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:placeholder-purple-500:focus::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:placeholder-purple-500:focus::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:placeholder-purple-500:focus:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:placeholder-purple-500:focus::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:placeholder-purple-500:focus::placeholder {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:placeholder-purple-600:focus::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:placeholder-purple-600:focus::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:placeholder-purple-600:focus:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:placeholder-purple-600:focus::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:placeholder-purple-600:focus::placeholder {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:placeholder-purple-700:focus::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:placeholder-purple-700:focus::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:placeholder-purple-700:focus:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:placeholder-purple-700:focus::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:placeholder-purple-700:focus::placeholder {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:placeholder-purple-800:focus::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:placeholder-purple-800:focus::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:placeholder-purple-800:focus:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:placeholder-purple-800:focus::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:placeholder-purple-800:focus::placeholder {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:placeholder-purple-900:focus::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:focus\:placeholder-purple-900:focus::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:focus\:placeholder-purple-900:focus:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:focus\:placeholder-purple-900:focus::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .lg\:focus\:placeholder-purple-900:focus::placeholder {
+ color: #44337a;
+ }
+
+ .lg\:focus\:placeholder-pink-100:focus::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:placeholder-pink-100:focus::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:placeholder-pink-100:focus:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:placeholder-pink-100:focus::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:placeholder-pink-100:focus::placeholder {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:placeholder-pink-200:focus::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:placeholder-pink-200:focus::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:placeholder-pink-200:focus:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:placeholder-pink-200:focus::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:placeholder-pink-200:focus::placeholder {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:placeholder-pink-300:focus::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:placeholder-pink-300:focus::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:placeholder-pink-300:focus:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:placeholder-pink-300:focus::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:placeholder-pink-300:focus::placeholder {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:placeholder-pink-400:focus::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:placeholder-pink-400:focus::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:placeholder-pink-400:focus:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:placeholder-pink-400:focus::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:placeholder-pink-400:focus::placeholder {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:placeholder-pink-500:focus::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:placeholder-pink-500:focus::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:placeholder-pink-500:focus:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:placeholder-pink-500:focus::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:placeholder-pink-500:focus::placeholder {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:placeholder-pink-600:focus::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:placeholder-pink-600:focus::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:placeholder-pink-600:focus:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:placeholder-pink-600:focus::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:placeholder-pink-600:focus::placeholder {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:placeholder-pink-700:focus::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:focus\:placeholder-pink-700:focus::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:focus\:placeholder-pink-700:focus:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:focus\:placeholder-pink-700:focus::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .lg\:focus\:placeholder-pink-700:focus::placeholder {
+ color: #b83280;
+ }
+
+ .lg\:focus\:placeholder-pink-800:focus::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:focus\:placeholder-pink-800:focus::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:focus\:placeholder-pink-800:focus:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:focus\:placeholder-pink-800:focus::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .lg\:focus\:placeholder-pink-800:focus::placeholder {
+ color: #97266d;
+ }
+
+ .lg\:focus\:placeholder-pink-900:focus::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:focus\:placeholder-pink-900:focus::-moz-placeholder {
+ color: #702459;
+ }
+
+ .lg\:focus\:placeholder-pink-900:focus:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:focus\:placeholder-pink-900:focus::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .lg\:focus\:placeholder-pink-900:focus::placeholder {
+ color: #702459;
+ }
+
+ .lg\:pointer-events-none {
+ pointer-events: none;
+ }
+
+ .lg\:pointer-events-auto {
+ pointer-events: auto;
+ }
+
+ .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: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ }
+
+ .lg\:inset-auto {
+ top: auto;
+ right: auto;
+ bottom: auto;
+ left: auto;
+ }
+
+ .lg\:inset-y-0 {
+ top: 0;
+ bottom: 0;
+ }
+
+ .lg\:inset-x-0 {
+ right: 0;
+ left: 0;
+ }
+
+ .lg\:inset-y-auto {
+ top: auto;
+ bottom: auto;
+ }
+
+ .lg\:inset-x-auto {
+ right: auto;
+ left: auto;
+ }
+
+ .lg\:top-0 {
+ top: 0;
+ }
+
+ .lg\:right-0 {
+ right: 0;
+ }
+
+ .lg\:bottom-0 {
+ bottom: 0;
+ }
+
+ .lg\:left-0 {
+ left: 0;
+ }
+
+ .lg\:top-auto {
+ top: auto;
+ }
+
+ .lg\:right-auto {
+ right: auto;
+ }
+
+ .lg\:bottom-auto {
+ bottom: auto;
+ }
+
+ .lg\:left-auto {
+ left: auto;
+ }
+
+ .lg\:resize-none {
+ resize: none;
+ }
+
+ .lg\:resize-y {
+ resize: vertical;
+ }
+
+ .lg\:resize-x {
+ resize: horizontal;
+ }
+
+ .lg\:resize {
+ resize: both;
+ }
+
+ .lg\:shadow {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:shadow-md {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:shadow-lg {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .lg\:shadow-xl {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .lg\:shadow-2xl {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .lg\:shadow-inner {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:shadow-outline {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .lg\:shadow-none {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .lg\:hover\:shadow:hover {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:hover\:shadow-md:hover {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:hover\:shadow-lg:hover {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .lg\:hover\:shadow-xl:hover {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .lg\:hover\:shadow-2xl:hover {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .lg\:hover\:shadow-inner:hover {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:hover\:shadow-outline:hover {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .lg\:hover\:shadow-none:hover {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .lg\:focus\:shadow:focus {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:focus\:shadow-md:focus {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:focus\:shadow-lg:focus {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .lg\:focus\:shadow-xl:focus {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .lg\:focus\:shadow-2xl:focus {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .lg\:focus\:shadow-inner:focus {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .lg\:focus\:shadow-outline:focus {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .lg\:focus\:shadow-none:focus {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .lg\:fill-current {
+ fill: currentColor;
+ }
+
+ .lg\:stroke-current {
+ stroke: currentColor;
+ }
+
+ .lg\:table-auto {
+ table-layout: auto;
+ }
+
+ .lg\:table-fixed {
+ table-layout: fixed;
+ }
+
+ .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\:text-transparent {
+ color: transparent;
+ }
+
+ .lg\:text-black {
+ color: #000;
+ }
+
+ .lg\:text-white {
+ color: #fff;
+ }
+
+ .lg\:text-gray-100 {
+ color: #f7fafc;
+ }
+
+ .lg\:text-gray-200 {
+ color: #edf2f7;
+ }
+
+ .lg\:text-gray-300 {
+ color: #e2e8f0;
+ }
+
+ .lg\:text-gray-400 {
+ color: #cbd5e0;
+ }
+
+ .lg\:text-gray-500 {
+ color: #a0aec0;
+ }
+
+ .lg\:text-gray-600 {
+ color: #718096;
+ }
+
+ .lg\:text-gray-700 {
+ color: #4a5568;
+ }
+
+ .lg\:text-gray-800 {
+ color: #2d3748;
+ }
+
+ .lg\:text-gray-900 {
+ color: #1a202c;
+ }
+
+ .lg\:text-red-100 {
+ color: #fff5f5;
+ }
+
+ .lg\:text-red-200 {
+ color: #fed7d7;
+ }
+
+ .lg\:text-red-300 {
+ color: #feb2b2;
+ }
+
+ .lg\:text-red-400 {
+ color: #fc8181;
+ }
+
+ .lg\:text-red-500 {
+ color: #f56565;
+ }
+
+ .lg\:text-red-600 {
+ color: #e53e3e;
+ }
+
+ .lg\:text-red-700 {
+ color: #c53030;
+ }
+
+ .lg\:text-red-800 {
+ color: #9b2c2c;
+ }
+
+ .lg\:text-red-900 {
+ color: #742a2a;
+ }
+
+ .lg\:text-orange-100 {
+ color: #fffaf0;
+ }
+
+ .lg\:text-orange-200 {
+ color: #feebc8;
+ }
+
+ .lg\:text-orange-300 {
+ color: #fbd38d;
+ }
+
+ .lg\:text-orange-400 {
+ color: #f6ad55;
+ }
+
+ .lg\:text-orange-500 {
+ color: #ed8936;
+ }
+
+ .lg\:text-orange-600 {
+ color: #dd6b20;
+ }
+
+ .lg\:text-orange-700 {
+ color: #c05621;
+ }
+
+ .lg\:text-orange-800 {
+ color: #9c4221;
+ }
+
+ .lg\:text-orange-900 {
+ color: #7b341e;
+ }
+
+ .lg\:text-yellow-100 {
+ color: #fffff0;
+ }
+
+ .lg\:text-yellow-200 {
+ color: #fefcbf;
+ }
+
+ .lg\:text-yellow-300 {
+ color: #faf089;
+ }
+
+ .lg\:text-yellow-400 {
+ color: #f6e05e;
+ }
+
+ .lg\:text-yellow-500 {
+ color: #ecc94b;
+ }
+
+ .lg\:text-yellow-600 {
+ color: #d69e2e;
+ }
+
+ .lg\:text-yellow-700 {
+ color: #b7791f;
+ }
+
+ .lg\:text-yellow-800 {
+ color: #975a16;
+ }
+
+ .lg\:text-yellow-900 {
+ color: #744210;
+ }
+
+ .lg\:text-green-100 {
+ color: #f0fff4;
+ }
+
+ .lg\:text-green-200 {
+ color: #c6f6d5;
+ }
+
+ .lg\:text-green-300 {
+ color: #9ae6b4;
+ }
+
+ .lg\:text-green-400 {
+ color: #68d391;
+ }
+
+ .lg\:text-green-500 {
+ color: #48bb78;
+ }
+
+ .lg\:text-green-600 {
+ color: #38a169;
+ }
+
+ .lg\:text-green-700 {
+ color: #2f855a;
+ }
+
+ .lg\:text-green-800 {
+ color: #276749;
+ }
+
+ .lg\:text-green-900 {
+ color: #22543d;
+ }
+
+ .lg\:text-teal-100 {
+ color: #e6fffa;
+ }
+
+ .lg\:text-teal-200 {
+ color: #b2f5ea;
+ }
+
+ .lg\:text-teal-300 {
+ color: #81e6d9;
+ }
+
+ .lg\:text-teal-400 {
+ color: #4fd1c5;
+ }
+
+ .lg\:text-teal-500 {
+ color: #38b2ac;
+ }
+
+ .lg\:text-teal-600 {
+ color: #319795;
+ }
+
+ .lg\:text-teal-700 {
+ color: #2c7a7b;
+ }
+
+ .lg\:text-teal-800 {
+ color: #285e61;
+ }
+
+ .lg\:text-teal-900 {
+ color: #234e52;
+ }
+
+ .lg\:text-blue-100 {
+ color: #ebf8ff;
+ }
+
+ .lg\:text-blue-200 {
+ color: #bee3f8;
+ }
+
+ .lg\:text-blue-300 {
+ color: #90cdf4;
+ }
+
+ .lg\:text-blue-400 {
+ color: #63b3ed;
+ }
+
+ .lg\:text-blue-500 {
+ color: #4299e1;
+ }
+
+ .lg\:text-blue-600 {
+ color: #3182ce;
+ }
+
+ .lg\:text-blue-700 {
+ color: #2b6cb0;
+ }
+
+ .lg\:text-blue-800 {
+ color: #2c5282;
+ }
+
+ .lg\:text-blue-900 {
+ color: #2a4365;
+ }
+
+ .lg\:text-indigo-100 {
+ color: #ebf4ff;
+ }
+
+ .lg\:text-indigo-200 {
+ color: #c3dafe;
+ }
+
+ .lg\:text-indigo-300 {
+ color: #a3bffa;
+ }
+
+ .lg\:text-indigo-400 {
+ color: #7f9cf5;
+ }
+
+ .lg\:text-indigo-500 {
+ color: #667eea;
+ }
+
+ .lg\:text-indigo-600 {
+ color: #5a67d8;
+ }
+
+ .lg\:text-indigo-700 {
+ color: #4c51bf;
+ }
+
+ .lg\:text-indigo-800 {
+ color: #434190;
+ }
+
+ .lg\:text-indigo-900 {
+ color: #3c366b;
+ }
+
+ .lg\:text-purple-100 {
+ color: #faf5ff;
+ }
+
+ .lg\:text-purple-200 {
+ color: #e9d8fd;
+ }
+
+ .lg\:text-purple-300 {
+ color: #d6bcfa;
+ }
+
+ .lg\:text-purple-400 {
+ color: #b794f4;
+ }
+
+ .lg\:text-purple-500 {
+ color: #9f7aea;
+ }
+
+ .lg\:text-purple-600 {
+ color: #805ad5;
+ }
+
+ .lg\:text-purple-700 {
+ color: #6b46c1;
+ }
+
+ .lg\:text-purple-800 {
+ color: #553c9a;
+ }
+
+ .lg\:text-purple-900 {
+ color: #44337a;
+ }
+
+ .lg\:text-pink-100 {
+ color: #fff5f7;
+ }
+
+ .lg\:text-pink-200 {
+ color: #fed7e2;
+ }
+
+ .lg\:text-pink-300 {
+ color: #fbb6ce;
+ }
+
+ .lg\:text-pink-400 {
+ color: #f687b3;
+ }
+
+ .lg\:text-pink-500 {
+ color: #ed64a6;
+ }
+
+ .lg\:text-pink-600 {
+ color: #d53f8c;
+ }
+
+ .lg\:text-pink-700 {
+ color: #b83280;
+ }
+
+ .lg\:text-pink-800 {
+ color: #97266d;
+ }
+
+ .lg\:text-pink-900 {
+ color: #702459;
+ }
+
+ .lg\:hover\:text-transparent:hover {
+ color: transparent;
+ }
+
+ .lg\:hover\:text-black:hover {
+ color: #000;
+ }
+
+ .lg\:hover\:text-white:hover {
+ color: #fff;
+ }
+
+ .lg\:hover\:text-gray-100:hover {
+ color: #f7fafc;
+ }
+
+ .lg\:hover\:text-gray-200:hover {
+ color: #edf2f7;
+ }
+
+ .lg\:hover\:text-gray-300:hover {
+ color: #e2e8f0;
+ }
+
+ .lg\:hover\:text-gray-400:hover {
+ color: #cbd5e0;
+ }
+
+ .lg\:hover\:text-gray-500:hover {
+ color: #a0aec0;
+ }
+
+ .lg\:hover\:text-gray-600:hover {
+ color: #718096;
+ }
+
+ .lg\:hover\:text-gray-700:hover {
+ color: #4a5568;
+ }
+
+ .lg\:hover\:text-gray-800:hover {
+ color: #2d3748;
+ }
+
+ .lg\:hover\:text-gray-900:hover {
+ color: #1a202c;
+ }
+
+ .lg\:hover\:text-red-100:hover {
+ color: #fff5f5;
+ }
+
+ .lg\:hover\:text-red-200:hover {
+ color: #fed7d7;
+ }
+
+ .lg\:hover\:text-red-300:hover {
+ color: #feb2b2;
+ }
+
+ .lg\:hover\:text-red-400:hover {
+ color: #fc8181;
+ }
+
+ .lg\:hover\:text-red-500:hover {
+ color: #f56565;
+ }
+
+ .lg\:hover\:text-red-600:hover {
+ color: #e53e3e;
+ }
+
+ .lg\:hover\:text-red-700:hover {
+ color: #c53030;
+ }
+
+ .lg\:hover\:text-red-800:hover {
+ color: #9b2c2c;
+ }
+
+ .lg\:hover\:text-red-900:hover {
+ color: #742a2a;
+ }
+
+ .lg\:hover\:text-orange-100:hover {
+ color: #fffaf0;
+ }
+
+ .lg\:hover\:text-orange-200:hover {
+ color: #feebc8;
+ }
+
+ .lg\:hover\:text-orange-300:hover {
+ color: #fbd38d;
+ }
+
+ .lg\:hover\:text-orange-400:hover {
+ color: #f6ad55;
+ }
+
+ .lg\:hover\:text-orange-500:hover {
+ color: #ed8936;
+ }
+
+ .lg\:hover\:text-orange-600:hover {
+ color: #dd6b20;
+ }
+
+ .lg\:hover\:text-orange-700:hover {
+ color: #c05621;
+ }
+
+ .lg\:hover\:text-orange-800:hover {
+ color: #9c4221;
+ }
+
+ .lg\:hover\:text-orange-900:hover {
+ color: #7b341e;
+ }
+
+ .lg\:hover\:text-yellow-100:hover {
+ color: #fffff0;
+ }
+
+ .lg\:hover\:text-yellow-200:hover {
+ color: #fefcbf;
+ }
+
+ .lg\:hover\:text-yellow-300:hover {
+ color: #faf089;
+ }
+
+ .lg\:hover\:text-yellow-400:hover {
+ color: #f6e05e;
+ }
+
+ .lg\:hover\:text-yellow-500:hover {
+ color: #ecc94b;
+ }
+
+ .lg\:hover\:text-yellow-600:hover {
+ color: #d69e2e;
+ }
+
+ .lg\:hover\:text-yellow-700:hover {
+ color: #b7791f;
+ }
+
+ .lg\:hover\:text-yellow-800:hover {
+ color: #975a16;
+ }
+
+ .lg\:hover\:text-yellow-900:hover {
+ color: #744210;
+ }
+
+ .lg\:hover\:text-green-100:hover {
+ color: #f0fff4;
+ }
+
+ .lg\:hover\:text-green-200:hover {
+ color: #c6f6d5;
+ }
+
+ .lg\:hover\:text-green-300:hover {
+ color: #9ae6b4;
+ }
+
+ .lg\:hover\:text-green-400:hover {
+ color: #68d391;
+ }
+
+ .lg\:hover\:text-green-500:hover {
+ color: #48bb78;
+ }
+
+ .lg\:hover\:text-green-600:hover {
+ color: #38a169;
+ }
+
+ .lg\:hover\:text-green-700:hover {
+ color: #2f855a;
+ }
+
+ .lg\:hover\:text-green-800:hover {
+ color: #276749;
+ }
+
+ .lg\:hover\:text-green-900:hover {
+ color: #22543d;
+ }
+
+ .lg\:hover\:text-teal-100:hover {
+ color: #e6fffa;
+ }
+
+ .lg\:hover\:text-teal-200:hover {
+ color: #b2f5ea;
+ }
+
+ .lg\:hover\:text-teal-300:hover {
+ color: #81e6d9;
+ }
+
+ .lg\:hover\:text-teal-400:hover {
+ color: #4fd1c5;
+ }
+
+ .lg\:hover\:text-teal-500:hover {
+ color: #38b2ac;
+ }
+
+ .lg\:hover\:text-teal-600:hover {
+ color: #319795;
+ }
+
+ .lg\:hover\:text-teal-700:hover {
+ color: #2c7a7b;
+ }
+
+ .lg\:hover\:text-teal-800:hover {
+ color: #285e61;
+ }
+
+ .lg\:hover\:text-teal-900:hover {
+ color: #234e52;
+ }
+
+ .lg\:hover\:text-blue-100:hover {
+ color: #ebf8ff;
+ }
+
+ .lg\:hover\:text-blue-200:hover {
+ color: #bee3f8;
+ }
+
+ .lg\:hover\:text-blue-300:hover {
+ color: #90cdf4;
+ }
+
+ .lg\:hover\:text-blue-400:hover {
+ color: #63b3ed;
+ }
+
+ .lg\:hover\:text-blue-500:hover {
+ color: #4299e1;
+ }
+
+ .lg\:hover\:text-blue-600:hover {
+ color: #3182ce;
+ }
+
+ .lg\:hover\:text-blue-700:hover {
+ color: #2b6cb0;
+ }
+
+ .lg\:hover\:text-blue-800:hover {
+ color: #2c5282;
+ }
+
+ .lg\:hover\:text-blue-900:hover {
+ color: #2a4365;
+ }
+
+ .lg\:hover\:text-indigo-100:hover {
+ color: #ebf4ff;
+ }
+
+ .lg\:hover\:text-indigo-200:hover {
+ color: #c3dafe;
+ }
+
+ .lg\:hover\:text-indigo-300:hover {
+ color: #a3bffa;
+ }
+
+ .lg\:hover\:text-indigo-400:hover {
+ color: #7f9cf5;
+ }
+
+ .lg\:hover\:text-indigo-500:hover {
+ color: #667eea;
+ }
+
+ .lg\:hover\:text-indigo-600:hover {
+ color: #5a67d8;
+ }
+
+ .lg\:hover\:text-indigo-700:hover {
+ color: #4c51bf;
+ }
+
+ .lg\:hover\:text-indigo-800:hover {
+ color: #434190;
+ }
+
+ .lg\:hover\:text-indigo-900:hover {
+ color: #3c366b;
+ }
+
+ .lg\:hover\:text-purple-100:hover {
+ color: #faf5ff;
+ }
+
+ .lg\:hover\:text-purple-200:hover {
+ color: #e9d8fd;
+ }
+
+ .lg\:hover\:text-purple-300:hover {
+ color: #d6bcfa;
+ }
+
+ .lg\:hover\:text-purple-400:hover {
+ color: #b794f4;
+ }
+
+ .lg\:hover\:text-purple-500:hover {
+ color: #9f7aea;
+ }
+
+ .lg\:hover\:text-purple-600:hover {
+ color: #805ad5;
+ }
+
+ .lg\:hover\:text-purple-700:hover {
+ color: #6b46c1;
+ }
+
+ .lg\:hover\:text-purple-800:hover {
+ color: #553c9a;
+ }
+
+ .lg\:hover\:text-purple-900:hover {
+ color: #44337a;
+ }
+
+ .lg\:hover\:text-pink-100:hover {
+ color: #fff5f7;
+ }
+
+ .lg\:hover\:text-pink-200:hover {
+ color: #fed7e2;
+ }
+
+ .lg\:hover\:text-pink-300:hover {
+ color: #fbb6ce;
+ }
+
+ .lg\:hover\:text-pink-400:hover {
+ color: #f687b3;
+ }
+
+ .lg\:hover\:text-pink-500:hover {
+ color: #ed64a6;
+ }
+
+ .lg\:hover\:text-pink-600:hover {
+ color: #d53f8c;
+ }
+
+ .lg\:hover\:text-pink-700:hover {
+ color: #b83280;
+ }
+
+ .lg\:hover\:text-pink-800:hover {
+ color: #97266d;
+ }
+
+ .lg\:hover\:text-pink-900:hover {
+ color: #702459;
+ }
+
+ .lg\:focus\:text-transparent:focus {
+ color: transparent;
+ }
+
+ .lg\:focus\:text-black:focus {
+ color: #000;
+ }
+
+ .lg\:focus\:text-white:focus {
+ color: #fff;
+ }
+
+ .lg\:focus\:text-gray-100:focus {
+ color: #f7fafc;
+ }
+
+ .lg\:focus\:text-gray-200:focus {
+ color: #edf2f7;
+ }
+
+ .lg\:focus\:text-gray-300:focus {
+ color: #e2e8f0;
+ }
+
+ .lg\:focus\:text-gray-400:focus {
+ color: #cbd5e0;
+ }
+
+ .lg\:focus\:text-gray-500:focus {
+ color: #a0aec0;
+ }
+
+ .lg\:focus\:text-gray-600:focus {
+ color: #718096;
+ }
+
+ .lg\:focus\:text-gray-700:focus {
+ color: #4a5568;
+ }
+
+ .lg\:focus\:text-gray-800:focus {
+ color: #2d3748;
+ }
+
+ .lg\:focus\:text-gray-900:focus {
+ color: #1a202c;
+ }
+
+ .lg\:focus\:text-red-100:focus {
+ color: #fff5f5;
+ }
+
+ .lg\:focus\:text-red-200:focus {
+ color: #fed7d7;
+ }
+
+ .lg\:focus\:text-red-300:focus {
+ color: #feb2b2;
+ }
+
+ .lg\:focus\:text-red-400:focus {
+ color: #fc8181;
+ }
+
+ .lg\:focus\:text-red-500:focus {
+ color: #f56565;
+ }
+
+ .lg\:focus\:text-red-600:focus {
+ color: #e53e3e;
+ }
+
+ .lg\:focus\:text-red-700:focus {
+ color: #c53030;
+ }
+
+ .lg\:focus\:text-red-800:focus {
+ color: #9b2c2c;
+ }
+
+ .lg\:focus\:text-red-900:focus {
+ color: #742a2a;
+ }
+
+ .lg\:focus\:text-orange-100:focus {
+ color: #fffaf0;
+ }
+
+ .lg\:focus\:text-orange-200:focus {
+ color: #feebc8;
+ }
+
+ .lg\:focus\:text-orange-300:focus {
+ color: #fbd38d;
+ }
+
+ .lg\:focus\:text-orange-400:focus {
+ color: #f6ad55;
+ }
+
+ .lg\:focus\:text-orange-500:focus {
+ color: #ed8936;
+ }
+
+ .lg\:focus\:text-orange-600:focus {
+ color: #dd6b20;
+ }
+
+ .lg\:focus\:text-orange-700:focus {
+ color: #c05621;
+ }
+
+ .lg\:focus\:text-orange-800:focus {
+ color: #9c4221;
+ }
+
+ .lg\:focus\:text-orange-900:focus {
+ color: #7b341e;
+ }
+
+ .lg\:focus\:text-yellow-100:focus {
+ color: #fffff0;
+ }
+
+ .lg\:focus\:text-yellow-200:focus {
+ color: #fefcbf;
+ }
+
+ .lg\:focus\:text-yellow-300:focus {
+ color: #faf089;
+ }
+
+ .lg\:focus\:text-yellow-400:focus {
+ color: #f6e05e;
+ }
+
+ .lg\:focus\:text-yellow-500:focus {
+ color: #ecc94b;
+ }
+
+ .lg\:focus\:text-yellow-600:focus {
+ color: #d69e2e;
+ }
+
+ .lg\:focus\:text-yellow-700:focus {
+ color: #b7791f;
+ }
+
+ .lg\:focus\:text-yellow-800:focus {
+ color: #975a16;
+ }
+
+ .lg\:focus\:text-yellow-900:focus {
+ color: #744210;
+ }
+
+ .lg\:focus\:text-green-100:focus {
+ color: #f0fff4;
+ }
+
+ .lg\:focus\:text-green-200:focus {
+ color: #c6f6d5;
+ }
+
+ .lg\:focus\:text-green-300:focus {
+ color: #9ae6b4;
+ }
+
+ .lg\:focus\:text-green-400:focus {
+ color: #68d391;
+ }
+
+ .lg\:focus\:text-green-500:focus {
+ color: #48bb78;
+ }
+
+ .lg\:focus\:text-green-600:focus {
+ color: #38a169;
+ }
+
+ .lg\:focus\:text-green-700:focus {
+ color: #2f855a;
+ }
+
+ .lg\:focus\:text-green-800:focus {
+ color: #276749;
+ }
+
+ .lg\:focus\:text-green-900:focus {
+ color: #22543d;
+ }
+
+ .lg\:focus\:text-teal-100:focus {
+ color: #e6fffa;
+ }
+
+ .lg\:focus\:text-teal-200:focus {
+ color: #b2f5ea;
+ }
+
+ .lg\:focus\:text-teal-300:focus {
+ color: #81e6d9;
+ }
+
+ .lg\:focus\:text-teal-400:focus {
+ color: #4fd1c5;
+ }
+
+ .lg\:focus\:text-teal-500:focus {
+ color: #38b2ac;
+ }
+
+ .lg\:focus\:text-teal-600:focus {
+ color: #319795;
+ }
+
+ .lg\:focus\:text-teal-700:focus {
+ color: #2c7a7b;
+ }
+
+ .lg\:focus\:text-teal-800:focus {
+ color: #285e61;
+ }
+
+ .lg\:focus\:text-teal-900:focus {
+ color: #234e52;
+ }
+
+ .lg\:focus\:text-blue-100:focus {
+ color: #ebf8ff;
+ }
+
+ .lg\:focus\:text-blue-200:focus {
+ color: #bee3f8;
+ }
+
+ .lg\:focus\:text-blue-300:focus {
+ color: #90cdf4;
+ }
+
+ .lg\:focus\:text-blue-400:focus {
+ color: #63b3ed;
+ }
+
+ .lg\:focus\:text-blue-500:focus {
+ color: #4299e1;
+ }
+
+ .lg\:focus\:text-blue-600:focus {
+ color: #3182ce;
+ }
+
+ .lg\:focus\:text-blue-700:focus {
+ color: #2b6cb0;
+ }
+
+ .lg\:focus\:text-blue-800:focus {
+ color: #2c5282;
+ }
+
+ .lg\:focus\:text-blue-900:focus {
+ color: #2a4365;
+ }
+
+ .lg\:focus\:text-indigo-100:focus {
+ color: #ebf4ff;
+ }
+
+ .lg\:focus\:text-indigo-200:focus {
+ color: #c3dafe;
+ }
+
+ .lg\:focus\:text-indigo-300:focus {
+ color: #a3bffa;
+ }
+
+ .lg\:focus\:text-indigo-400:focus {
+ color: #7f9cf5;
+ }
+
+ .lg\:focus\:text-indigo-500:focus {
+ color: #667eea;
+ }
+
+ .lg\:focus\:text-indigo-600:focus {
+ color: #5a67d8;
+ }
+
+ .lg\:focus\:text-indigo-700:focus {
+ color: #4c51bf;
+ }
+
+ .lg\:focus\:text-indigo-800:focus {
+ color: #434190;
+ }
+
+ .lg\:focus\:text-indigo-900:focus {
+ color: #3c366b;
+ }
+
+ .lg\:focus\:text-purple-100:focus {
+ color: #faf5ff;
+ }
+
+ .lg\:focus\:text-purple-200:focus {
+ color: #e9d8fd;
+ }
+
+ .lg\:focus\:text-purple-300:focus {
+ color: #d6bcfa;
+ }
+
+ .lg\:focus\:text-purple-400:focus {
+ color: #b794f4;
+ }
+
+ .lg\:focus\:text-purple-500:focus {
+ color: #9f7aea;
+ }
+
+ .lg\:focus\:text-purple-600:focus {
+ color: #805ad5;
+ }
+
+ .lg\:focus\:text-purple-700:focus {
+ color: #6b46c1;
+ }
+
+ .lg\:focus\:text-purple-800:focus {
+ color: #553c9a;
+ }
+
+ .lg\:focus\:text-purple-900:focus {
+ color: #44337a;
+ }
+
+ .lg\:focus\:text-pink-100:focus {
+ color: #fff5f7;
+ }
+
+ .lg\:focus\:text-pink-200:focus {
+ color: #fed7e2;
+ }
+
+ .lg\:focus\:text-pink-300:focus {
+ color: #fbb6ce;
+ }
+
+ .lg\:focus\:text-pink-400:focus {
+ color: #f687b3;
+ }
+
+ .lg\:focus\:text-pink-500:focus {
+ color: #ed64a6;
+ }
+
+ .lg\:focus\:text-pink-600:focus {
+ color: #d53f8c;
+ }
+
+ .lg\:focus\:text-pink-700:focus {
+ color: #b83280;
+ }
+
+ .lg\:focus\:text-pink-800:focus {
+ color: #97266d;
+ }
+
+ .lg\:focus\:text-pink-900:focus {
+ color: #702459;
+ }
+
+ .lg\:text-xs {
+ font-size: 0.75rem;
+ }
+
+ .lg\:text-sm {
+ font-size: 0.875rem;
+ }
+
+ .lg\:text-base {
+ font-size: 1rem;
+ }
+
+ .lg\:text-lg {
+ font-size: 1.125rem;
+ }
+
+ .lg\:text-xl {
+ font-size: 1.25rem;
+ }
+
+ .lg\:text-2xl {
+ font-size: 1.5rem;
+ }
+
+ .lg\:text-3xl {
+ font-size: 1.875rem;
+ }
+
+ .lg\:text-4xl {
+ font-size: 2.25rem;
+ }
+
+ .lg\:text-5xl {
+ font-size: 3rem;
+ }
+
+ .lg\:text-6xl {
+ font-size: 4rem;
+ }
+
+ .lg\:italic {
+ font-style: italic;
+ }
+
+ .lg\:not-italic {
+ font-style: normal;
+ }
+
+ .lg\:uppercase {
+ text-transform: uppercase;
+ }
+
+ .lg\:lowercase {
+ text-transform: lowercase;
+ }
+
+ .lg\:capitalize {
+ text-transform: capitalize;
+ }
+
+ .lg\:normal-case {
+ text-transform: none;
+ }
+
+ .lg\:underline {
+ text-decoration: underline;
+ }
+
+ .lg\:line-through {
+ text-decoration: line-through;
+ }
+
+ .lg\:no-underline {
+ 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\:tracking-tighter {
+ letter-spacing: -0.05em;
+ }
+
+ .lg\:tracking-tight {
+ letter-spacing: -0.025em;
+ }
+
+ .lg\:tracking-normal {
+ letter-spacing: 0;
+ }
+
+ .lg\:tracking-wide {
+ letter-spacing: 0.025em;
+ }
+
+ .lg\:tracking-wider {
+ letter-spacing: 0.05em;
+ }
+
+ .lg\:tracking-widest {
+ letter-spacing: 0.1em;
+ }
+
+ .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;
+ -ms-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\: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\:visible {
+ visibility: visible;
+ }
+
+ .lg\:invisible {
+ visibility: hidden;
+ }
+
+ .lg\:whitespace-normal {
+ white-space: normal;
+ }
+
+ .lg\:whitespace-no-wrap {
+ 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\:truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
+ .lg\:w-0 {
+ width: 0;
+ }
+
+ .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-8 {
+ width: 2rem;
+ }
+
+ .lg\:w-10 {
+ width: 2.5rem;
+ }
+
+ .lg\:w-12 {
+ width: 3rem;
+ }
+
+ .lg\:w-16 {
+ width: 4rem;
+ }
+
+ .lg\:w-20 {
+ width: 5rem;
+ }
+
+ .lg\:w-24 {
+ width: 6rem;
+ }
+
+ .lg\:w-32 {
+ width: 8rem;
+ }
+
+ .lg\:w-40 {
+ width: 10rem;
+ }
+
+ .lg\:w-48 {
+ width: 12rem;
+ }
+
+ .lg\:w-56 {
+ width: 14rem;
+ }
+
+ .lg\:w-64 {
+ width: 16rem;
+ }
+
+ .lg\:w-auto {
+ width: auto;
+ }
+
+ .lg\:w-px {
+ width: 1px;
+ }
+
+ .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\: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;
+ }
+}
+
+@media (min-width: 1280px) {
+ .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\: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\:appearance-none {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+
+ .xl\:bg-fixed {
+ background-attachment: fixed;
+ }
+
+ .xl\:bg-local {
+ background-attachment: local;
+ }
+
+ .xl\:bg-scroll {
+ background-attachment: scroll;
+ }
+
+ .xl\:bg-transparent {
+ background-color: transparent;
+ }
+
+ .xl\:bg-black {
+ background-color: #000;
+ }
+
+ .xl\:bg-white {
+ background-color: #fff;
+ }
+
+ .xl\:bg-gray-100 {
+ background-color: #f7fafc;
+ }
+
+ .xl\:bg-gray-200 {
+ background-color: #edf2f7;
+ }
+
+ .xl\:bg-gray-300 {
+ background-color: #e2e8f0;
+ }
+
+ .xl\:bg-gray-400 {
+ background-color: #cbd5e0;
+ }
+
+ .xl\:bg-gray-500 {
+ background-color: #a0aec0;
+ }
+
+ .xl\:bg-gray-600 {
+ background-color: #718096;
+ }
+
+ .xl\:bg-gray-700 {
+ background-color: #4a5568;
+ }
+
+ .xl\:bg-gray-800 {
+ background-color: #2d3748;
+ }
+
+ .xl\:bg-gray-900 {
+ background-color: #1a202c;
+ }
+
+ .xl\:bg-red-100 {
+ background-color: #fff5f5;
+ }
+
+ .xl\:bg-red-200 {
+ background-color: #fed7d7;
+ }
+
+ .xl\:bg-red-300 {
+ background-color: #feb2b2;
+ }
+
+ .xl\:bg-red-400 {
+ background-color: #fc8181;
+ }
+
+ .xl\:bg-red-500 {
+ background-color: #f56565;
+ }
+
+ .xl\:bg-red-600 {
+ background-color: #e53e3e;
+ }
+
+ .xl\:bg-red-700 {
+ background-color: #c53030;
+ }
+
+ .xl\:bg-red-800 {
+ background-color: #9b2c2c;
+ }
+
+ .xl\:bg-red-900 {
+ background-color: #742a2a;
+ }
+
+ .xl\:bg-orange-100 {
+ background-color: #fffaf0;
+ }
+
+ .xl\:bg-orange-200 {
+ background-color: #feebc8;
+ }
+
+ .xl\:bg-orange-300 {
+ background-color: #fbd38d;
+ }
+
+ .xl\:bg-orange-400 {
+ background-color: #f6ad55;
+ }
+
+ .xl\:bg-orange-500 {
+ background-color: #ed8936;
+ }
+
+ .xl\:bg-orange-600 {
+ background-color: #dd6b20;
+ }
+
+ .xl\:bg-orange-700 {
+ background-color: #c05621;
+ }
+
+ .xl\:bg-orange-800 {
+ background-color: #9c4221;
+ }
+
+ .xl\:bg-orange-900 {
+ background-color: #7b341e;
+ }
+
+ .xl\:bg-yellow-100 {
+ background-color: #fffff0;
+ }
+
+ .xl\:bg-yellow-200 {
+ background-color: #fefcbf;
+ }
+
+ .xl\:bg-yellow-300 {
+ background-color: #faf089;
+ }
+
+ .xl\:bg-yellow-400 {
+ background-color: #f6e05e;
+ }
+
+ .xl\:bg-yellow-500 {
+ background-color: #ecc94b;
+ }
+
+ .xl\:bg-yellow-600 {
+ background-color: #d69e2e;
+ }
+
+ .xl\:bg-yellow-700 {
+ background-color: #b7791f;
+ }
+
+ .xl\:bg-yellow-800 {
+ background-color: #975a16;
+ }
+
+ .xl\:bg-yellow-900 {
+ background-color: #744210;
+ }
+
+ .xl\:bg-green-100 {
+ background-color: #f0fff4;
+ }
+
+ .xl\:bg-green-200 {
+ background-color: #c6f6d5;
+ }
+
+ .xl\:bg-green-300 {
+ background-color: #9ae6b4;
+ }
+
+ .xl\:bg-green-400 {
+ background-color: #68d391;
+ }
+
+ .xl\:bg-green-500 {
+ background-color: #48bb78;
+ }
+
+ .xl\:bg-green-600 {
+ background-color: #38a169;
+ }
+
+ .xl\:bg-green-700 {
+ background-color: #2f855a;
+ }
+
+ .xl\:bg-green-800 {
+ background-color: #276749;
+ }
+
+ .xl\:bg-green-900 {
+ background-color: #22543d;
+ }
+
+ .xl\:bg-teal-100 {
+ background-color: #e6fffa;
+ }
+
+ .xl\:bg-teal-200 {
+ background-color: #b2f5ea;
+ }
+
+ .xl\:bg-teal-300 {
+ background-color: #81e6d9;
+ }
+
+ .xl\:bg-teal-400 {
+ background-color: #4fd1c5;
+ }
+
+ .xl\:bg-teal-500 {
+ background-color: #38b2ac;
+ }
+
+ .xl\:bg-teal-600 {
+ background-color: #319795;
+ }
+
+ .xl\:bg-teal-700 {
+ background-color: #2c7a7b;
+ }
+
+ .xl\:bg-teal-800 {
+ background-color: #285e61;
+ }
+
+ .xl\:bg-teal-900 {
+ background-color: #234e52;
+ }
+
+ .xl\:bg-blue-100 {
+ background-color: #ebf8ff;
+ }
+
+ .xl\:bg-blue-200 {
+ background-color: #bee3f8;
+ }
+
+ .xl\:bg-blue-300 {
+ background-color: #90cdf4;
+ }
+
+ .xl\:bg-blue-400 {
+ background-color: #63b3ed;
+ }
+
+ .xl\:bg-blue-500 {
+ background-color: #4299e1;
+ }
+
+ .xl\:bg-blue-600 {
+ background-color: #3182ce;
+ }
+
+ .xl\:bg-blue-700 {
+ background-color: #2b6cb0;
+ }
+
+ .xl\:bg-blue-800 {
+ background-color: #2c5282;
+ }
+
+ .xl\:bg-blue-900 {
+ background-color: #2a4365;
+ }
+
+ .xl\:bg-indigo-100 {
+ background-color: #ebf4ff;
+ }
+
+ .xl\:bg-indigo-200 {
+ background-color: #c3dafe;
+ }
+
+ .xl\:bg-indigo-300 {
+ background-color: #a3bffa;
+ }
+
+ .xl\:bg-indigo-400 {
+ background-color: #7f9cf5;
+ }
+
+ .xl\:bg-indigo-500 {
+ background-color: #667eea;
+ }
+
+ .xl\:bg-indigo-600 {
+ background-color: #5a67d8;
+ }
+
+ .xl\:bg-indigo-700 {
+ background-color: #4c51bf;
+ }
+
+ .xl\:bg-indigo-800 {
+ background-color: #434190;
+ }
+
+ .xl\:bg-indigo-900 {
+ background-color: #3c366b;
+ }
+
+ .xl\:bg-purple-100 {
+ background-color: #faf5ff;
+ }
+
+ .xl\:bg-purple-200 {
+ background-color: #e9d8fd;
+ }
+
+ .xl\:bg-purple-300 {
+ background-color: #d6bcfa;
+ }
+
+ .xl\:bg-purple-400 {
+ background-color: #b794f4;
+ }
+
+ .xl\:bg-purple-500 {
+ background-color: #9f7aea;
+ }
+
+ .xl\:bg-purple-600 {
+ background-color: #805ad5;
+ }
+
+ .xl\:bg-purple-700 {
+ background-color: #6b46c1;
+ }
+
+ .xl\:bg-purple-800 {
+ background-color: #553c9a;
+ }
+
+ .xl\:bg-purple-900 {
+ background-color: #44337a;
+ }
+
+ .xl\:bg-pink-100 {
+ background-color: #fff5f7;
+ }
+
+ .xl\:bg-pink-200 {
+ background-color: #fed7e2;
+ }
+
+ .xl\:bg-pink-300 {
+ background-color: #fbb6ce;
+ }
+
+ .xl\:bg-pink-400 {
+ background-color: #f687b3;
+ }
+
+ .xl\:bg-pink-500 {
+ background-color: #ed64a6;
+ }
+
+ .xl\:bg-pink-600 {
+ background-color: #d53f8c;
+ }
+
+ .xl\:bg-pink-700 {
+ background-color: #b83280;
+ }
+
+ .xl\:bg-pink-800 {
+ background-color: #97266d;
+ }
+
+ .xl\:bg-pink-900 {
+ background-color: #702459;
+ }
+
+ .xl\:hover\:bg-transparent:hover {
+ background-color: transparent;
+ }
+
+ .xl\:hover\:bg-black:hover {
+ background-color: #000;
+ }
+
+ .xl\:hover\:bg-white:hover {
+ background-color: #fff;
+ }
+
+ .xl\:hover\:bg-gray-100:hover {
+ background-color: #f7fafc;
+ }
+
+ .xl\:hover\:bg-gray-200:hover {
+ background-color: #edf2f7;
+ }
+
+ .xl\:hover\:bg-gray-300:hover {
+ background-color: #e2e8f0;
+ }
+
+ .xl\:hover\:bg-gray-400:hover {
+ background-color: #cbd5e0;
+ }
+
+ .xl\:hover\:bg-gray-500:hover {
+ background-color: #a0aec0;
+ }
+
+ .xl\:hover\:bg-gray-600:hover {
+ background-color: #718096;
+ }
+
+ .xl\:hover\:bg-gray-700:hover {
+ background-color: #4a5568;
+ }
+
+ .xl\:hover\:bg-gray-800:hover {
+ background-color: #2d3748;
+ }
+
+ .xl\:hover\:bg-gray-900:hover {
+ background-color: #1a202c;
+ }
+
+ .xl\:hover\:bg-red-100:hover {
+ background-color: #fff5f5;
+ }
+
+ .xl\:hover\:bg-red-200:hover {
+ background-color: #fed7d7;
+ }
+
+ .xl\:hover\:bg-red-300:hover {
+ background-color: #feb2b2;
+ }
+
+ .xl\:hover\:bg-red-400:hover {
+ background-color: #fc8181;
+ }
+
+ .xl\:hover\:bg-red-500:hover {
+ background-color: #f56565;
+ }
+
+ .xl\:hover\:bg-red-600:hover {
+ background-color: #e53e3e;
+ }
+
+ .xl\:hover\:bg-red-700:hover {
+ background-color: #c53030;
+ }
+
+ .xl\:hover\:bg-red-800:hover {
+ background-color: #9b2c2c;
+ }
+
+ .xl\:hover\:bg-red-900:hover {
+ background-color: #742a2a;
+ }
+
+ .xl\:hover\:bg-orange-100:hover {
+ background-color: #fffaf0;
+ }
+
+ .xl\:hover\:bg-orange-200:hover {
+ background-color: #feebc8;
+ }
+
+ .xl\:hover\:bg-orange-300:hover {
+ background-color: #fbd38d;
+ }
+
+ .xl\:hover\:bg-orange-400:hover {
+ background-color: #f6ad55;
+ }
+
+ .xl\:hover\:bg-orange-500:hover {
+ background-color: #ed8936;
+ }
+
+ .xl\:hover\:bg-orange-600:hover {
+ background-color: #dd6b20;
+ }
+
+ .xl\:hover\:bg-orange-700:hover {
+ background-color: #c05621;
+ }
+
+ .xl\:hover\:bg-orange-800:hover {
+ background-color: #9c4221;
+ }
+
+ .xl\:hover\:bg-orange-900:hover {
+ background-color: #7b341e;
+ }
+
+ .xl\:hover\:bg-yellow-100:hover {
+ background-color: #fffff0;
+ }
+
+ .xl\:hover\:bg-yellow-200:hover {
+ background-color: #fefcbf;
+ }
+
+ .xl\:hover\:bg-yellow-300:hover {
+ background-color: #faf089;
+ }
+
+ .xl\:hover\:bg-yellow-400:hover {
+ background-color: #f6e05e;
+ }
+
+ .xl\:hover\:bg-yellow-500:hover {
+ background-color: #ecc94b;
+ }
+
+ .xl\:hover\:bg-yellow-600:hover {
+ background-color: #d69e2e;
+ }
+
+ .xl\:hover\:bg-yellow-700:hover {
+ background-color: #b7791f;
+ }
+
+ .xl\:hover\:bg-yellow-800:hover {
+ background-color: #975a16;
+ }
+
+ .xl\:hover\:bg-yellow-900:hover {
+ background-color: #744210;
+ }
+
+ .xl\:hover\:bg-green-100:hover {
+ background-color: #f0fff4;
+ }
+
+ .xl\:hover\:bg-green-200:hover {
+ background-color: #c6f6d5;
+ }
+
+ .xl\:hover\:bg-green-300:hover {
+ background-color: #9ae6b4;
+ }
+
+ .xl\:hover\:bg-green-400:hover {
+ background-color: #68d391;
+ }
+
+ .xl\:hover\:bg-green-500:hover {
+ background-color: #48bb78;
+ }
+
+ .xl\:hover\:bg-green-600:hover {
+ background-color: #38a169;
+ }
+
+ .xl\:hover\:bg-green-700:hover {
+ background-color: #2f855a;
+ }
+
+ .xl\:hover\:bg-green-800:hover {
+ background-color: #276749;
+ }
+
+ .xl\:hover\:bg-green-900:hover {
+ background-color: #22543d;
+ }
+
+ .xl\:hover\:bg-teal-100:hover {
+ background-color: #e6fffa;
+ }
+
+ .xl\:hover\:bg-teal-200:hover {
+ background-color: #b2f5ea;
+ }
+
+ .xl\:hover\:bg-teal-300:hover {
+ background-color: #81e6d9;
+ }
+
+ .xl\:hover\:bg-teal-400:hover {
+ background-color: #4fd1c5;
+ }
+
+ .xl\:hover\:bg-teal-500:hover {
+ background-color: #38b2ac;
+ }
+
+ .xl\:hover\:bg-teal-600:hover {
+ background-color: #319795;
+ }
+
+ .xl\:hover\:bg-teal-700:hover {
+ background-color: #2c7a7b;
+ }
+
+ .xl\:hover\:bg-teal-800:hover {
+ background-color: #285e61;
+ }
+
+ .xl\:hover\:bg-teal-900:hover {
+ background-color: #234e52;
+ }
+
+ .xl\:hover\:bg-blue-100:hover {
+ background-color: #ebf8ff;
+ }
+
+ .xl\:hover\:bg-blue-200:hover {
+ background-color: #bee3f8;
+ }
+
+ .xl\:hover\:bg-blue-300:hover {
+ background-color: #90cdf4;
+ }
+
+ .xl\:hover\:bg-blue-400:hover {
+ background-color: #63b3ed;
+ }
+
+ .xl\:hover\:bg-blue-500:hover {
+ background-color: #4299e1;
+ }
+
+ .xl\:hover\:bg-blue-600:hover {
+ background-color: #3182ce;
+ }
+
+ .xl\:hover\:bg-blue-700:hover {
+ background-color: #2b6cb0;
+ }
+
+ .xl\:hover\:bg-blue-800:hover {
+ background-color: #2c5282;
+ }
+
+ .xl\:hover\:bg-blue-900:hover {
+ background-color: #2a4365;
+ }
+
+ .xl\:hover\:bg-indigo-100:hover {
+ background-color: #ebf4ff;
+ }
+
+ .xl\:hover\:bg-indigo-200:hover {
+ background-color: #c3dafe;
+ }
+
+ .xl\:hover\:bg-indigo-300:hover {
+ background-color: #a3bffa;
+ }
+
+ .xl\:hover\:bg-indigo-400:hover {
+ background-color: #7f9cf5;
+ }
+
+ .xl\:hover\:bg-indigo-500:hover {
+ background-color: #667eea;
+ }
+
+ .xl\:hover\:bg-indigo-600:hover {
+ background-color: #5a67d8;
+ }
+
+ .xl\:hover\:bg-indigo-700:hover {
+ background-color: #4c51bf;
+ }
+
+ .xl\:hover\:bg-indigo-800:hover {
+ background-color: #434190;
+ }
+
+ .xl\:hover\:bg-indigo-900:hover {
+ background-color: #3c366b;
+ }
+
+ .xl\:hover\:bg-purple-100:hover {
+ background-color: #faf5ff;
+ }
+
+ .xl\:hover\:bg-purple-200:hover {
+ background-color: #e9d8fd;
+ }
+
+ .xl\:hover\:bg-purple-300:hover {
+ background-color: #d6bcfa;
+ }
+
+ .xl\:hover\:bg-purple-400:hover {
+ background-color: #b794f4;
+ }
+
+ .xl\:hover\:bg-purple-500:hover {
+ background-color: #9f7aea;
+ }
+
+ .xl\:hover\:bg-purple-600:hover {
+ background-color: #805ad5;
+ }
+
+ .xl\:hover\:bg-purple-700:hover {
+ background-color: #6b46c1;
+ }
+
+ .xl\:hover\:bg-purple-800:hover {
+ background-color: #553c9a;
+ }
+
+ .xl\:hover\:bg-purple-900:hover {
+ background-color: #44337a;
+ }
+
+ .xl\:hover\:bg-pink-100:hover {
+ background-color: #fff5f7;
+ }
+
+ .xl\:hover\:bg-pink-200:hover {
+ background-color: #fed7e2;
+ }
+
+ .xl\:hover\:bg-pink-300:hover {
+ background-color: #fbb6ce;
+ }
+
+ .xl\:hover\:bg-pink-400:hover {
+ background-color: #f687b3;
+ }
+
+ .xl\:hover\:bg-pink-500:hover {
+ background-color: #ed64a6;
+ }
+
+ .xl\:hover\:bg-pink-600:hover {
+ background-color: #d53f8c;
+ }
+
+ .xl\:hover\:bg-pink-700:hover {
+ background-color: #b83280;
+ }
+
+ .xl\:hover\:bg-pink-800:hover {
+ background-color: #97266d;
+ }
+
+ .xl\:hover\:bg-pink-900:hover {
+ background-color: #702459;
+ }
+
+ .xl\:focus\:bg-transparent:focus {
+ background-color: transparent;
+ }
+
+ .xl\:focus\:bg-black:focus {
+ background-color: #000;
+ }
+
+ .xl\:focus\:bg-white:focus {
+ background-color: #fff;
+ }
+
+ .xl\:focus\:bg-gray-100:focus {
+ background-color: #f7fafc;
+ }
+
+ .xl\:focus\:bg-gray-200:focus {
+ background-color: #edf2f7;
+ }
+
+ .xl\:focus\:bg-gray-300:focus {
+ background-color: #e2e8f0;
+ }
+
+ .xl\:focus\:bg-gray-400:focus {
+ background-color: #cbd5e0;
+ }
+
+ .xl\:focus\:bg-gray-500:focus {
+ background-color: #a0aec0;
+ }
+
+ .xl\:focus\:bg-gray-600:focus {
+ background-color: #718096;
+ }
+
+ .xl\:focus\:bg-gray-700:focus {
+ background-color: #4a5568;
+ }
+
+ .xl\:focus\:bg-gray-800:focus {
+ background-color: #2d3748;
+ }
+
+ .xl\:focus\:bg-gray-900:focus {
+ background-color: #1a202c;
+ }
+
+ .xl\:focus\:bg-red-100:focus {
+ background-color: #fff5f5;
+ }
+
+ .xl\:focus\:bg-red-200:focus {
+ background-color: #fed7d7;
+ }
+
+ .xl\:focus\:bg-red-300:focus {
+ background-color: #feb2b2;
+ }
+
+ .xl\:focus\:bg-red-400:focus {
+ background-color: #fc8181;
+ }
+
+ .xl\:focus\:bg-red-500:focus {
+ background-color: #f56565;
+ }
+
+ .xl\:focus\:bg-red-600:focus {
+ background-color: #e53e3e;
+ }
+
+ .xl\:focus\:bg-red-700:focus {
+ background-color: #c53030;
+ }
+
+ .xl\:focus\:bg-red-800:focus {
+ background-color: #9b2c2c;
+ }
+
+ .xl\:focus\:bg-red-900:focus {
+ background-color: #742a2a;
+ }
+
+ .xl\:focus\:bg-orange-100:focus {
+ background-color: #fffaf0;
+ }
+
+ .xl\:focus\:bg-orange-200:focus {
+ background-color: #feebc8;
+ }
+
+ .xl\:focus\:bg-orange-300:focus {
+ background-color: #fbd38d;
+ }
+
+ .xl\:focus\:bg-orange-400:focus {
+ background-color: #f6ad55;
+ }
+
+ .xl\:focus\:bg-orange-500:focus {
+ background-color: #ed8936;
+ }
+
+ .xl\:focus\:bg-orange-600:focus {
+ background-color: #dd6b20;
+ }
+
+ .xl\:focus\:bg-orange-700:focus {
+ background-color: #c05621;
+ }
+
+ .xl\:focus\:bg-orange-800:focus {
+ background-color: #9c4221;
+ }
+
+ .xl\:focus\:bg-orange-900:focus {
+ background-color: #7b341e;
+ }
+
+ .xl\:focus\:bg-yellow-100:focus {
+ background-color: #fffff0;
+ }
+
+ .xl\:focus\:bg-yellow-200:focus {
+ background-color: #fefcbf;
+ }
+
+ .xl\:focus\:bg-yellow-300:focus {
+ background-color: #faf089;
+ }
+
+ .xl\:focus\:bg-yellow-400:focus {
+ background-color: #f6e05e;
+ }
+
+ .xl\:focus\:bg-yellow-500:focus {
+ background-color: #ecc94b;
+ }
+
+ .xl\:focus\:bg-yellow-600:focus {
+ background-color: #d69e2e;
+ }
+
+ .xl\:focus\:bg-yellow-700:focus {
+ background-color: #b7791f;
+ }
+
+ .xl\:focus\:bg-yellow-800:focus {
+ background-color: #975a16;
+ }
+
+ .xl\:focus\:bg-yellow-900:focus {
+ background-color: #744210;
+ }
+
+ .xl\:focus\:bg-green-100:focus {
+ background-color: #f0fff4;
+ }
+
+ .xl\:focus\:bg-green-200:focus {
+ background-color: #c6f6d5;
+ }
+
+ .xl\:focus\:bg-green-300:focus {
+ background-color: #9ae6b4;
+ }
+
+ .xl\:focus\:bg-green-400:focus {
+ background-color: #68d391;
+ }
+
+ .xl\:focus\:bg-green-500:focus {
+ background-color: #48bb78;
+ }
+
+ .xl\:focus\:bg-green-600:focus {
+ background-color: #38a169;
+ }
+
+ .xl\:focus\:bg-green-700:focus {
+ background-color: #2f855a;
+ }
+
+ .xl\:focus\:bg-green-800:focus {
+ background-color: #276749;
+ }
+
+ .xl\:focus\:bg-green-900:focus {
+ background-color: #22543d;
+ }
+
+ .xl\:focus\:bg-teal-100:focus {
+ background-color: #e6fffa;
+ }
+
+ .xl\:focus\:bg-teal-200:focus {
+ background-color: #b2f5ea;
+ }
+
+ .xl\:focus\:bg-teal-300:focus {
+ background-color: #81e6d9;
+ }
+
+ .xl\:focus\:bg-teal-400:focus {
+ background-color: #4fd1c5;
+ }
+
+ .xl\:focus\:bg-teal-500:focus {
+ background-color: #38b2ac;
+ }
+
+ .xl\:focus\:bg-teal-600:focus {
+ background-color: #319795;
+ }
+
+ .xl\:focus\:bg-teal-700:focus {
+ background-color: #2c7a7b;
+ }
+
+ .xl\:focus\:bg-teal-800:focus {
+ background-color: #285e61;
+ }
+
+ .xl\:focus\:bg-teal-900:focus {
+ background-color: #234e52;
+ }
+
+ .xl\:focus\:bg-blue-100:focus {
+ background-color: #ebf8ff;
+ }
+
+ .xl\:focus\:bg-blue-200:focus {
+ background-color: #bee3f8;
+ }
+
+ .xl\:focus\:bg-blue-300:focus {
+ background-color: #90cdf4;
+ }
+
+ .xl\:focus\:bg-blue-400:focus {
+ background-color: #63b3ed;
+ }
+
+ .xl\:focus\:bg-blue-500:focus {
+ background-color: #4299e1;
+ }
+
+ .xl\:focus\:bg-blue-600:focus {
+ background-color: #3182ce;
+ }
+
+ .xl\:focus\:bg-blue-700:focus {
+ background-color: #2b6cb0;
+ }
+
+ .xl\:focus\:bg-blue-800:focus {
+ background-color: #2c5282;
+ }
+
+ .xl\:focus\:bg-blue-900:focus {
+ background-color: #2a4365;
+ }
+
+ .xl\:focus\:bg-indigo-100:focus {
+ background-color: #ebf4ff;
+ }
+
+ .xl\:focus\:bg-indigo-200:focus {
+ background-color: #c3dafe;
+ }
+
+ .xl\:focus\:bg-indigo-300:focus {
+ background-color: #a3bffa;
+ }
+
+ .xl\:focus\:bg-indigo-400:focus {
+ background-color: #7f9cf5;
+ }
+
+ .xl\:focus\:bg-indigo-500:focus {
+ background-color: #667eea;
+ }
+
+ .xl\:focus\:bg-indigo-600:focus {
+ background-color: #5a67d8;
+ }
+
+ .xl\:focus\:bg-indigo-700:focus {
+ background-color: #4c51bf;
+ }
+
+ .xl\:focus\:bg-indigo-800:focus {
+ background-color: #434190;
+ }
+
+ .xl\:focus\:bg-indigo-900:focus {
+ background-color: #3c366b;
+ }
+
+ .xl\:focus\:bg-purple-100:focus {
+ background-color: #faf5ff;
+ }
+
+ .xl\:focus\:bg-purple-200:focus {
+ background-color: #e9d8fd;
+ }
+
+ .xl\:focus\:bg-purple-300:focus {
+ background-color: #d6bcfa;
+ }
+
+ .xl\:focus\:bg-purple-400:focus {
+ background-color: #b794f4;
+ }
+
+ .xl\:focus\:bg-purple-500:focus {
+ background-color: #9f7aea;
+ }
+
+ .xl\:focus\:bg-purple-600:focus {
+ background-color: #805ad5;
+ }
+
+ .xl\:focus\:bg-purple-700:focus {
+ background-color: #6b46c1;
+ }
+
+ .xl\:focus\:bg-purple-800:focus {
+ background-color: #553c9a;
+ }
+
+ .xl\:focus\:bg-purple-900:focus {
+ background-color: #44337a;
+ }
+
+ .xl\:focus\:bg-pink-100:focus {
+ background-color: #fff5f7;
+ }
+
+ .xl\:focus\:bg-pink-200:focus {
+ background-color: #fed7e2;
+ }
+
+ .xl\:focus\:bg-pink-300:focus {
+ background-color: #fbb6ce;
+ }
+
+ .xl\:focus\:bg-pink-400:focus {
+ background-color: #f687b3;
+ }
+
+ .xl\:focus\:bg-pink-500:focus {
+ background-color: #ed64a6;
+ }
+
+ .xl\:focus\:bg-pink-600:focus {
+ background-color: #d53f8c;
+ }
+
+ .xl\:focus\:bg-pink-700:focus {
+ background-color: #b83280;
+ }
+
+ .xl\:focus\:bg-pink-800:focus {
+ background-color: #97266d;
+ }
+
+ .xl\:focus\:bg-pink-900:focus {
+ background-color: #702459;
+ }
+
+ .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-auto {
+ background-size: auto;
+ }
+
+ .xl\:bg-cover {
+ background-size: cover;
+ }
+
+ .xl\:bg-contain {
+ background-size: contain;
+ }
+
+ .xl\:border-collapse {
+ border-collapse: collapse;
+ }
+
+ .xl\:border-separate {
+ border-collapse: separate;
+ }
+
+ .xl\:border-transparent {
+ border-color: transparent;
+ }
+
+ .xl\:border-black {
+ border-color: #000;
+ }
+
+ .xl\:border-white {
+ border-color: #fff;
+ }
+
+ .xl\:border-gray-100 {
+ border-color: #f7fafc;
+ }
+
+ .xl\:border-gray-200 {
+ border-color: #edf2f7;
+ }
+
+ .xl\:border-gray-300 {
+ border-color: #e2e8f0;
+ }
+
+ .xl\:border-gray-400 {
+ border-color: #cbd5e0;
+ }
+
+ .xl\:border-gray-500 {
+ border-color: #a0aec0;
+ }
+
+ .xl\:border-gray-600 {
+ border-color: #718096;
+ }
+
+ .xl\:border-gray-700 {
+ border-color: #4a5568;
+ }
+
+ .xl\:border-gray-800 {
+ border-color: #2d3748;
+ }
+
+ .xl\:border-gray-900 {
+ border-color: #1a202c;
+ }
+
+ .xl\:border-red-100 {
+ border-color: #fff5f5;
+ }
+
+ .xl\:border-red-200 {
+ border-color: #fed7d7;
+ }
+
+ .xl\:border-red-300 {
+ border-color: #feb2b2;
+ }
+
+ .xl\:border-red-400 {
+ border-color: #fc8181;
+ }
+
+ .xl\:border-red-500 {
+ border-color: #f56565;
+ }
+
+ .xl\:border-red-600 {
+ border-color: #e53e3e;
+ }
+
+ .xl\:border-red-700 {
+ border-color: #c53030;
+ }
+
+ .xl\:border-red-800 {
+ border-color: #9b2c2c;
+ }
+
+ .xl\:border-red-900 {
+ border-color: #742a2a;
+ }
+
+ .xl\:border-orange-100 {
+ border-color: #fffaf0;
+ }
+
+ .xl\:border-orange-200 {
+ border-color: #feebc8;
+ }
+
+ .xl\:border-orange-300 {
+ border-color: #fbd38d;
+ }
+
+ .xl\:border-orange-400 {
+ border-color: #f6ad55;
+ }
+
+ .xl\:border-orange-500 {
+ border-color: #ed8936;
+ }
+
+ .xl\:border-orange-600 {
+ border-color: #dd6b20;
+ }
+
+ .xl\:border-orange-700 {
+ border-color: #c05621;
+ }
+
+ .xl\:border-orange-800 {
+ border-color: #9c4221;
+ }
+
+ .xl\:border-orange-900 {
+ border-color: #7b341e;
+ }
+
+ .xl\:border-yellow-100 {
+ border-color: #fffff0;
+ }
+
+ .xl\:border-yellow-200 {
+ border-color: #fefcbf;
+ }
+
+ .xl\:border-yellow-300 {
+ border-color: #faf089;
+ }
+
+ .xl\:border-yellow-400 {
+ border-color: #f6e05e;
+ }
+
+ .xl\:border-yellow-500 {
+ border-color: #ecc94b;
+ }
+
+ .xl\:border-yellow-600 {
+ border-color: #d69e2e;
+ }
+
+ .xl\:border-yellow-700 {
+ border-color: #b7791f;
+ }
+
+ .xl\:border-yellow-800 {
+ border-color: #975a16;
+ }
+
+ .xl\:border-yellow-900 {
+ border-color: #744210;
+ }
+
+ .xl\:border-green-100 {
+ border-color: #f0fff4;
+ }
+
+ .xl\:border-green-200 {
+ border-color: #c6f6d5;
+ }
+
+ .xl\:border-green-300 {
+ border-color: #9ae6b4;
+ }
+
+ .xl\:border-green-400 {
+ border-color: #68d391;
+ }
+
+ .xl\:border-green-500 {
+ border-color: #48bb78;
+ }
+
+ .xl\:border-green-600 {
+ border-color: #38a169;
+ }
+
+ .xl\:border-green-700 {
+ border-color: #2f855a;
+ }
+
+ .xl\:border-green-800 {
+ border-color: #276749;
+ }
+
+ .xl\:border-green-900 {
+ border-color: #22543d;
+ }
+
+ .xl\:border-teal-100 {
+ border-color: #e6fffa;
+ }
+
+ .xl\:border-teal-200 {
+ border-color: #b2f5ea;
+ }
+
+ .xl\:border-teal-300 {
+ border-color: #81e6d9;
+ }
+
+ .xl\:border-teal-400 {
+ border-color: #4fd1c5;
+ }
+
+ .xl\:border-teal-500 {
+ border-color: #38b2ac;
+ }
+
+ .xl\:border-teal-600 {
+ border-color: #319795;
+ }
+
+ .xl\:border-teal-700 {
+ border-color: #2c7a7b;
+ }
+
+ .xl\:border-teal-800 {
+ border-color: #285e61;
+ }
+
+ .xl\:border-teal-900 {
+ border-color: #234e52;
+ }
+
+ .xl\:border-blue-100 {
+ border-color: #ebf8ff;
+ }
+
+ .xl\:border-blue-200 {
+ border-color: #bee3f8;
+ }
+
+ .xl\:border-blue-300 {
+ border-color: #90cdf4;
+ }
+
+ .xl\:border-blue-400 {
+ border-color: #63b3ed;
+ }
+
+ .xl\:border-blue-500 {
+ border-color: #4299e1;
+ }
+
+ .xl\:border-blue-600 {
+ border-color: #3182ce;
+ }
+
+ .xl\:border-blue-700 {
+ border-color: #2b6cb0;
+ }
+
+ .xl\:border-blue-800 {
+ border-color: #2c5282;
+ }
+
+ .xl\:border-blue-900 {
+ border-color: #2a4365;
+ }
+
+ .xl\:border-indigo-100 {
+ border-color: #ebf4ff;
+ }
+
+ .xl\:border-indigo-200 {
+ border-color: #c3dafe;
+ }
+
+ .xl\:border-indigo-300 {
+ border-color: #a3bffa;
+ }
+
+ .xl\:border-indigo-400 {
+ border-color: #7f9cf5;
+ }
+
+ .xl\:border-indigo-500 {
+ border-color: #667eea;
+ }
+
+ .xl\:border-indigo-600 {
+ border-color: #5a67d8;
+ }
+
+ .xl\:border-indigo-700 {
+ border-color: #4c51bf;
+ }
+
+ .xl\:border-indigo-800 {
+ border-color: #434190;
+ }
+
+ .xl\:border-indigo-900 {
+ border-color: #3c366b;
+ }
+
+ .xl\:border-purple-100 {
+ border-color: #faf5ff;
+ }
+
+ .xl\:border-purple-200 {
+ border-color: #e9d8fd;
+ }
+
+ .xl\:border-purple-300 {
+ border-color: #d6bcfa;
+ }
+
+ .xl\:border-purple-400 {
+ border-color: #b794f4;
+ }
+
+ .xl\:border-purple-500 {
+ border-color: #9f7aea;
+ }
+
+ .xl\:border-purple-600 {
+ border-color: #805ad5;
+ }
+
+ .xl\:border-purple-700 {
+ border-color: #6b46c1;
+ }
+
+ .xl\:border-purple-800 {
+ border-color: #553c9a;
+ }
+
+ .xl\:border-purple-900 {
+ border-color: #44337a;
+ }
+
+ .xl\:border-pink-100 {
+ border-color: #fff5f7;
+ }
+
+ .xl\:border-pink-200 {
+ border-color: #fed7e2;
+ }
+
+ .xl\:border-pink-300 {
+ border-color: #fbb6ce;
+ }
+
+ .xl\:border-pink-400 {
+ border-color: #f687b3;
+ }
+
+ .xl\:border-pink-500 {
+ border-color: #ed64a6;
+ }
+
+ .xl\:border-pink-600 {
+ border-color: #d53f8c;
+ }
+
+ .xl\:border-pink-700 {
+ border-color: #b83280;
+ }
+
+ .xl\:border-pink-800 {
+ border-color: #97266d;
+ }
+
+ .xl\:border-pink-900 {
+ border-color: #702459;
+ }
+
+ .xl\:hover\:border-transparent:hover {
+ border-color: transparent;
+ }
+
+ .xl\:hover\:border-black:hover {
+ border-color: #000;
+ }
+
+ .xl\:hover\:border-white:hover {
+ border-color: #fff;
+ }
+
+ .xl\:hover\:border-gray-100:hover {
+ border-color: #f7fafc;
+ }
+
+ .xl\:hover\:border-gray-200:hover {
+ border-color: #edf2f7;
+ }
+
+ .xl\:hover\:border-gray-300:hover {
+ border-color: #e2e8f0;
+ }
+
+ .xl\:hover\:border-gray-400:hover {
+ border-color: #cbd5e0;
+ }
+
+ .xl\:hover\:border-gray-500:hover {
+ border-color: #a0aec0;
+ }
+
+ .xl\:hover\:border-gray-600:hover {
+ border-color: #718096;
+ }
+
+ .xl\:hover\:border-gray-700:hover {
+ border-color: #4a5568;
+ }
+
+ .xl\:hover\:border-gray-800:hover {
+ border-color: #2d3748;
+ }
+
+ .xl\:hover\:border-gray-900:hover {
+ border-color: #1a202c;
+ }
+
+ .xl\:hover\:border-red-100:hover {
+ border-color: #fff5f5;
+ }
+
+ .xl\:hover\:border-red-200:hover {
+ border-color: #fed7d7;
+ }
+
+ .xl\:hover\:border-red-300:hover {
+ border-color: #feb2b2;
+ }
+
+ .xl\:hover\:border-red-400:hover {
+ border-color: #fc8181;
+ }
+
+ .xl\:hover\:border-red-500:hover {
+ border-color: #f56565;
+ }
+
+ .xl\:hover\:border-red-600:hover {
+ border-color: #e53e3e;
+ }
+
+ .xl\:hover\:border-red-700:hover {
+ border-color: #c53030;
+ }
+
+ .xl\:hover\:border-red-800:hover {
+ border-color: #9b2c2c;
+ }
+
+ .xl\:hover\:border-red-900:hover {
+ border-color: #742a2a;
+ }
+
+ .xl\:hover\:border-orange-100:hover {
+ border-color: #fffaf0;
+ }
+
+ .xl\:hover\:border-orange-200:hover {
+ border-color: #feebc8;
+ }
+
+ .xl\:hover\:border-orange-300:hover {
+ border-color: #fbd38d;
+ }
+
+ .xl\:hover\:border-orange-400:hover {
+ border-color: #f6ad55;
+ }
+
+ .xl\:hover\:border-orange-500:hover {
+ border-color: #ed8936;
+ }
+
+ .xl\:hover\:border-orange-600:hover {
+ border-color: #dd6b20;
+ }
+
+ .xl\:hover\:border-orange-700:hover {
+ border-color: #c05621;
+ }
+
+ .xl\:hover\:border-orange-800:hover {
+ border-color: #9c4221;
+ }
+
+ .xl\:hover\:border-orange-900:hover {
+ border-color: #7b341e;
+ }
+
+ .xl\:hover\:border-yellow-100:hover {
+ border-color: #fffff0;
+ }
+
+ .xl\:hover\:border-yellow-200:hover {
+ border-color: #fefcbf;
+ }
+
+ .xl\:hover\:border-yellow-300:hover {
+ border-color: #faf089;
+ }
+
+ .xl\:hover\:border-yellow-400:hover {
+ border-color: #f6e05e;
+ }
+
+ .xl\:hover\:border-yellow-500:hover {
+ border-color: #ecc94b;
+ }
+
+ .xl\:hover\:border-yellow-600:hover {
+ border-color: #d69e2e;
+ }
+
+ .xl\:hover\:border-yellow-700:hover {
+ border-color: #b7791f;
+ }
+
+ .xl\:hover\:border-yellow-800:hover {
+ border-color: #975a16;
+ }
+
+ .xl\:hover\:border-yellow-900:hover {
+ border-color: #744210;
+ }
+
+ .xl\:hover\:border-green-100:hover {
+ border-color: #f0fff4;
+ }
+
+ .xl\:hover\:border-green-200:hover {
+ border-color: #c6f6d5;
+ }
+
+ .xl\:hover\:border-green-300:hover {
+ border-color: #9ae6b4;
+ }
+
+ .xl\:hover\:border-green-400:hover {
+ border-color: #68d391;
+ }
+
+ .xl\:hover\:border-green-500:hover {
+ border-color: #48bb78;
+ }
+
+ .xl\:hover\:border-green-600:hover {
+ border-color: #38a169;
+ }
+
+ .xl\:hover\:border-green-700:hover {
+ border-color: #2f855a;
+ }
+
+ .xl\:hover\:border-green-800:hover {
+ border-color: #276749;
+ }
+
+ .xl\:hover\:border-green-900:hover {
+ border-color: #22543d;
+ }
+
+ .xl\:hover\:border-teal-100:hover {
+ border-color: #e6fffa;
+ }
+
+ .xl\:hover\:border-teal-200:hover {
+ border-color: #b2f5ea;
+ }
+
+ .xl\:hover\:border-teal-300:hover {
+ border-color: #81e6d9;
+ }
+
+ .xl\:hover\:border-teal-400:hover {
+ border-color: #4fd1c5;
+ }
+
+ .xl\:hover\:border-teal-500:hover {
+ border-color: #38b2ac;
+ }
+
+ .xl\:hover\:border-teal-600:hover {
+ border-color: #319795;
+ }
+
+ .xl\:hover\:border-teal-700:hover {
+ border-color: #2c7a7b;
+ }
+
+ .xl\:hover\:border-teal-800:hover {
+ border-color: #285e61;
+ }
+
+ .xl\:hover\:border-teal-900:hover {
+ border-color: #234e52;
+ }
+
+ .xl\:hover\:border-blue-100:hover {
+ border-color: #ebf8ff;
+ }
+
+ .xl\:hover\:border-blue-200:hover {
+ border-color: #bee3f8;
+ }
+
+ .xl\:hover\:border-blue-300:hover {
+ border-color: #90cdf4;
+ }
+
+ .xl\:hover\:border-blue-400:hover {
+ border-color: #63b3ed;
+ }
+
+ .xl\:hover\:border-blue-500:hover {
+ border-color: #4299e1;
+ }
+
+ .xl\:hover\:border-blue-600:hover {
+ border-color: #3182ce;
+ }
+
+ .xl\:hover\:border-blue-700:hover {
+ border-color: #2b6cb0;
+ }
+
+ .xl\:hover\:border-blue-800:hover {
+ border-color: #2c5282;
+ }
+
+ .xl\:hover\:border-blue-900:hover {
+ border-color: #2a4365;
+ }
+
+ .xl\:hover\:border-indigo-100:hover {
+ border-color: #ebf4ff;
+ }
+
+ .xl\:hover\:border-indigo-200:hover {
+ border-color: #c3dafe;
+ }
+
+ .xl\:hover\:border-indigo-300:hover {
+ border-color: #a3bffa;
+ }
+
+ .xl\:hover\:border-indigo-400:hover {
+ border-color: #7f9cf5;
+ }
+
+ .xl\:hover\:border-indigo-500:hover {
+ border-color: #667eea;
+ }
+
+ .xl\:hover\:border-indigo-600:hover {
+ border-color: #5a67d8;
+ }
+
+ .xl\:hover\:border-indigo-700:hover {
+ border-color: #4c51bf;
+ }
+
+ .xl\:hover\:border-indigo-800:hover {
+ border-color: #434190;
+ }
+
+ .xl\:hover\:border-indigo-900:hover {
+ border-color: #3c366b;
+ }
+
+ .xl\:hover\:border-purple-100:hover {
+ border-color: #faf5ff;
+ }
+
+ .xl\:hover\:border-purple-200:hover {
+ border-color: #e9d8fd;
+ }
+
+ .xl\:hover\:border-purple-300:hover {
+ border-color: #d6bcfa;
+ }
+
+ .xl\:hover\:border-purple-400:hover {
+ border-color: #b794f4;
+ }
+
+ .xl\:hover\:border-purple-500:hover {
+ border-color: #9f7aea;
+ }
+
+ .xl\:hover\:border-purple-600:hover {
+ border-color: #805ad5;
+ }
+
+ .xl\:hover\:border-purple-700:hover {
+ border-color: #6b46c1;
+ }
+
+ .xl\:hover\:border-purple-800:hover {
+ border-color: #553c9a;
+ }
+
+ .xl\:hover\:border-purple-900:hover {
+ border-color: #44337a;
+ }
+
+ .xl\:hover\:border-pink-100:hover {
+ border-color: #fff5f7;
+ }
+
+ .xl\:hover\:border-pink-200:hover {
+ border-color: #fed7e2;
+ }
+
+ .xl\:hover\:border-pink-300:hover {
+ border-color: #fbb6ce;
+ }
+
+ .xl\:hover\:border-pink-400:hover {
+ border-color: #f687b3;
+ }
+
+ .xl\:hover\:border-pink-500:hover {
+ border-color: #ed64a6;
+ }
+
+ .xl\:hover\:border-pink-600:hover {
+ border-color: #d53f8c;
+ }
+
+ .xl\:hover\:border-pink-700:hover {
+ border-color: #b83280;
+ }
+
+ .xl\:hover\:border-pink-800:hover {
+ border-color: #97266d;
+ }
+
+ .xl\:hover\:border-pink-900:hover {
+ border-color: #702459;
+ }
+
+ .xl\:focus\:border-transparent:focus {
+ border-color: transparent;
+ }
+
+ .xl\:focus\:border-black:focus {
+ border-color: #000;
+ }
+
+ .xl\:focus\:border-white:focus {
+ border-color: #fff;
+ }
+
+ .xl\:focus\:border-gray-100:focus {
+ border-color: #f7fafc;
+ }
+
+ .xl\:focus\:border-gray-200:focus {
+ border-color: #edf2f7;
+ }
+
+ .xl\:focus\:border-gray-300:focus {
+ border-color: #e2e8f0;
+ }
+
+ .xl\:focus\:border-gray-400:focus {
+ border-color: #cbd5e0;
+ }
+
+ .xl\:focus\:border-gray-500:focus {
+ border-color: #a0aec0;
+ }
+
+ .xl\:focus\:border-gray-600:focus {
+ border-color: #718096;
+ }
+
+ .xl\:focus\:border-gray-700:focus {
+ border-color: #4a5568;
+ }
+
+ .xl\:focus\:border-gray-800:focus {
+ border-color: #2d3748;
+ }
+
+ .xl\:focus\:border-gray-900:focus {
+ border-color: #1a202c;
+ }
+
+ .xl\:focus\:border-red-100:focus {
+ border-color: #fff5f5;
+ }
+
+ .xl\:focus\:border-red-200:focus {
+ border-color: #fed7d7;
+ }
+
+ .xl\:focus\:border-red-300:focus {
+ border-color: #feb2b2;
+ }
+
+ .xl\:focus\:border-red-400:focus {
+ border-color: #fc8181;
+ }
+
+ .xl\:focus\:border-red-500:focus {
+ border-color: #f56565;
+ }
+
+ .xl\:focus\:border-red-600:focus {
+ border-color: #e53e3e;
+ }
+
+ .xl\:focus\:border-red-700:focus {
+ border-color: #c53030;
+ }
+
+ .xl\:focus\:border-red-800:focus {
+ border-color: #9b2c2c;
+ }
+
+ .xl\:focus\:border-red-900:focus {
+ border-color: #742a2a;
+ }
+
+ .xl\:focus\:border-orange-100:focus {
+ border-color: #fffaf0;
+ }
+
+ .xl\:focus\:border-orange-200:focus {
+ border-color: #feebc8;
+ }
+
+ .xl\:focus\:border-orange-300:focus {
+ border-color: #fbd38d;
+ }
+
+ .xl\:focus\:border-orange-400:focus {
+ border-color: #f6ad55;
+ }
+
+ .xl\:focus\:border-orange-500:focus {
+ border-color: #ed8936;
+ }
+
+ .xl\:focus\:border-orange-600:focus {
+ border-color: #dd6b20;
+ }
+
+ .xl\:focus\:border-orange-700:focus {
+ border-color: #c05621;
+ }
+
+ .xl\:focus\:border-orange-800:focus {
+ border-color: #9c4221;
+ }
+
+ .xl\:focus\:border-orange-900:focus {
+ border-color: #7b341e;
+ }
+
+ .xl\:focus\:border-yellow-100:focus {
+ border-color: #fffff0;
+ }
+
+ .xl\:focus\:border-yellow-200:focus {
+ border-color: #fefcbf;
+ }
+
+ .xl\:focus\:border-yellow-300:focus {
+ border-color: #faf089;
+ }
+
+ .xl\:focus\:border-yellow-400:focus {
+ border-color: #f6e05e;
+ }
+
+ .xl\:focus\:border-yellow-500:focus {
+ border-color: #ecc94b;
+ }
+
+ .xl\:focus\:border-yellow-600:focus {
+ border-color: #d69e2e;
+ }
+
+ .xl\:focus\:border-yellow-700:focus {
+ border-color: #b7791f;
+ }
+
+ .xl\:focus\:border-yellow-800:focus {
+ border-color: #975a16;
+ }
+
+ .xl\:focus\:border-yellow-900:focus {
+ border-color: #744210;
+ }
+
+ .xl\:focus\:border-green-100:focus {
+ border-color: #f0fff4;
+ }
+
+ .xl\:focus\:border-green-200:focus {
+ border-color: #c6f6d5;
+ }
+
+ .xl\:focus\:border-green-300:focus {
+ border-color: #9ae6b4;
+ }
+
+ .xl\:focus\:border-green-400:focus {
+ border-color: #68d391;
+ }
+
+ .xl\:focus\:border-green-500:focus {
+ border-color: #48bb78;
+ }
+
+ .xl\:focus\:border-green-600:focus {
+ border-color: #38a169;
+ }
+
+ .xl\:focus\:border-green-700:focus {
+ border-color: #2f855a;
+ }
+
+ .xl\:focus\:border-green-800:focus {
+ border-color: #276749;
+ }
+
+ .xl\:focus\:border-green-900:focus {
+ border-color: #22543d;
+ }
+
+ .xl\:focus\:border-teal-100:focus {
+ border-color: #e6fffa;
+ }
+
+ .xl\:focus\:border-teal-200:focus {
+ border-color: #b2f5ea;
+ }
+
+ .xl\:focus\:border-teal-300:focus {
+ border-color: #81e6d9;
+ }
+
+ .xl\:focus\:border-teal-400:focus {
+ border-color: #4fd1c5;
+ }
+
+ .xl\:focus\:border-teal-500:focus {
+ border-color: #38b2ac;
+ }
+
+ .xl\:focus\:border-teal-600:focus {
+ border-color: #319795;
+ }
+
+ .xl\:focus\:border-teal-700:focus {
+ border-color: #2c7a7b;
+ }
+
+ .xl\:focus\:border-teal-800:focus {
+ border-color: #285e61;
+ }
+
+ .xl\:focus\:border-teal-900:focus {
+ border-color: #234e52;
+ }
+
+ .xl\:focus\:border-blue-100:focus {
+ border-color: #ebf8ff;
+ }
+
+ .xl\:focus\:border-blue-200:focus {
+ border-color: #bee3f8;
+ }
+
+ .xl\:focus\:border-blue-300:focus {
+ border-color: #90cdf4;
+ }
+
+ .xl\:focus\:border-blue-400:focus {
+ border-color: #63b3ed;
+ }
+
+ .xl\:focus\:border-blue-500:focus {
+ border-color: #4299e1;
+ }
+
+ .xl\:focus\:border-blue-600:focus {
+ border-color: #3182ce;
+ }
+
+ .xl\:focus\:border-blue-700:focus {
+ border-color: #2b6cb0;
+ }
+
+ .xl\:focus\:border-blue-800:focus {
+ border-color: #2c5282;
+ }
+
+ .xl\:focus\:border-blue-900:focus {
+ border-color: #2a4365;
+ }
+
+ .xl\:focus\:border-indigo-100:focus {
+ border-color: #ebf4ff;
+ }
+
+ .xl\:focus\:border-indigo-200:focus {
+ border-color: #c3dafe;
+ }
+
+ .xl\:focus\:border-indigo-300:focus {
+ border-color: #a3bffa;
+ }
+
+ .xl\:focus\:border-indigo-400:focus {
+ border-color: #7f9cf5;
+ }
+
+ .xl\:focus\:border-indigo-500:focus {
+ border-color: #667eea;
+ }
+
+ .xl\:focus\:border-indigo-600:focus {
+ border-color: #5a67d8;
+ }
+
+ .xl\:focus\:border-indigo-700:focus {
+ border-color: #4c51bf;
+ }
+
+ .xl\:focus\:border-indigo-800:focus {
+ border-color: #434190;
+ }
+
+ .xl\:focus\:border-indigo-900:focus {
+ border-color: #3c366b;
+ }
+
+ .xl\:focus\:border-purple-100:focus {
+ border-color: #faf5ff;
+ }
+
+ .xl\:focus\:border-purple-200:focus {
+ border-color: #e9d8fd;
+ }
+
+ .xl\:focus\:border-purple-300:focus {
+ border-color: #d6bcfa;
+ }
+
+ .xl\:focus\:border-purple-400:focus {
+ border-color: #b794f4;
+ }
+
+ .xl\:focus\:border-purple-500:focus {
+ border-color: #9f7aea;
+ }
+
+ .xl\:focus\:border-purple-600:focus {
+ border-color: #805ad5;
+ }
+
+ .xl\:focus\:border-purple-700:focus {
+ border-color: #6b46c1;
+ }
+
+ .xl\:focus\:border-purple-800:focus {
+ border-color: #553c9a;
+ }
+
+ .xl\:focus\:border-purple-900:focus {
+ border-color: #44337a;
+ }
+
+ .xl\:focus\:border-pink-100:focus {
+ border-color: #fff5f7;
+ }
+
+ .xl\:focus\:border-pink-200:focus {
+ border-color: #fed7e2;
+ }
+
+ .xl\:focus\:border-pink-300:focus {
+ border-color: #fbb6ce;
+ }
+
+ .xl\:focus\:border-pink-400:focus {
+ border-color: #f687b3;
+ }
+
+ .xl\:focus\:border-pink-500:focus {
+ border-color: #ed64a6;
+ }
+
+ .xl\:focus\:border-pink-600:focus {
+ border-color: #d53f8c;
+ }
+
+ .xl\:focus\:border-pink-700:focus {
+ border-color: #b83280;
+ }
+
+ .xl\:focus\:border-pink-800:focus {
+ border-color: #97266d;
+ }
+
+ .xl\:focus\:border-pink-900:focus {
+ border-color: #702459;
+ }
+
+ .xl\:rounded-none {
+ border-radius: 0;
+ }
+
+ .xl\:rounded-sm {
+ border-radius: 0.125rem;
+ }
+
+ .xl\:rounded {
+ border-radius: 0.25rem;
+ }
+
+ .xl\:rounded-lg {
+ border-radius: 0.5rem;
+ }
+
+ .xl\:rounded-full {
+ border-radius: 9999px;
+ }
+
+ .xl\:rounded-t-none {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ .xl\:rounded-r-none {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+
+ .xl\:rounded-b-none {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .xl\:rounded-l-none {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .xl\:rounded-t-sm {
+ border-top-left-radius: 0.125rem;
+ border-top-right-radius: 0.125rem;
+ }
+
+ .xl\:rounded-r-sm {
+ border-top-right-radius: 0.125rem;
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .xl\:rounded-b-sm {
+ border-bottom-right-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .xl\:rounded-l-sm {
+ border-top-left-radius: 0.125rem;
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .xl\:rounded-t {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+
+ .xl\:rounded-r {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .xl\:rounded-b {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .xl\:rounded-l {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .xl\:rounded-t-lg {
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+ }
+
+ .xl\:rounded-r-lg {
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .xl\:rounded-b-lg {
+ border-bottom-right-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .xl\:rounded-l-lg {
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .xl\:rounded-t-full {
+ border-top-left-radius: 9999px;
+ border-top-right-radius: 9999px;
+ }
+
+ .xl\:rounded-r-full {
+ border-top-right-radius: 9999px;
+ border-bottom-right-radius: 9999px;
+ }
+
+ .xl\:rounded-b-full {
+ border-bottom-right-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .xl\:rounded-l-full {
+ border-top-left-radius: 9999px;
+ border-bottom-left-radius: 9999px;
+ }
+
+ .xl\:rounded-tl-none {
+ border-top-left-radius: 0;
+ }
+
+ .xl\:rounded-tr-none {
+ border-top-right-radius: 0;
+ }
+
+ .xl\:rounded-br-none {
+ border-bottom-right-radius: 0;
+ }
+
+ .xl\:rounded-bl-none {
+ border-bottom-left-radius: 0;
+ }
+
+ .xl\:rounded-tl-sm {
+ border-top-left-radius: 0.125rem;
+ }
+
+ .xl\:rounded-tr-sm {
+ border-top-right-radius: 0.125rem;
+ }
+
+ .xl\:rounded-br-sm {
+ border-bottom-right-radius: 0.125rem;
+ }
+
+ .xl\:rounded-bl-sm {
+ border-bottom-left-radius: 0.125rem;
+ }
+
+ .xl\:rounded-tl {
+ border-top-left-radius: 0.25rem;
+ }
+
+ .xl\:rounded-tr {
+ border-top-right-radius: 0.25rem;
+ }
+
+ .xl\:rounded-br {
+ border-bottom-right-radius: 0.25rem;
+ }
+
+ .xl\:rounded-bl {
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .xl\:rounded-tl-lg {
+ border-top-left-radius: 0.5rem;
+ }
+
+ .xl\:rounded-tr-lg {
+ border-top-right-radius: 0.5rem;
+ }
+
+ .xl\:rounded-br-lg {
+ border-bottom-right-radius: 0.5rem;
+ }
+
+ .xl\:rounded-bl-lg {
+ border-bottom-left-radius: 0.5rem;
+ }
+
+ .xl\:rounded-tl-full {
+ border-top-left-radius: 9999px;
+ }
+
+ .xl\:rounded-tr-full {
+ border-top-right-radius: 9999px;
+ }
+
+ .xl\:rounded-br-full {
+ border-bottom-right-radius: 9999px;
+ }
+
+ .xl\:rounded-bl-full {
+ border-bottom-left-radius: 9999px;
+ }
+
+ .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-0 {
+ border-width: 0;
+ }
+
+ .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: 0;
+ }
+
+ .xl\:border-r-0 {
+ border-right-width: 0;
+ }
+
+ .xl\:border-b-0 {
+ border-bottom-width: 0;
+ }
+
+ .xl\:border-l-0 {
+ border-left-width: 0;
+ }
+
+ .xl\:border-t-2 {
+ border-top-width: 2px;
+ }
+
+ .xl\:border-r-2 {
+ border-right-width: 2px;
+ }
+
+ .xl\:border-b-2 {
+ border-bottom-width: 2px;
+ }
+
+ .xl\:border-l-2 {
+ border-left-width: 2px;
+ }
+
+ .xl\:border-t-4 {
+ border-top-width: 4px;
+ }
+
+ .xl\:border-r-4 {
+ border-right-width: 4px;
+ }
+
+ .xl\:border-b-4 {
+ border-bottom-width: 4px;
+ }
+
+ .xl\:border-l-4 {
+ border-left-width: 4px;
+ }
+
+ .xl\:border-t-8 {
+ border-top-width: 8px;
+ }
+
+ .xl\:border-r-8 {
+ border-right-width: 8px;
+ }
+
+ .xl\:border-b-8 {
+ border-bottom-width: 8px;
+ }
+
+ .xl\:border-l-8 {
+ border-left-width: 8px;
+ }
+
+ .xl\:border-t {
+ border-top-width: 1px;
+ }
+
+ .xl\:border-r {
+ border-right-width: 1px;
+ }
+
+ .xl\:border-b {
+ border-bottom-width: 1px;
+ }
+
+ .xl\:border-l {
+ border-left-width: 1px;
+ }
+
+ .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-not-allowed {
+ cursor: not-allowed;
+ }
+
+ .xl\:block {
+ display: block;
+ }
+
+ .xl\:inline-block {
+ display: inline-block;
+ }
+
+ .xl\:inline {
+ display: inline;
+ }
+
+ .xl\:flex {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ }
+
+ .xl\:inline-flex {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ }
+
+ .xl\:table {
+ display: table;
+ }
+
+ .xl\:table-row {
+ display: table-row;
+ }
+
+ .xl\:table-cell {
+ display: table-cell;
+ }
+
+ .xl\:hidden {
+ display: none;
+ }
+
+ .xl\:flex-row {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+
+ .xl\:flex-row-reverse {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+ }
+
+ .xl\:flex-col {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ }
+
+ .xl\:flex-col-reverse {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: reverse;
+ -ms-flex-direction: column-reverse;
+ flex-direction: column-reverse;
+ }
+
+ .xl\:flex-wrap {
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ }
+
+ .xl\:flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+ }
+
+ .xl\:flex-no-wrap {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+
+ .xl\:items-start {
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+
+ .xl\:items-end {
+ -webkit-box-align: end;
+ -ms-flex-align: end;
+ align-items: flex-end;
+ }
+
+ .xl\:items-center {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+
+ .xl\:items-baseline {
+ -webkit-box-align: baseline;
+ -ms-flex-align: baseline;
+ align-items: baseline;
+ }
+
+ .xl\:items-stretch {
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ }
+
+ .xl\:self-auto {
+ -ms-flex-item-align: auto;
+ align-self: auto;
+ }
+
+ .xl\:self-start {
+ -ms-flex-item-align: start;
+ align-self: flex-start;
+ }
+
+ .xl\:self-end {
+ -ms-flex-item-align: end;
+ align-self: flex-end;
+ }
+
+ .xl\:self-center {
+ -ms-flex-item-align: center;
+ align-self: center;
+ }
+
+ .xl\:self-stretch {
+ -ms-flex-item-align: stretch;
+ align-self: stretch;
+ }
+
+ .xl\:justify-start {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+
+ .xl\:justify-end {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ }
+
+ .xl\:justify-center {
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+
+ .xl\:justify-between {
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+
+ .xl\:justify-around {
+ -ms-flex-pack: distribute;
+ justify-content: space-around;
+ }
+
+ .xl\:content-center {
+ -ms-flex-line-pack: center;
+ align-content: center;
+ }
+
+ .xl\:content-start {
+ -ms-flex-line-pack: start;
+ align-content: flex-start;
+ }
+
+ .xl\:content-end {
+ -ms-flex-line-pack: end;
+ align-content: flex-end;
+ }
+
+ .xl\:content-between {
+ -ms-flex-line-pack: justify;
+ align-content: space-between;
+ }
+
+ .xl\:content-around {
+ -ms-flex-line-pack: distribute;
+ align-content: space-around;
+ }
+
+ .xl\:flex-1 {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 0%;
+ flex: 1 1 0%;
+ }
+
+ .xl\:flex-auto {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+
+ .xl\:flex-initial {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ }
+
+ .xl\:flex-none {
+ -webkit-box-flex: 0;
+ -ms-flex: none;
+ flex: none;
+ }
+
+ .xl\:flex-grow-0 {
+ -webkit-box-flex: 0;
+ -ms-flex-positive: 0;
+ flex-grow: 0;
+ }
+
+ .xl\:flex-grow {
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ }
+
+ .xl\:flex-shrink-0 {
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ }
+
+ .xl\:flex-shrink {
+ -ms-flex-negative: 1;
+ flex-shrink: 1;
+ }
+
+ .xl\:order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+
+ .xl\:order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+
+ .xl\:order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+
+ .xl\:order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+
+ .xl\:order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+
+ .xl\:order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+
+ .xl\:order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+
+ .xl\:order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+
+ .xl\:order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+
+ .xl\:order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+
+ .xl\:order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+
+ .xl\:order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+
+ .xl\:order-first {
+ -webkit-box-ordinal-group: -9998;
+ -ms-flex-order: -9999;
+ order: -9999;
+ }
+
+ .xl\:order-last {
+ -webkit-box-ordinal-group: 10000;
+ -ms-flex-order: 9999;
+ order: 9999;
+ }
+
+ .xl\:order-none {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+
+ .xl\:float-right {
+ float: right;
+ }
+
+ .xl\:float-left {
+ float: left;
+ }
+
+ .xl\:float-none {
+ float: none;
+ }
+
+ .xl\:clearfix:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+
+ .xl\:font-sans {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ }
+
+ .xl\:font-serif {
+ font-family: Georgia, Cambria, "Times New Roman", Times, serif;
+ }
+
+ .xl\:font-mono {
+ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ }
+
+ .xl\:font-hairline {
+ font-weight: 100;
+ }
+
+ .xl\:font-thin {
+ 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\:hover\:font-hairline:hover {
+ font-weight: 100;
+ }
+
+ .xl\:hover\:font-thin:hover {
+ font-weight: 200;
+ }
+
+ .xl\:hover\:font-light:hover {
+ font-weight: 300;
+ }
+
+ .xl\:hover\:font-normal:hover {
+ font-weight: 400;
+ }
+
+ .xl\:hover\:font-medium:hover {
+ font-weight: 500;
+ }
+
+ .xl\:hover\:font-semibold:hover {
+ font-weight: 600;
+ }
+
+ .xl\:hover\:font-bold:hover {
+ font-weight: 700;
+ }
+
+ .xl\:hover\:font-extrabold:hover {
+ font-weight: 800;
+ }
+
+ .xl\:hover\:font-black:hover {
+ font-weight: 900;
+ }
+
+ .xl\:focus\:font-hairline:focus {
+ font-weight: 100;
+ }
+
+ .xl\:focus\:font-thin:focus {
+ font-weight: 200;
+ }
+
+ .xl\:focus\:font-light:focus {
+ font-weight: 300;
+ }
+
+ .xl\:focus\:font-normal:focus {
+ font-weight: 400;
+ }
+
+ .xl\:focus\:font-medium:focus {
+ font-weight: 500;
+ }
+
+ .xl\:focus\:font-semibold:focus {
+ font-weight: 600;
+ }
+
+ .xl\:focus\:font-bold:focus {
+ font-weight: 700;
+ }
+
+ .xl\:focus\:font-extrabold:focus {
+ font-weight: 800;
+ }
+
+ .xl\:focus\:font-black:focus {
+ font-weight: 900;
+ }
+
+ .xl\:h-0 {
+ height: 0;
+ }
+
+ .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-8 {
+ height: 2rem;
+ }
+
+ .xl\:h-10 {
+ height: 2.5rem;
+ }
+
+ .xl\:h-12 {
+ height: 3rem;
+ }
+
+ .xl\:h-16 {
+ height: 4rem;
+ }
+
+ .xl\:h-20 {
+ height: 5rem;
+ }
+
+ .xl\:h-24 {
+ height: 6rem;
+ }
+
+ .xl\:h-32 {
+ height: 8rem;
+ }
+
+ .xl\:h-40 {
+ height: 10rem;
+ }
+
+ .xl\:h-48 {
+ height: 12rem;
+ }
+
+ .xl\:h-56 {
+ height: 14rem;
+ }
+
+ .xl\:h-64 {
+ height: 16rem;
+ }
+
+ .xl\:h-auto {
+ height: auto;
+ }
+
+ .xl\:h-px {
+ height: 1px;
+ }
+
+ .xl\:h-full {
+ height: 100%;
+ }
+
+ .xl\:h-screen {
+ height: 100vh;
+ }
+
+ .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\: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\:m-0 {
+ margin: 0;
+ }
+
+ .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-8 {
+ margin: 2rem;
+ }
+
+ .xl\:m-10 {
+ margin: 2.5rem;
+ }
+
+ .xl\:m-12 {
+ margin: 3rem;
+ }
+
+ .xl\:m-16 {
+ margin: 4rem;
+ }
+
+ .xl\:m-20 {
+ margin: 5rem;
+ }
+
+ .xl\:m-24 {
+ margin: 6rem;
+ }
+
+ .xl\:m-32 {
+ margin: 8rem;
+ }
+
+ .xl\:m-40 {
+ margin: 10rem;
+ }
+
+ .xl\:m-48 {
+ margin: 12rem;
+ }
+
+ .xl\:m-56 {
+ margin: 14rem;
+ }
+
+ .xl\:m-64 {
+ margin: 16rem;
+ }
+
+ .xl\:m-auto {
+ margin: auto;
+ }
+
+ .xl\:m-px {
+ margin: 1px;
+ }
+
+ .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-8 {
+ margin: -2rem;
+ }
+
+ .xl\:-m-10 {
+ margin: -2.5rem;
+ }
+
+ .xl\:-m-12 {
+ margin: -3rem;
+ }
+
+ .xl\:-m-16 {
+ margin: -4rem;
+ }
+
+ .xl\:-m-20 {
+ margin: -5rem;
+ }
+
+ .xl\:-m-24 {
+ margin: -6rem;
+ }
+
+ .xl\:-m-32 {
+ margin: -8rem;
+ }
+
+ .xl\:-m-40 {
+ margin: -10rem;
+ }
+
+ .xl\:-m-48 {
+ margin: -12rem;
+ }
+
+ .xl\:-m-56 {
+ margin: -14rem;
+ }
+
+ .xl\:-m-64 {
+ margin: -16rem;
+ }
+
+ .xl\:-m-px {
+ margin: -1px;
+ }
+
+ .xl\:my-0 {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .xl\:mx-0 {
+ margin-left: 0;
+ margin-right: 0;
+ }
+
+ .xl\:my-1 {
+ margin-top: 0.25rem;
+ margin-bottom: 0.25rem;
+ }
+
+ .xl\:mx-1 {
+ margin-left: 0.25rem;
+ margin-right: 0.25rem;
+ }
+
+ .xl\:my-2 {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .xl\:mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+ }
+
+ .xl\:my-3 {
+ margin-top: 0.75rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .xl\:mx-3 {
+ margin-left: 0.75rem;
+ margin-right: 0.75rem;
+ }
+
+ .xl\:my-4 {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .xl\:mx-4 {
+ margin-left: 1rem;
+ margin-right: 1rem;
+ }
+
+ .xl\:my-5 {
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+ }
+
+ .xl\:mx-5 {
+ margin-left: 1.25rem;
+ margin-right: 1.25rem;
+ }
+
+ .xl\:my-6 {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .xl\:mx-6 {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .xl\:my-8 {
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .xl\:mx-8 {
+ margin-left: 2rem;
+ margin-right: 2rem;
+ }
+
+ .xl\:my-10 {
+ margin-top: 2.5rem;
+ margin-bottom: 2.5rem;
+ }
+
+ .xl\:mx-10 {
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+ }
+
+ .xl\:my-12 {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+ }
+
+ .xl\:mx-12 {
+ margin-left: 3rem;
+ margin-right: 3rem;
+ }
+
+ .xl\:my-16 {
+ margin-top: 4rem;
+ margin-bottom: 4rem;
+ }
+
+ .xl\:mx-16 {
+ margin-left: 4rem;
+ margin-right: 4rem;
+ }
+
+ .xl\:my-20 {
+ margin-top: 5rem;
+ margin-bottom: 5rem;
+ }
+
+ .xl\:mx-20 {
+ margin-left: 5rem;
+ margin-right: 5rem;
+ }
+
+ .xl\:my-24 {
+ margin-top: 6rem;
+ margin-bottom: 6rem;
+ }
+
+ .xl\:mx-24 {
+ margin-left: 6rem;
+ margin-right: 6rem;
+ }
+
+ .xl\:my-32 {
+ margin-top: 8rem;
+ margin-bottom: 8rem;
+ }
+
+ .xl\:mx-32 {
+ margin-left: 8rem;
+ margin-right: 8rem;
+ }
+
+ .xl\:my-40 {
+ margin-top: 10rem;
+ margin-bottom: 10rem;
+ }
+
+ .xl\:mx-40 {
+ margin-left: 10rem;
+ margin-right: 10rem;
+ }
+
+ .xl\:my-48 {
+ margin-top: 12rem;
+ margin-bottom: 12rem;
+ }
+
+ .xl\:mx-48 {
+ margin-left: 12rem;
+ margin-right: 12rem;
+ }
+
+ .xl\:my-56 {
+ margin-top: 14rem;
+ margin-bottom: 14rem;
+ }
+
+ .xl\:mx-56 {
+ margin-left: 14rem;
+ margin-right: 14rem;
+ }
+
+ .xl\:my-64 {
+ margin-top: 16rem;
+ margin-bottom: 16rem;
+ }
+
+ .xl\:mx-64 {
+ margin-left: 16rem;
+ margin-right: 16rem;
+ }
+
+ .xl\:my-auto {
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+
+ .xl\:mx-auto {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .xl\:my-px {
+ margin-top: 1px;
+ margin-bottom: 1px;
+ }
+
+ .xl\:mx-px {
+ margin-left: 1px;
+ margin-right: 1px;
+ }
+
+ .xl\:-my-1 {
+ margin-top: -0.25rem;
+ margin-bottom: -0.25rem;
+ }
+
+ .xl\:-mx-1 {
+ margin-left: -0.25rem;
+ margin-right: -0.25rem;
+ }
+
+ .xl\:-my-2 {
+ margin-top: -0.5rem;
+ margin-bottom: -0.5rem;
+ }
+
+ .xl\:-mx-2 {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+ }
+
+ .xl\:-my-3 {
+ margin-top: -0.75rem;
+ margin-bottom: -0.75rem;
+ }
+
+ .xl\:-mx-3 {
+ margin-left: -0.75rem;
+ margin-right: -0.75rem;
+ }
+
+ .xl\:-my-4 {
+ margin-top: -1rem;
+ margin-bottom: -1rem;
+ }
+
+ .xl\:-mx-4 {
+ margin-left: -1rem;
+ margin-right: -1rem;
+ }
+
+ .xl\:-my-5 {
+ margin-top: -1.25rem;
+ margin-bottom: -1.25rem;
+ }
+
+ .xl\:-mx-5 {
+ margin-left: -1.25rem;
+ margin-right: -1.25rem;
+ }
+
+ .xl\:-my-6 {
+ margin-top: -1.5rem;
+ margin-bottom: -1.5rem;
+ }
+
+ .xl\:-mx-6 {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+ }
+
+ .xl\:-my-8 {
+ margin-top: -2rem;
+ margin-bottom: -2rem;
+ }
+
+ .xl\:-mx-8 {
+ margin-left: -2rem;
+ margin-right: -2rem;
+ }
+
+ .xl\:-my-10 {
+ margin-top: -2.5rem;
+ margin-bottom: -2.5rem;
+ }
+
+ .xl\:-mx-10 {
+ margin-left: -2.5rem;
+ margin-right: -2.5rem;
+ }
+
+ .xl\:-my-12 {
+ margin-top: -3rem;
+ margin-bottom: -3rem;
+ }
+
+ .xl\:-mx-12 {
+ margin-left: -3rem;
+ margin-right: -3rem;
+ }
+
+ .xl\:-my-16 {
+ margin-top: -4rem;
+ margin-bottom: -4rem;
+ }
+
+ .xl\:-mx-16 {
+ margin-left: -4rem;
+ margin-right: -4rem;
+ }
+
+ .xl\:-my-20 {
+ margin-top: -5rem;
+ margin-bottom: -5rem;
+ }
+
+ .xl\:-mx-20 {
+ margin-left: -5rem;
+ margin-right: -5rem;
+ }
+
+ .xl\:-my-24 {
+ margin-top: -6rem;
+ margin-bottom: -6rem;
+ }
+
+ .xl\:-mx-24 {
+ margin-left: -6rem;
+ margin-right: -6rem;
+ }
+
+ .xl\:-my-32 {
+ margin-top: -8rem;
+ margin-bottom: -8rem;
+ }
+
+ .xl\:-mx-32 {
+ margin-left: -8rem;
+ margin-right: -8rem;
+ }
+
+ .xl\:-my-40 {
+ margin-top: -10rem;
+ margin-bottom: -10rem;
+ }
+
+ .xl\:-mx-40 {
+ margin-left: -10rem;
+ margin-right: -10rem;
+ }
+
+ .xl\:-my-48 {
+ margin-top: -12rem;
+ margin-bottom: -12rem;
+ }
+
+ .xl\:-mx-48 {
+ margin-left: -12rem;
+ margin-right: -12rem;
+ }
+
+ .xl\:-my-56 {
+ margin-top: -14rem;
+ margin-bottom: -14rem;
+ }
+
+ .xl\:-mx-56 {
+ margin-left: -14rem;
+ margin-right: -14rem;
+ }
+
+ .xl\:-my-64 {
+ margin-top: -16rem;
+ margin-bottom: -16rem;
+ }
+
+ .xl\:-mx-64 {
+ margin-left: -16rem;
+ margin-right: -16rem;
+ }
+
+ .xl\:-my-px {
+ margin-top: -1px;
+ margin-bottom: -1px;
+ }
+
+ .xl\:-mx-px {
+ margin-left: -1px;
+ margin-right: -1px;
+ }
+
+ .xl\:mt-0 {
+ margin-top: 0;
+ }
+
+ .xl\:mr-0 {
+ margin-right: 0;
+ }
+
+ .xl\:mb-0 {
+ margin-bottom: 0;
+ }
+
+ .xl\:ml-0 {
+ margin-left: 0;
+ }
+
+ .xl\:mt-1 {
+ margin-top: 0.25rem;
+ }
+
+ .xl\:mr-1 {
+ margin-right: 0.25rem;
+ }
+
+ .xl\:mb-1 {
+ margin-bottom: 0.25rem;
+ }
+
+ .xl\:ml-1 {
+ margin-left: 0.25rem;
+ }
+
+ .xl\:mt-2 {
+ margin-top: 0.5rem;
+ }
+
+ .xl\:mr-2 {
+ margin-right: 0.5rem;
+ }
+
+ .xl\:mb-2 {
+ margin-bottom: 0.5rem;
+ }
+
+ .xl\:ml-2 {
+ margin-left: 0.5rem;
+ }
+
+ .xl\:mt-3 {
+ margin-top: 0.75rem;
+ }
+
+ .xl\:mr-3 {
+ margin-right: 0.75rem;
+ }
+
+ .xl\:mb-3 {
+ margin-bottom: 0.75rem;
+ }
+
+ .xl\:ml-3 {
+ margin-left: 0.75rem;
+ }
+
+ .xl\:mt-4 {
+ margin-top: 1rem;
+ }
+
+ .xl\:mr-4 {
+ margin-right: 1rem;
+ }
+
+ .xl\:mb-4 {
+ margin-bottom: 1rem;
+ }
+
+ .xl\:ml-4 {
+ margin-left: 1rem;
+ }
+
+ .xl\:mt-5 {
+ margin-top: 1.25rem;
+ }
+
+ .xl\:mr-5 {
+ margin-right: 1.25rem;
+ }
+
+ .xl\:mb-5 {
+ margin-bottom: 1.25rem;
+ }
+
+ .xl\:ml-5 {
+ margin-left: 1.25rem;
+ }
+
+ .xl\:mt-6 {
+ margin-top: 1.5rem;
+ }
+
+ .xl\:mr-6 {
+ margin-right: 1.5rem;
+ }
+
+ .xl\:mb-6 {
+ margin-bottom: 1.5rem;
+ }
+
+ .xl\:ml-6 {
+ margin-left: 1.5rem;
+ }
+
+ .xl\:mt-8 {
+ margin-top: 2rem;
+ }
+
+ .xl\:mr-8 {
+ margin-right: 2rem;
+ }
+
+ .xl\:mb-8 {
+ margin-bottom: 2rem;
+ }
+
+ .xl\:ml-8 {
+ margin-left: 2rem;
+ }
+
+ .xl\:mt-10 {
+ margin-top: 2.5rem;
+ }
+
+ .xl\:mr-10 {
+ margin-right: 2.5rem;
+ }
+
+ .xl\:mb-10 {
+ margin-bottom: 2.5rem;
+ }
+
+ .xl\:ml-10 {
+ margin-left: 2.5rem;
+ }
+
+ .xl\:mt-12 {
+ margin-top: 3rem;
+ }
+
+ .xl\:mr-12 {
+ margin-right: 3rem;
+ }
+
+ .xl\:mb-12 {
+ margin-bottom: 3rem;
+ }
+
+ .xl\:ml-12 {
+ margin-left: 3rem;
+ }
+
+ .xl\:mt-16 {
+ margin-top: 4rem;
+ }
+
+ .xl\:mr-16 {
+ margin-right: 4rem;
+ }
+
+ .xl\:mb-16 {
+ margin-bottom: 4rem;
+ }
+
+ .xl\:ml-16 {
+ margin-left: 4rem;
+ }
+
+ .xl\:mt-20 {
+ margin-top: 5rem;
+ }
+
+ .xl\:mr-20 {
+ margin-right: 5rem;
+ }
+
+ .xl\:mb-20 {
+ margin-bottom: 5rem;
+ }
+
+ .xl\:ml-20 {
+ margin-left: 5rem;
+ }
+
+ .xl\:mt-24 {
+ margin-top: 6rem;
+ }
+
+ .xl\:mr-24 {
+ margin-right: 6rem;
+ }
+
+ .xl\:mb-24 {
+ margin-bottom: 6rem;
+ }
+
+ .xl\:ml-24 {
+ margin-left: 6rem;
+ }
+
+ .xl\:mt-32 {
+ margin-top: 8rem;
+ }
+
+ .xl\:mr-32 {
+ margin-right: 8rem;
+ }
+
+ .xl\:mb-32 {
+ margin-bottom: 8rem;
+ }
+
+ .xl\:ml-32 {
+ margin-left: 8rem;
+ }
+
+ .xl\:mt-40 {
+ margin-top: 10rem;
+ }
+
+ .xl\:mr-40 {
+ margin-right: 10rem;
+ }
+
+ .xl\:mb-40 {
+ margin-bottom: 10rem;
+ }
+
+ .xl\:ml-40 {
+ margin-left: 10rem;
+ }
+
+ .xl\:mt-48 {
+ margin-top: 12rem;
+ }
+
+ .xl\:mr-48 {
+ margin-right: 12rem;
+ }
+
+ .xl\:mb-48 {
+ margin-bottom: 12rem;
+ }
+
+ .xl\:ml-48 {
+ margin-left: 12rem;
+ }
+
+ .xl\:mt-56 {
+ margin-top: 14rem;
+ }
+
+ .xl\:mr-56 {
+ margin-right: 14rem;
+ }
+
+ .xl\:mb-56 {
+ margin-bottom: 14rem;
+ }
+
+ .xl\:ml-56 {
+ margin-left: 14rem;
+ }
+
+ .xl\:mt-64 {
+ margin-top: 16rem;
+ }
+
+ .xl\:mr-64 {
+ margin-right: 16rem;
+ }
+
+ .xl\:mb-64 {
+ margin-bottom: 16rem;
+ }
+
+ .xl\:ml-64 {
+ margin-left: 16rem;
+ }
+
+ .xl\:mt-auto {
+ margin-top: auto;
+ }
+
+ .xl\:mr-auto {
+ margin-right: auto;
+ }
+
+ .xl\:mb-auto {
+ margin-bottom: auto;
+ }
+
+ .xl\:ml-auto {
+ margin-left: auto;
+ }
+
+ .xl\:mt-px {
+ margin-top: 1px;
+ }
+
+ .xl\:mr-px {
+ margin-right: 1px;
+ }
+
+ .xl\:mb-px {
+ margin-bottom: 1px;
+ }
+
+ .xl\:ml-px {
+ margin-left: 1px;
+ }
+
+ .xl\:-mt-1 {
+ margin-top: -0.25rem;
+ }
+
+ .xl\:-mr-1 {
+ margin-right: -0.25rem;
+ }
+
+ .xl\:-mb-1 {
+ margin-bottom: -0.25rem;
+ }
+
+ .xl\:-ml-1 {
+ margin-left: -0.25rem;
+ }
+
+ .xl\:-mt-2 {
+ margin-top: -0.5rem;
+ }
+
+ .xl\:-mr-2 {
+ margin-right: -0.5rem;
+ }
+
+ .xl\:-mb-2 {
+ margin-bottom: -0.5rem;
+ }
+
+ .xl\:-ml-2 {
+ margin-left: -0.5rem;
+ }
+
+ .xl\:-mt-3 {
+ margin-top: -0.75rem;
+ }
+
+ .xl\:-mr-3 {
+ margin-right: -0.75rem;
+ }
+
+ .xl\:-mb-3 {
+ margin-bottom: -0.75rem;
+ }
+
+ .xl\:-ml-3 {
+ margin-left: -0.75rem;
+ }
+
+ .xl\:-mt-4 {
+ margin-top: -1rem;
+ }
+
+ .xl\:-mr-4 {
+ margin-right: -1rem;
+ }
+
+ .xl\:-mb-4 {
+ margin-bottom: -1rem;
+ }
+
+ .xl\:-ml-4 {
+ margin-left: -1rem;
+ }
+
+ .xl\:-mt-5 {
+ margin-top: -1.25rem;
+ }
+
+ .xl\:-mr-5 {
+ margin-right: -1.25rem;
+ }
+
+ .xl\:-mb-5 {
+ margin-bottom: -1.25rem;
+ }
+
+ .xl\:-ml-5 {
+ margin-left: -1.25rem;
+ }
+
+ .xl\:-mt-6 {
+ margin-top: -1.5rem;
+ }
+
+ .xl\:-mr-6 {
+ margin-right: -1.5rem;
+ }
+
+ .xl\:-mb-6 {
+ margin-bottom: -1.5rem;
+ }
+
+ .xl\:-ml-6 {
+ margin-left: -1.5rem;
+ }
+
+ .xl\:-mt-8 {
+ margin-top: -2rem;
+ }
+
+ .xl\:-mr-8 {
+ margin-right: -2rem;
+ }
+
+ .xl\:-mb-8 {
+ margin-bottom: -2rem;
+ }
+
+ .xl\:-ml-8 {
+ margin-left: -2rem;
+ }
+
+ .xl\:-mt-10 {
+ margin-top: -2.5rem;
+ }
+
+ .xl\:-mr-10 {
+ margin-right: -2.5rem;
+ }
+
+ .xl\:-mb-10 {
+ margin-bottom: -2.5rem;
+ }
+
+ .xl\:-ml-10 {
+ margin-left: -2.5rem;
+ }
+
+ .xl\:-mt-12 {
+ margin-top: -3rem;
+ }
+
+ .xl\:-mr-12 {
+ margin-right: -3rem;
+ }
+
+ .xl\:-mb-12 {
+ margin-bottom: -3rem;
+ }
+
+ .xl\:-ml-12 {
+ margin-left: -3rem;
+ }
+
+ .xl\:-mt-16 {
+ margin-top: -4rem;
+ }
+
+ .xl\:-mr-16 {
+ margin-right: -4rem;
+ }
+
+ .xl\:-mb-16 {
+ margin-bottom: -4rem;
+ }
+
+ .xl\:-ml-16 {
+ margin-left: -4rem;
+ }
+
+ .xl\:-mt-20 {
+ margin-top: -5rem;
+ }
+
+ .xl\:-mr-20 {
+ margin-right: -5rem;
+ }
+
+ .xl\:-mb-20 {
+ margin-bottom: -5rem;
+ }
+
+ .xl\:-ml-20 {
+ margin-left: -5rem;
+ }
+
+ .xl\:-mt-24 {
+ margin-top: -6rem;
+ }
+
+ .xl\:-mr-24 {
+ margin-right: -6rem;
+ }
+
+ .xl\:-mb-24 {
+ margin-bottom: -6rem;
+ }
+
+ .xl\:-ml-24 {
+ margin-left: -6rem;
+ }
+
+ .xl\:-mt-32 {
+ margin-top: -8rem;
+ }
+
+ .xl\:-mr-32 {
+ margin-right: -8rem;
+ }
+
+ .xl\:-mb-32 {
+ margin-bottom: -8rem;
+ }
+
+ .xl\:-ml-32 {
+ margin-left: -8rem;
+ }
+
+ .xl\:-mt-40 {
+ margin-top: -10rem;
+ }
+
+ .xl\:-mr-40 {
+ margin-right: -10rem;
+ }
+
+ .xl\:-mb-40 {
+ margin-bottom: -10rem;
+ }
+
+ .xl\:-ml-40 {
+ margin-left: -10rem;
+ }
+
+ .xl\:-mt-48 {
+ margin-top: -12rem;
+ }
+
+ .xl\:-mr-48 {
+ margin-right: -12rem;
+ }
+
+ .xl\:-mb-48 {
+ margin-bottom: -12rem;
+ }
+
+ .xl\:-ml-48 {
+ margin-left: -12rem;
+ }
+
+ .xl\:-mt-56 {
+ margin-top: -14rem;
+ }
+
+ .xl\:-mr-56 {
+ margin-right: -14rem;
+ }
+
+ .xl\:-mb-56 {
+ margin-bottom: -14rem;
+ }
+
+ .xl\:-ml-56 {
+ margin-left: -14rem;
+ }
+
+ .xl\:-mt-64 {
+ margin-top: -16rem;
+ }
+
+ .xl\:-mr-64 {
+ margin-right: -16rem;
+ }
+
+ .xl\:-mb-64 {
+ margin-bottom: -16rem;
+ }
+
+ .xl\:-ml-64 {
+ margin-left: -16rem;
+ }
+
+ .xl\:-mt-px {
+ margin-top: -1px;
+ }
+
+ .xl\:-mr-px {
+ margin-right: -1px;
+ }
+
+ .xl\:-mb-px {
+ margin-bottom: -1px;
+ }
+
+ .xl\:-ml-px {
+ margin-left: -1px;
+ }
+
+ .xl\:max-h-full {
+ max-height: 100%;
+ }
+
+ .xl\:max-h-screen {
+ max-height: 100vh;
+ }
+
+ .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-full {
+ max-width: 100%;
+ }
+
+ .xl\:min-h-0 {
+ min-height: 0;
+ }
+
+ .xl\:min-h-full {
+ min-height: 100%;
+ }
+
+ .xl\:min-h-screen {
+ min-height: 100vh;
+ }
+
+ .xl\:min-w-0 {
+ min-width: 0;
+ }
+
+ .xl\:min-w-full {
+ min-width: 100%;
+ }
+
+ .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\:opacity-0 {
+ opacity: 0;
+ }
+
+ .xl\:opacity-25 {
+ opacity: 0.25;
+ }
+
+ .xl\:opacity-50 {
+ opacity: 0.5;
+ }
+
+ .xl\:opacity-75 {
+ opacity: 0.75;
+ }
+
+ .xl\:opacity-100 {
+ opacity: 1;
+ }
+
+ .xl\:hover\:opacity-0:hover {
+ opacity: 0;
+ }
+
+ .xl\:hover\:opacity-25:hover {
+ opacity: 0.25;
+ }
+
+ .xl\:hover\:opacity-50:hover {
+ opacity: 0.5;
+ }
+
+ .xl\:hover\:opacity-75:hover {
+ opacity: 0.75;
+ }
+
+ .xl\:hover\:opacity-100:hover {
+ opacity: 1;
+ }
+
+ .xl\:focus\:opacity-0:focus {
+ opacity: 0;
+ }
+
+ .xl\:focus\:opacity-25:focus {
+ opacity: 0.25;
+ }
+
+ .xl\:focus\:opacity-50:focus {
+ opacity: 0.5;
+ }
+
+ .xl\:focus\:opacity-75:focus {
+ opacity: 0.75;
+ }
+
+ .xl\:focus\:opacity-100:focus {
+ opacity: 1;
+ }
+
+ .xl\:outline-none {
+ outline: 0;
+ }
+
+ .xl\:focus\:outline-none:focus {
+ outline: 0;
+ }
+
+ .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\:scrolling-touch {
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .xl\:scrolling-auto {
+ -webkit-overflow-scrolling: auto;
+ }
+
+ .xl\:p-0 {
+ padding: 0;
+ }
+
+ .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-8 {
+ padding: 2rem;
+ }
+
+ .xl\:p-10 {
+ padding: 2.5rem;
+ }
+
+ .xl\:p-12 {
+ padding: 3rem;
+ }
+
+ .xl\:p-16 {
+ padding: 4rem;
+ }
+
+ .xl\:p-20 {
+ padding: 5rem;
+ }
+
+ .xl\:p-24 {
+ padding: 6rem;
+ }
+
+ .xl\:p-32 {
+ padding: 8rem;
+ }
+
+ .xl\:p-40 {
+ padding: 10rem;
+ }
+
+ .xl\:p-48 {
+ padding: 12rem;
+ }
+
+ .xl\:p-56 {
+ padding: 14rem;
+ }
+
+ .xl\:p-64 {
+ padding: 16rem;
+ }
+
+ .xl\:p-px {
+ padding: 1px;
+ }
+
+ .xl\:py-0 {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+
+ .xl\:px-0 {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .xl\:py-1 {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ }
+
+ .xl\:px-1 {
+ padding-left: 0.25rem;
+ padding-right: 0.25rem;
+ }
+
+ .xl\:py-2 {
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ }
+
+ .xl\:px-2 {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+ }
+
+ .xl\:py-3 {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ }
+
+ .xl\:px-3 {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ }
+
+ .xl\:py-4 {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+
+ .xl\:px-4 {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ }
+
+ .xl\:py-5 {
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+ }
+
+ .xl\:px-5 {
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ }
+
+ .xl\:py-6 {
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem;
+ }
+
+ .xl\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+
+ .xl\:py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+ }
+
+ .xl\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
+
+ .xl\:py-10 {
+ padding-top: 2.5rem;
+ padding-bottom: 2.5rem;
+ }
+
+ .xl\:px-10 {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+ }
+
+ .xl\:py-12 {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ .xl\:px-12 {
+ padding-left: 3rem;
+ padding-right: 3rem;
+ }
+
+ .xl\:py-16 {
+ padding-top: 4rem;
+ padding-bottom: 4rem;
+ }
+
+ .xl\:px-16 {
+ padding-left: 4rem;
+ padding-right: 4rem;
+ }
+
+ .xl\:py-20 {
+ padding-top: 5rem;
+ padding-bottom: 5rem;
+ }
+
+ .xl\:px-20 {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .xl\:py-24 {
+ padding-top: 6rem;
+ padding-bottom: 6rem;
+ }
+
+ .xl\:px-24 {
+ padding-left: 6rem;
+ padding-right: 6rem;
+ }
+
+ .xl\:py-32 {
+ padding-top: 8rem;
+ padding-bottom: 8rem;
+ }
+
+ .xl\:px-32 {
+ padding-left: 8rem;
+ padding-right: 8rem;
+ }
+
+ .xl\:py-40 {
+ padding-top: 10rem;
+ padding-bottom: 10rem;
+ }
+
+ .xl\:px-40 {
+ padding-left: 10rem;
+ padding-right: 10rem;
+ }
+
+ .xl\:py-48 {
+ padding-top: 12rem;
+ padding-bottom: 12rem;
+ }
+
+ .xl\:px-48 {
+ padding-left: 12rem;
+ padding-right: 12rem;
+ }
+
+ .xl\:py-56 {
+ padding-top: 14rem;
+ padding-bottom: 14rem;
+ }
+
+ .xl\:px-56 {
+ padding-left: 14rem;
+ padding-right: 14rem;
+ }
+
+ .xl\:py-64 {
+ padding-top: 16rem;
+ padding-bottom: 16rem;
+ }
+
+ .xl\:px-64 {
+ padding-left: 16rem;
+ padding-right: 16rem;
+ }
+
+ .xl\:py-px {
+ padding-top: 1px;
+ padding-bottom: 1px;
+ }
+
+ .xl\:px-px {
+ padding-left: 1px;
+ padding-right: 1px;
+ }
+
+ .xl\:pt-0 {
+ padding-top: 0;
+ }
+
+ .xl\:pr-0 {
+ padding-right: 0;
+ }
+
+ .xl\:pb-0 {
+ padding-bottom: 0;
+ }
+
+ .xl\:pl-0 {
+ padding-left: 0;
+ }
+
+ .xl\:pt-1 {
+ padding-top: 0.25rem;
+ }
+
+ .xl\:pr-1 {
+ padding-right: 0.25rem;
+ }
+
+ .xl\:pb-1 {
+ padding-bottom: 0.25rem;
+ }
+
+ .xl\:pl-1 {
+ padding-left: 0.25rem;
+ }
+
+ .xl\:pt-2 {
+ padding-top: 0.5rem;
+ }
+
+ .xl\:pr-2 {
+ padding-right: 0.5rem;
+ }
+
+ .xl\:pb-2 {
+ padding-bottom: 0.5rem;
+ }
+
+ .xl\:pl-2 {
+ padding-left: 0.5rem;
+ }
+
+ .xl\:pt-3 {
+ padding-top: 0.75rem;
+ }
+
+ .xl\:pr-3 {
+ padding-right: 0.75rem;
+ }
+
+ .xl\:pb-3 {
+ padding-bottom: 0.75rem;
+ }
+
+ .xl\:pl-3 {
+ padding-left: 0.75rem;
+ }
+
+ .xl\:pt-4 {
+ padding-top: 1rem;
+ }
+
+ .xl\:pr-4 {
+ padding-right: 1rem;
+ }
+
+ .xl\:pb-4 {
+ padding-bottom: 1rem;
+ }
+
+ .xl\:pl-4 {
+ padding-left: 1rem;
+ }
+
+ .xl\:pt-5 {
+ padding-top: 1.25rem;
+ }
+
+ .xl\:pr-5 {
+ padding-right: 1.25rem;
+ }
+
+ .xl\:pb-5 {
+ padding-bottom: 1.25rem;
+ }
+
+ .xl\:pl-5 {
+ padding-left: 1.25rem;
+ }
+
+ .xl\:pt-6 {
+ padding-top: 1.5rem;
+ }
+
+ .xl\:pr-6 {
+ padding-right: 1.5rem;
+ }
+
+ .xl\:pb-6 {
+ padding-bottom: 1.5rem;
+ }
+
+ .xl\:pl-6 {
+ padding-left: 1.5rem;
+ }
+
+ .xl\:pt-8 {
+ padding-top: 2rem;
+ }
+
+ .xl\:pr-8 {
+ padding-right: 2rem;
+ }
+
+ .xl\:pb-8 {
+ padding-bottom: 2rem;
+ }
+
+ .xl\:pl-8 {
+ padding-left: 2rem;
+ }
+
+ .xl\:pt-10 {
+ padding-top: 2.5rem;
+ }
+
+ .xl\:pr-10 {
+ padding-right: 2.5rem;
+ }
+
+ .xl\:pb-10 {
+ padding-bottom: 2.5rem;
+ }
+
+ .xl\:pl-10 {
+ padding-left: 2.5rem;
+ }
+
+ .xl\:pt-12 {
+ padding-top: 3rem;
+ }
+
+ .xl\:pr-12 {
+ padding-right: 3rem;
+ }
+
+ .xl\:pb-12 {
+ padding-bottom: 3rem;
+ }
+
+ .xl\:pl-12 {
+ padding-left: 3rem;
+ }
+
+ .xl\:pt-16 {
+ padding-top: 4rem;
+ }
+
+ .xl\:pr-16 {
+ padding-right: 4rem;
+ }
+
+ .xl\:pb-16 {
+ padding-bottom: 4rem;
+ }
+
+ .xl\:pl-16 {
+ padding-left: 4rem;
+ }
+
+ .xl\:pt-20 {
+ padding-top: 5rem;
+ }
+
+ .xl\:pr-20 {
+ padding-right: 5rem;
+ }
+
+ .xl\:pb-20 {
+ padding-bottom: 5rem;
+ }
+
+ .xl\:pl-20 {
+ padding-left: 5rem;
+ }
+
+ .xl\:pt-24 {
+ padding-top: 6rem;
+ }
+
+ .xl\:pr-24 {
+ padding-right: 6rem;
+ }
+
+ .xl\:pb-24 {
+ padding-bottom: 6rem;
+ }
+
+ .xl\:pl-24 {
+ padding-left: 6rem;
+ }
+
+ .xl\:pt-32 {
+ padding-top: 8rem;
+ }
+
+ .xl\:pr-32 {
+ padding-right: 8rem;
+ }
+
+ .xl\:pb-32 {
+ padding-bottom: 8rem;
+ }
+
+ .xl\:pl-32 {
+ padding-left: 8rem;
+ }
+
+ .xl\:pt-40 {
+ padding-top: 10rem;
+ }
+
+ .xl\:pr-40 {
+ padding-right: 10rem;
+ }
+
+ .xl\:pb-40 {
+ padding-bottom: 10rem;
+ }
+
+ .xl\:pl-40 {
+ padding-left: 10rem;
+ }
+
+ .xl\:pt-48 {
+ padding-top: 12rem;
+ }
+
+ .xl\:pr-48 {
+ padding-right: 12rem;
+ }
+
+ .xl\:pb-48 {
+ padding-bottom: 12rem;
+ }
+
+ .xl\:pl-48 {
+ padding-left: 12rem;
+ }
+
+ .xl\:pt-56 {
+ padding-top: 14rem;
+ }
+
+ .xl\:pr-56 {
+ padding-right: 14rem;
+ }
+
+ .xl\:pb-56 {
+ padding-bottom: 14rem;
+ }
+
+ .xl\:pl-56 {
+ padding-left: 14rem;
+ }
+
+ .xl\:pt-64 {
+ padding-top: 16rem;
+ }
+
+ .xl\:pr-64 {
+ padding-right: 16rem;
+ }
+
+ .xl\:pb-64 {
+ padding-bottom: 16rem;
+ }
+
+ .xl\:pl-64 {
+ padding-left: 16rem;
+ }
+
+ .xl\:pt-px {
+ padding-top: 1px;
+ }
+
+ .xl\:pr-px {
+ padding-right: 1px;
+ }
+
+ .xl\:pb-px {
+ padding-bottom: 1px;
+ }
+
+ .xl\:pl-px {
+ padding-left: 1px;
+ }
+
+ .xl\:placeholder-transparent::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:placeholder-transparent::-moz-placeholder {
+ color: transparent;
+ }
+
+ .xl\:placeholder-transparent:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:placeholder-transparent::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:placeholder-transparent::placeholder {
+ color: transparent;
+ }
+
+ .xl\:placeholder-black::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:placeholder-black::-moz-placeholder {
+ color: #000;
+ }
+
+ .xl\:placeholder-black:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:placeholder-black::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:placeholder-black::placeholder {
+ color: #000;
+ }
+
+ .xl\:placeholder-white::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:placeholder-white::-moz-placeholder {
+ color: #fff;
+ }
+
+ .xl\:placeholder-white:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:placeholder-white::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:placeholder-white::placeholder {
+ color: #fff;
+ }
+
+ .xl\:placeholder-gray-100::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:placeholder-gray-100::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:placeholder-gray-100:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:placeholder-gray-100::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:placeholder-gray-100::placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:placeholder-gray-200::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:placeholder-gray-200::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:placeholder-gray-200:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:placeholder-gray-200::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:placeholder-gray-200::placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:placeholder-gray-300::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:placeholder-gray-300::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:placeholder-gray-300:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:placeholder-gray-300::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:placeholder-gray-300::placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:placeholder-gray-400::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:placeholder-gray-400::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:placeholder-gray-400:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:placeholder-gray-400::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:placeholder-gray-400::placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:placeholder-gray-500::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:placeholder-gray-500::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:placeholder-gray-500:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:placeholder-gray-500::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:placeholder-gray-500::placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:placeholder-gray-600::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:placeholder-gray-600::-moz-placeholder {
+ color: #718096;
+ }
+
+ .xl\:placeholder-gray-600:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:placeholder-gray-600::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:placeholder-gray-600::placeholder {
+ color: #718096;
+ }
+
+ .xl\:placeholder-gray-700::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:placeholder-gray-700::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:placeholder-gray-700:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:placeholder-gray-700::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:placeholder-gray-700::placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:placeholder-gray-800::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:placeholder-gray-800::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:placeholder-gray-800:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:placeholder-gray-800::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:placeholder-gray-800::placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:placeholder-gray-900::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:placeholder-gray-900::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:placeholder-gray-900:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:placeholder-gray-900::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:placeholder-gray-900::placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:placeholder-red-100::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:placeholder-red-100::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:placeholder-red-100:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:placeholder-red-100::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:placeholder-red-100::placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:placeholder-red-200::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:placeholder-red-200::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:placeholder-red-200:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:placeholder-red-200::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:placeholder-red-200::placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:placeholder-red-300::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:placeholder-red-300::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:placeholder-red-300:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:placeholder-red-300::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:placeholder-red-300::placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:placeholder-red-400::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:placeholder-red-400::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:placeholder-red-400:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:placeholder-red-400::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:placeholder-red-400::placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:placeholder-red-500::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:placeholder-red-500::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:placeholder-red-500:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:placeholder-red-500::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:placeholder-red-500::placeholder {
+ color: #f56565;
+ }
+
+ .xl\:placeholder-red-600::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:placeholder-red-600::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:placeholder-red-600:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:placeholder-red-600::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:placeholder-red-600::placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:placeholder-red-700::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:placeholder-red-700::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:placeholder-red-700:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:placeholder-red-700::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:placeholder-red-700::placeholder {
+ color: #c53030;
+ }
+
+ .xl\:placeholder-red-800::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:placeholder-red-800::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:placeholder-red-800:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:placeholder-red-800::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:placeholder-red-800::placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:placeholder-red-900::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:placeholder-red-900::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:placeholder-red-900:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:placeholder-red-900::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:placeholder-red-900::placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:placeholder-orange-100::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:placeholder-orange-100::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:placeholder-orange-100:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:placeholder-orange-100::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:placeholder-orange-100::placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:placeholder-orange-200::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:placeholder-orange-200::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:placeholder-orange-200:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:placeholder-orange-200::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:placeholder-orange-200::placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:placeholder-orange-300::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:placeholder-orange-300::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:placeholder-orange-300:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:placeholder-orange-300::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:placeholder-orange-300::placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:placeholder-orange-400::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:placeholder-orange-400::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:placeholder-orange-400:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:placeholder-orange-400::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:placeholder-orange-400::placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:placeholder-orange-500::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:placeholder-orange-500::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:placeholder-orange-500:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:placeholder-orange-500::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:placeholder-orange-500::placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:placeholder-orange-600::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:placeholder-orange-600::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:placeholder-orange-600:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:placeholder-orange-600::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:placeholder-orange-600::placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:placeholder-orange-700::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:placeholder-orange-700::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:placeholder-orange-700:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:placeholder-orange-700::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:placeholder-orange-700::placeholder {
+ color: #c05621;
+ }
+
+ .xl\:placeholder-orange-800::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:placeholder-orange-800::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:placeholder-orange-800:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:placeholder-orange-800::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:placeholder-orange-800::placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:placeholder-orange-900::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:placeholder-orange-900::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:placeholder-orange-900:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:placeholder-orange-900::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:placeholder-orange-900::placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:placeholder-yellow-100::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:placeholder-yellow-100::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:placeholder-yellow-100:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:placeholder-yellow-100::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:placeholder-yellow-100::placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:placeholder-yellow-200::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:placeholder-yellow-200::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:placeholder-yellow-200:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:placeholder-yellow-200::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:placeholder-yellow-200::placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:placeholder-yellow-300::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:placeholder-yellow-300::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:placeholder-yellow-300:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:placeholder-yellow-300::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:placeholder-yellow-300::placeholder {
+ color: #faf089;
+ }
+
+ .xl\:placeholder-yellow-400::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:placeholder-yellow-400::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:placeholder-yellow-400:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:placeholder-yellow-400::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:placeholder-yellow-400::placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:placeholder-yellow-500::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:placeholder-yellow-500::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:placeholder-yellow-500:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:placeholder-yellow-500::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:placeholder-yellow-500::placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:placeholder-yellow-600::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:placeholder-yellow-600::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:placeholder-yellow-600:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:placeholder-yellow-600::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:placeholder-yellow-600::placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:placeholder-yellow-700::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:placeholder-yellow-700::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:placeholder-yellow-700:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:placeholder-yellow-700::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:placeholder-yellow-700::placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:placeholder-yellow-800::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:placeholder-yellow-800::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:placeholder-yellow-800:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:placeholder-yellow-800::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:placeholder-yellow-800::placeholder {
+ color: #975a16;
+ }
+
+ .xl\:placeholder-yellow-900::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:placeholder-yellow-900::-moz-placeholder {
+ color: #744210;
+ }
+
+ .xl\:placeholder-yellow-900:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:placeholder-yellow-900::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:placeholder-yellow-900::placeholder {
+ color: #744210;
+ }
+
+ .xl\:placeholder-green-100::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:placeholder-green-100::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:placeholder-green-100:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:placeholder-green-100::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:placeholder-green-100::placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:placeholder-green-200::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:placeholder-green-200::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:placeholder-green-200:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:placeholder-green-200::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:placeholder-green-200::placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:placeholder-green-300::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:placeholder-green-300::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:placeholder-green-300:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:placeholder-green-300::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:placeholder-green-300::placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:placeholder-green-400::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:placeholder-green-400::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:placeholder-green-400:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:placeholder-green-400::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:placeholder-green-400::placeholder {
+ color: #68d391;
+ }
+
+ .xl\:placeholder-green-500::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:placeholder-green-500::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:placeholder-green-500:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:placeholder-green-500::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:placeholder-green-500::placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:placeholder-green-600::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:placeholder-green-600::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:placeholder-green-600:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:placeholder-green-600::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:placeholder-green-600::placeholder {
+ color: #38a169;
+ }
+
+ .xl\:placeholder-green-700::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:placeholder-green-700::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:placeholder-green-700:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:placeholder-green-700::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:placeholder-green-700::placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:placeholder-green-800::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:placeholder-green-800::-moz-placeholder {
+ color: #276749;
+ }
+
+ .xl\:placeholder-green-800:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:placeholder-green-800::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:placeholder-green-800::placeholder {
+ color: #276749;
+ }
+
+ .xl\:placeholder-green-900::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:placeholder-green-900::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:placeholder-green-900:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:placeholder-green-900::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:placeholder-green-900::placeholder {
+ color: #22543d;
+ }
+
+ .xl\:placeholder-teal-100::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:placeholder-teal-100::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:placeholder-teal-100:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:placeholder-teal-100::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:placeholder-teal-100::placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:placeholder-teal-200::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:placeholder-teal-200::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:placeholder-teal-200:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:placeholder-teal-200::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:placeholder-teal-200::placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:placeholder-teal-300::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:placeholder-teal-300::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:placeholder-teal-300:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:placeholder-teal-300::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:placeholder-teal-300::placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:placeholder-teal-400::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:placeholder-teal-400::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:placeholder-teal-400:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:placeholder-teal-400::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:placeholder-teal-400::placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:placeholder-teal-500::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:placeholder-teal-500::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:placeholder-teal-500:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:placeholder-teal-500::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:placeholder-teal-500::placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:placeholder-teal-600::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:placeholder-teal-600::-moz-placeholder {
+ color: #319795;
+ }
+
+ .xl\:placeholder-teal-600:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:placeholder-teal-600::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:placeholder-teal-600::placeholder {
+ color: #319795;
+ }
+
+ .xl\:placeholder-teal-700::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:placeholder-teal-700::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:placeholder-teal-700:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:placeholder-teal-700::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:placeholder-teal-700::placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:placeholder-teal-800::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:placeholder-teal-800::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:placeholder-teal-800:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:placeholder-teal-800::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:placeholder-teal-800::placeholder {
+ color: #285e61;
+ }
+
+ .xl\:placeholder-teal-900::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:placeholder-teal-900::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:placeholder-teal-900:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:placeholder-teal-900::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:placeholder-teal-900::placeholder {
+ color: #234e52;
+ }
+
+ .xl\:placeholder-blue-100::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:placeholder-blue-100::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:placeholder-blue-100:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:placeholder-blue-100::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:placeholder-blue-100::placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:placeholder-blue-200::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:placeholder-blue-200::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:placeholder-blue-200:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:placeholder-blue-200::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:placeholder-blue-200::placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:placeholder-blue-300::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:placeholder-blue-300::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:placeholder-blue-300:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:placeholder-blue-300::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:placeholder-blue-300::placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:placeholder-blue-400::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:placeholder-blue-400::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:placeholder-blue-400:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:placeholder-blue-400::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:placeholder-blue-400::placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:placeholder-blue-500::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:placeholder-blue-500::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:placeholder-blue-500:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:placeholder-blue-500::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:placeholder-blue-500::placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:placeholder-blue-600::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:placeholder-blue-600::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:placeholder-blue-600:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:placeholder-blue-600::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:placeholder-blue-600::placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:placeholder-blue-700::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:placeholder-blue-700::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:placeholder-blue-700:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:placeholder-blue-700::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:placeholder-blue-700::placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:placeholder-blue-800::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:placeholder-blue-800::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:placeholder-blue-800:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:placeholder-blue-800::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:placeholder-blue-800::placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:placeholder-blue-900::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:placeholder-blue-900::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:placeholder-blue-900:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:placeholder-blue-900::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:placeholder-blue-900::placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:placeholder-indigo-100::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:placeholder-indigo-100::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:placeholder-indigo-100:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:placeholder-indigo-100::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:placeholder-indigo-100::placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:placeholder-indigo-200::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:placeholder-indigo-200::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:placeholder-indigo-200:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:placeholder-indigo-200::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:placeholder-indigo-200::placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:placeholder-indigo-300::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:placeholder-indigo-300::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:placeholder-indigo-300:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:placeholder-indigo-300::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:placeholder-indigo-300::placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:placeholder-indigo-400::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:placeholder-indigo-400::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:placeholder-indigo-400:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:placeholder-indigo-400::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:placeholder-indigo-400::placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:placeholder-indigo-500::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:placeholder-indigo-500::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:placeholder-indigo-500:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:placeholder-indigo-500::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:placeholder-indigo-500::placeholder {
+ color: #667eea;
+ }
+
+ .xl\:placeholder-indigo-600::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:placeholder-indigo-600::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:placeholder-indigo-600:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:placeholder-indigo-600::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:placeholder-indigo-600::placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:placeholder-indigo-700::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:placeholder-indigo-700::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:placeholder-indigo-700:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:placeholder-indigo-700::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:placeholder-indigo-700::placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:placeholder-indigo-800::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:placeholder-indigo-800::-moz-placeholder {
+ color: #434190;
+ }
+
+ .xl\:placeholder-indigo-800:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:placeholder-indigo-800::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:placeholder-indigo-800::placeholder {
+ color: #434190;
+ }
+
+ .xl\:placeholder-indigo-900::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:placeholder-indigo-900::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:placeholder-indigo-900:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:placeholder-indigo-900::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:placeholder-indigo-900::placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:placeholder-purple-100::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:placeholder-purple-100::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:placeholder-purple-100:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:placeholder-purple-100::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:placeholder-purple-100::placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:placeholder-purple-200::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:placeholder-purple-200::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:placeholder-purple-200:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:placeholder-purple-200::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:placeholder-purple-200::placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:placeholder-purple-300::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:placeholder-purple-300::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:placeholder-purple-300:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:placeholder-purple-300::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:placeholder-purple-300::placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:placeholder-purple-400::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:placeholder-purple-400::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:placeholder-purple-400:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:placeholder-purple-400::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:placeholder-purple-400::placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:placeholder-purple-500::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:placeholder-purple-500::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:placeholder-purple-500:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:placeholder-purple-500::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:placeholder-purple-500::placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:placeholder-purple-600::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:placeholder-purple-600::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:placeholder-purple-600:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:placeholder-purple-600::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:placeholder-purple-600::placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:placeholder-purple-700::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:placeholder-purple-700::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:placeholder-purple-700:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:placeholder-purple-700::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:placeholder-purple-700::placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:placeholder-purple-800::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:placeholder-purple-800::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:placeholder-purple-800:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:placeholder-purple-800::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:placeholder-purple-800::placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:placeholder-purple-900::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:placeholder-purple-900::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:placeholder-purple-900:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:placeholder-purple-900::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:placeholder-purple-900::placeholder {
+ color: #44337a;
+ }
+
+ .xl\:placeholder-pink-100::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:placeholder-pink-100::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:placeholder-pink-100:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:placeholder-pink-100::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:placeholder-pink-100::placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:placeholder-pink-200::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:placeholder-pink-200::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:placeholder-pink-200:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:placeholder-pink-200::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:placeholder-pink-200::placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:placeholder-pink-300::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:placeholder-pink-300::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:placeholder-pink-300:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:placeholder-pink-300::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:placeholder-pink-300::placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:placeholder-pink-400::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:placeholder-pink-400::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:placeholder-pink-400:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:placeholder-pink-400::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:placeholder-pink-400::placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:placeholder-pink-500::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:placeholder-pink-500::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:placeholder-pink-500:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:placeholder-pink-500::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:placeholder-pink-500::placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:placeholder-pink-600::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:placeholder-pink-600::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:placeholder-pink-600:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:placeholder-pink-600::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:placeholder-pink-600::placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:placeholder-pink-700::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:placeholder-pink-700::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:placeholder-pink-700:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:placeholder-pink-700::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:placeholder-pink-700::placeholder {
+ color: #b83280;
+ }
+
+ .xl\:placeholder-pink-800::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:placeholder-pink-800::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:placeholder-pink-800:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:placeholder-pink-800::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:placeholder-pink-800::placeholder {
+ color: #97266d;
+ }
+
+ .xl\:placeholder-pink-900::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:placeholder-pink-900::-moz-placeholder {
+ color: #702459;
+ }
+
+ .xl\:placeholder-pink-900:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:placeholder-pink-900::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:placeholder-pink-900::placeholder {
+ color: #702459;
+ }
+
+ .xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:focus\:placeholder-transparent:focus::-moz-placeholder {
+ color: transparent;
+ }
+
+ .xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder {
+ color: transparent;
+ }
+
+ .xl\:focus\:placeholder-transparent:focus::placeholder {
+ color: transparent;
+ }
+
+ .xl\:focus\:placeholder-black:focus::-webkit-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:focus\:placeholder-black:focus::-moz-placeholder {
+ color: #000;
+ }
+
+ .xl\:focus\:placeholder-black:focus:-ms-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:focus\:placeholder-black:focus::-ms-input-placeholder {
+ color: #000;
+ }
+
+ .xl\:focus\:placeholder-black:focus::placeholder {
+ color: #000;
+ }
+
+ .xl\:focus\:placeholder-white:focus::-webkit-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:focus\:placeholder-white:focus::-moz-placeholder {
+ color: #fff;
+ }
+
+ .xl\:focus\:placeholder-white:focus:-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:focus\:placeholder-white:focus::-ms-input-placeholder {
+ color: #fff;
+ }
+
+ .xl\:focus\:placeholder-white:focus::placeholder {
+ color: #fff;
+ }
+
+ .xl\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:placeholder-gray-100:focus::placeholder {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:placeholder-gray-200:focus::placeholder {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:placeholder-gray-300:focus::placeholder {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:placeholder-gray-400:focus::placeholder {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:placeholder-gray-500:focus::placeholder {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder {
+ color: #718096;
+ }
+
+ .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder {
+ color: #718096;
+ }
+
+ .xl\:focus\:placeholder-gray-600:focus::placeholder {
+ color: #718096;
+ }
+
+ .xl\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:placeholder-gray-700:focus::placeholder {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:placeholder-gray-800:focus::placeholder {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:placeholder-gray-900:focus::placeholder {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:placeholder-red-100:focus::-webkit-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:placeholder-red-100:focus::-moz-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:placeholder-red-100:focus::placeholder {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:placeholder-red-200:focus::-webkit-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:placeholder-red-200:focus::-moz-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:placeholder-red-200:focus::placeholder {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:placeholder-red-300:focus::-webkit-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:placeholder-red-300:focus::-moz-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:placeholder-red-300:focus::placeholder {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:placeholder-red-400:focus::-webkit-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:placeholder-red-400:focus::-moz-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:placeholder-red-400:focus::placeholder {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:placeholder-red-500:focus::-webkit-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:focus\:placeholder-red-500:focus::-moz-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder {
+ color: #f56565;
+ }
+
+ .xl\:focus\:placeholder-red-500:focus::placeholder {
+ color: #f56565;
+ }
+
+ .xl\:focus\:placeholder-red-600:focus::-webkit-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:placeholder-red-600:focus::-moz-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:placeholder-red-600:focus::placeholder {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:placeholder-red-700:focus::-webkit-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:focus\:placeholder-red-700:focus::-moz-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder {
+ color: #c53030;
+ }
+
+ .xl\:focus\:placeholder-red-700:focus::placeholder {
+ color: #c53030;
+ }
+
+ .xl\:focus\:placeholder-red-800:focus::-webkit-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:placeholder-red-800:focus::-moz-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:placeholder-red-800:focus::placeholder {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:placeholder-red-900:focus::-webkit-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:placeholder-red-900:focus::-moz-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:placeholder-red-900:focus::placeholder {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:placeholder-orange-100:focus::-webkit-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:placeholder-orange-100:focus::-moz-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:placeholder-orange-100:focus:-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:placeholder-orange-100:focus::-ms-input-placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:placeholder-orange-100:focus::placeholder {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:placeholder-orange-200:focus::-webkit-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:placeholder-orange-200:focus::-moz-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:placeholder-orange-200:focus:-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:placeholder-orange-200:focus::-ms-input-placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:placeholder-orange-200:focus::placeholder {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:placeholder-orange-300:focus::-webkit-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:placeholder-orange-300:focus::-moz-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:placeholder-orange-300:focus:-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:placeholder-orange-300:focus::-ms-input-placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:placeholder-orange-300:focus::placeholder {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:placeholder-orange-400:focus::-webkit-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:placeholder-orange-400:focus::-moz-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:placeholder-orange-400:focus:-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:placeholder-orange-400:focus::-ms-input-placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:placeholder-orange-400:focus::placeholder {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:placeholder-orange-500:focus::-webkit-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:placeholder-orange-500:focus::-moz-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:placeholder-orange-500:focus:-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:placeholder-orange-500:focus::-ms-input-placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:placeholder-orange-500:focus::placeholder {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:placeholder-orange-600:focus::-webkit-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:placeholder-orange-600:focus::-moz-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:placeholder-orange-600:focus:-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:placeholder-orange-600:focus::-ms-input-placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:placeholder-orange-600:focus::placeholder {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:placeholder-orange-700:focus::-webkit-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:focus\:placeholder-orange-700:focus::-moz-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:focus\:placeholder-orange-700:focus:-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:focus\:placeholder-orange-700:focus::-ms-input-placeholder {
+ color: #c05621;
+ }
+
+ .xl\:focus\:placeholder-orange-700:focus::placeholder {
+ color: #c05621;
+ }
+
+ .xl\:focus\:placeholder-orange-800:focus::-webkit-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:placeholder-orange-800:focus::-moz-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:placeholder-orange-800:focus:-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:placeholder-orange-800:focus::-ms-input-placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:placeholder-orange-800:focus::placeholder {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:placeholder-orange-900:focus::-webkit-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:placeholder-orange-900:focus::-moz-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:placeholder-orange-900:focus:-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:placeholder-orange-900:focus::-ms-input-placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:placeholder-orange-900:focus::placeholder {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:placeholder-yellow-100:focus::placeholder {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:placeholder-yellow-200:focus::placeholder {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder {
+ color: #faf089;
+ }
+
+ .xl\:focus\:placeholder-yellow-300:focus::placeholder {
+ color: #faf089;
+ }
+
+ .xl\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:placeholder-yellow-400:focus::placeholder {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:placeholder-yellow-500:focus::placeholder {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:placeholder-yellow-600:focus::placeholder {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:placeholder-yellow-700:focus::placeholder {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder {
+ color: #975a16;
+ }
+
+ .xl\:focus\:placeholder-yellow-800:focus::placeholder {
+ color: #975a16;
+ }
+
+ .xl\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder {
+ color: #744210;
+ }
+
+ .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder {
+ color: #744210;
+ }
+
+ .xl\:focus\:placeholder-yellow-900:focus::placeholder {
+ color: #744210;
+ }
+
+ .xl\:focus\:placeholder-green-100:focus::-webkit-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:placeholder-green-100:focus::-moz-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:placeholder-green-100:focus::placeholder {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:placeholder-green-200:focus::-webkit-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:placeholder-green-200:focus::-moz-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:placeholder-green-200:focus::placeholder {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:placeholder-green-300:focus::-webkit-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:placeholder-green-300:focus::-moz-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:placeholder-green-300:focus::placeholder {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:placeholder-green-400:focus::-webkit-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:focus\:placeholder-green-400:focus::-moz-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder {
+ color: #68d391;
+ }
+
+ .xl\:focus\:placeholder-green-400:focus::placeholder {
+ color: #68d391;
+ }
+
+ .xl\:focus\:placeholder-green-500:focus::-webkit-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:placeholder-green-500:focus::-moz-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:placeholder-green-500:focus::placeholder {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:placeholder-green-600:focus::-webkit-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:focus\:placeholder-green-600:focus::-moz-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder {
+ color: #38a169;
+ }
+
+ .xl\:focus\:placeholder-green-600:focus::placeholder {
+ color: #38a169;
+ }
+
+ .xl\:focus\:placeholder-green-700:focus::-webkit-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:placeholder-green-700:focus::-moz-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:placeholder-green-700:focus::placeholder {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:placeholder-green-800:focus::-webkit-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:focus\:placeholder-green-800:focus::-moz-placeholder {
+ color: #276749;
+ }
+
+ .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder {
+ color: #276749;
+ }
+
+ .xl\:focus\:placeholder-green-800:focus::placeholder {
+ color: #276749;
+ }
+
+ .xl\:focus\:placeholder-green-900:focus::-webkit-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:focus\:placeholder-green-900:focus::-moz-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder {
+ color: #22543d;
+ }
+
+ .xl\:focus\:placeholder-green-900:focus::placeholder {
+ color: #22543d;
+ }
+
+ .xl\:focus\:placeholder-teal-100:focus::-webkit-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:placeholder-teal-100:focus::-moz-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:placeholder-teal-100:focus:-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:placeholder-teal-100:focus::-ms-input-placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:placeholder-teal-100:focus::placeholder {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:placeholder-teal-200:focus::-webkit-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:placeholder-teal-200:focus::-moz-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:placeholder-teal-200:focus:-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:placeholder-teal-200:focus::-ms-input-placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:placeholder-teal-200:focus::placeholder {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:placeholder-teal-300:focus::-webkit-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:placeholder-teal-300:focus::-moz-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:placeholder-teal-300:focus:-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:placeholder-teal-300:focus::-ms-input-placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:placeholder-teal-300:focus::placeholder {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:placeholder-teal-400:focus::-webkit-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:placeholder-teal-400:focus::-moz-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:placeholder-teal-400:focus:-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:placeholder-teal-400:focus::-ms-input-placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:placeholder-teal-400:focus::placeholder {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:placeholder-teal-500:focus::-webkit-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:placeholder-teal-500:focus::-moz-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:placeholder-teal-500:focus:-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:placeholder-teal-500:focus::-ms-input-placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:placeholder-teal-500:focus::placeholder {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:placeholder-teal-600:focus::-webkit-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:focus\:placeholder-teal-600:focus::-moz-placeholder {
+ color: #319795;
+ }
+
+ .xl\:focus\:placeholder-teal-600:focus:-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:focus\:placeholder-teal-600:focus::-ms-input-placeholder {
+ color: #319795;
+ }
+
+ .xl\:focus\:placeholder-teal-600:focus::placeholder {
+ color: #319795;
+ }
+
+ .xl\:focus\:placeholder-teal-700:focus::-webkit-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:placeholder-teal-700:focus::-moz-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:placeholder-teal-700:focus:-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:placeholder-teal-700:focus::-ms-input-placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:placeholder-teal-700:focus::placeholder {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:placeholder-teal-800:focus::-webkit-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:focus\:placeholder-teal-800:focus::-moz-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:focus\:placeholder-teal-800:focus:-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:focus\:placeholder-teal-800:focus::-ms-input-placeholder {
+ color: #285e61;
+ }
+
+ .xl\:focus\:placeholder-teal-800:focus::placeholder {
+ color: #285e61;
+ }
+
+ .xl\:focus\:placeholder-teal-900:focus::-webkit-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:focus\:placeholder-teal-900:focus::-moz-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:focus\:placeholder-teal-900:focus:-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:focus\:placeholder-teal-900:focus::-ms-input-placeholder {
+ color: #234e52;
+ }
+
+ .xl\:focus\:placeholder-teal-900:focus::placeholder {
+ color: #234e52;
+ }
+
+ .xl\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:placeholder-blue-100:focus::placeholder {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:placeholder-blue-200:focus::placeholder {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:placeholder-blue-300:focus::placeholder {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:placeholder-blue-400:focus::placeholder {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:placeholder-blue-500:focus::placeholder {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:placeholder-blue-600:focus::placeholder {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:placeholder-blue-700:focus::placeholder {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:placeholder-blue-800:focus::placeholder {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:placeholder-blue-900:focus::placeholder {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:placeholder-indigo-100:focus::placeholder {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:placeholder-indigo-200:focus::placeholder {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:placeholder-indigo-300:focus::placeholder {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:placeholder-indigo-400:focus::placeholder {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder {
+ color: #667eea;
+ }
+
+ .xl\:focus\:placeholder-indigo-500:focus::placeholder {
+ color: #667eea;
+ }
+
+ .xl\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:placeholder-indigo-600:focus::placeholder {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:placeholder-indigo-700:focus::placeholder {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder {
+ color: #434190;
+ }
+
+ .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder {
+ color: #434190;
+ }
+
+ .xl\:focus\:placeholder-indigo-800:focus::placeholder {
+ color: #434190;
+ }
+
+ .xl\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:placeholder-indigo-900:focus::placeholder {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:placeholder-purple-100:focus::-webkit-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:placeholder-purple-100:focus::-moz-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:placeholder-purple-100:focus::-ms-input-placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:placeholder-purple-100:focus::placeholder {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:placeholder-purple-200:focus::-webkit-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:placeholder-purple-200:focus::-moz-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:placeholder-purple-200:focus::-ms-input-placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:placeholder-purple-200:focus::placeholder {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:placeholder-purple-300:focus::-webkit-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:placeholder-purple-300:focus::-moz-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:placeholder-purple-300:focus::-ms-input-placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:placeholder-purple-300:focus::placeholder {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:placeholder-purple-400:focus::-webkit-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:placeholder-purple-400:focus::-moz-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:placeholder-purple-400:focus::-ms-input-placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:placeholder-purple-400:focus::placeholder {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:placeholder-purple-500:focus::-webkit-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:placeholder-purple-500:focus::-moz-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:placeholder-purple-500:focus::-ms-input-placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:placeholder-purple-500:focus::placeholder {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:placeholder-purple-600:focus::-webkit-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:placeholder-purple-600:focus::-moz-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:placeholder-purple-600:focus::-ms-input-placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:placeholder-purple-600:focus::placeholder {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:placeholder-purple-700:focus::-webkit-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:placeholder-purple-700:focus::-moz-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:placeholder-purple-700:focus::-ms-input-placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:placeholder-purple-700:focus::placeholder {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:placeholder-purple-800:focus::-webkit-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:placeholder-purple-800:focus::-moz-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:placeholder-purple-800:focus::-ms-input-placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:placeholder-purple-800:focus::placeholder {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:placeholder-purple-900:focus::-webkit-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:focus\:placeholder-purple-900:focus::-moz-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:focus\:placeholder-purple-900:focus::-ms-input-placeholder {
+ color: #44337a;
+ }
+
+ .xl\:focus\:placeholder-purple-900:focus::placeholder {
+ color: #44337a;
+ }
+
+ .xl\:focus\:placeholder-pink-100:focus::-webkit-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:placeholder-pink-100:focus::-moz-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:placeholder-pink-100:focus::-ms-input-placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:placeholder-pink-100:focus::placeholder {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:placeholder-pink-200:focus::-webkit-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:placeholder-pink-200:focus::-moz-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:placeholder-pink-200:focus::-ms-input-placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:placeholder-pink-200:focus::placeholder {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:placeholder-pink-300:focus::-webkit-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:placeholder-pink-300:focus::-moz-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:placeholder-pink-300:focus::-ms-input-placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:placeholder-pink-300:focus::placeholder {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:placeholder-pink-400:focus::-webkit-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:placeholder-pink-400:focus::-moz-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:placeholder-pink-400:focus::-ms-input-placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:placeholder-pink-400:focus::placeholder {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:placeholder-pink-500:focus::-webkit-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:placeholder-pink-500:focus::-moz-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:placeholder-pink-500:focus::-ms-input-placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:placeholder-pink-500:focus::placeholder {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:placeholder-pink-600:focus::-webkit-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:placeholder-pink-600:focus::-moz-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:placeholder-pink-600:focus::-ms-input-placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:placeholder-pink-600:focus::placeholder {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:placeholder-pink-700:focus::-webkit-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:focus\:placeholder-pink-700:focus::-moz-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:focus\:placeholder-pink-700:focus::-ms-input-placeholder {
+ color: #b83280;
+ }
+
+ .xl\:focus\:placeholder-pink-700:focus::placeholder {
+ color: #b83280;
+ }
+
+ .xl\:focus\:placeholder-pink-800:focus::-webkit-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:focus\:placeholder-pink-800:focus::-moz-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:focus\:placeholder-pink-800:focus::-ms-input-placeholder {
+ color: #97266d;
+ }
+
+ .xl\:focus\:placeholder-pink-800:focus::placeholder {
+ color: #97266d;
+ }
+
+ .xl\:focus\:placeholder-pink-900:focus::-webkit-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:focus\:placeholder-pink-900:focus::-moz-placeholder {
+ color: #702459;
+ }
+
+ .xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:focus\:placeholder-pink-900:focus::-ms-input-placeholder {
+ color: #702459;
+ }
+
+ .xl\:focus\:placeholder-pink-900:focus::placeholder {
+ color: #702459;
+ }
+
+ .xl\:pointer-events-none {
+ pointer-events: none;
+ }
+
+ .xl\:pointer-events-auto {
+ pointer-events: auto;
+ }
+
+ .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: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ }
+
+ .xl\:inset-auto {
+ top: auto;
+ right: auto;
+ bottom: auto;
+ left: auto;
+ }
+
+ .xl\:inset-y-0 {
+ top: 0;
+ bottom: 0;
+ }
+
+ .xl\:inset-x-0 {
+ right: 0;
+ left: 0;
+ }
+
+ .xl\:inset-y-auto {
+ top: auto;
+ bottom: auto;
+ }
+
+ .xl\:inset-x-auto {
+ right: auto;
+ left: auto;
+ }
+
+ .xl\:top-0 {
+ top: 0;
+ }
+
+ .xl\:right-0 {
+ right: 0;
+ }
+
+ .xl\:bottom-0 {
+ bottom: 0;
+ }
+
+ .xl\:left-0 {
+ left: 0;
+ }
+
+ .xl\:top-auto {
+ top: auto;
+ }
+
+ .xl\:right-auto {
+ right: auto;
+ }
+
+ .xl\:bottom-auto {
+ bottom: auto;
+ }
+
+ .xl\:left-auto {
+ left: auto;
+ }
+
+ .xl\:resize-none {
+ resize: none;
+ }
+
+ .xl\:resize-y {
+ resize: vertical;
+ }
+
+ .xl\:resize-x {
+ resize: horizontal;
+ }
+
+ .xl\:resize {
+ resize: both;
+ }
+
+ .xl\:shadow {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:shadow-md {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:shadow-lg {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .xl\:shadow-xl {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .xl\:shadow-2xl {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .xl\:shadow-inner {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:shadow-outline {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .xl\:shadow-none {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .xl\:hover\:shadow:hover {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:hover\:shadow-md:hover {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:hover\:shadow-lg:hover {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .xl\:hover\:shadow-xl:hover {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .xl\:hover\:shadow-2xl:hover {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .xl\:hover\:shadow-inner:hover {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:hover\:shadow-outline:hover {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .xl\:hover\:shadow-none:hover {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .xl\:focus\:shadow:focus {
+ -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:focus\:shadow-md:focus {
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:focus\:shadow-lg:focus {
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .xl\:focus\:shadow-xl:focus {
+ -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
+ }
+
+ .xl\:focus\:shadow-2xl:focus {
+ -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ }
+
+ .xl\:focus\:shadow-inner:focus {
+ -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .xl\:focus\:shadow-outline:focus {
+ -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
+ }
+
+ .xl\:focus\:shadow-none:focus {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .xl\:fill-current {
+ fill: currentColor;
+ }
+
+ .xl\:stroke-current {
+ stroke: currentColor;
+ }
+
+ .xl\:table-auto {
+ table-layout: auto;
+ }
+
+ .xl\:table-fixed {
+ table-layout: fixed;
+ }
+
+ .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\:text-transparent {
+ color: transparent;
+ }
+
+ .xl\:text-black {
+ color: #000;
+ }
+
+ .xl\:text-white {
+ color: #fff;
+ }
+
+ .xl\:text-gray-100 {
+ color: #f7fafc;
+ }
+
+ .xl\:text-gray-200 {
+ color: #edf2f7;
+ }
+
+ .xl\:text-gray-300 {
+ color: #e2e8f0;
+ }
+
+ .xl\:text-gray-400 {
+ color: #cbd5e0;
+ }
+
+ .xl\:text-gray-500 {
+ color: #a0aec0;
+ }
+
+ .xl\:text-gray-600 {
+ color: #718096;
+ }
+
+ .xl\:text-gray-700 {
+ color: #4a5568;
+ }
+
+ .xl\:text-gray-800 {
+ color: #2d3748;
+ }
+
+ .xl\:text-gray-900 {
+ color: #1a202c;
+ }
+
+ .xl\:text-red-100 {
+ color: #fff5f5;
+ }
+
+ .xl\:text-red-200 {
+ color: #fed7d7;
+ }
+
+ .xl\:text-red-300 {
+ color: #feb2b2;
+ }
+
+ .xl\:text-red-400 {
+ color: #fc8181;
+ }
+
+ .xl\:text-red-500 {
+ color: #f56565;
+ }
+
+ .xl\:text-red-600 {
+ color: #e53e3e;
+ }
+
+ .xl\:text-red-700 {
+ color: #c53030;
+ }
+
+ .xl\:text-red-800 {
+ color: #9b2c2c;
+ }
+
+ .xl\:text-red-900 {
+ color: #742a2a;
+ }
+
+ .xl\:text-orange-100 {
+ color: #fffaf0;
+ }
+
+ .xl\:text-orange-200 {
+ color: #feebc8;
+ }
+
+ .xl\:text-orange-300 {
+ color: #fbd38d;
+ }
+
+ .xl\:text-orange-400 {
+ color: #f6ad55;
+ }
+
+ .xl\:text-orange-500 {
+ color: #ed8936;
+ }
+
+ .xl\:text-orange-600 {
+ color: #dd6b20;
+ }
+
+ .xl\:text-orange-700 {
+ color: #c05621;
+ }
+
+ .xl\:text-orange-800 {
+ color: #9c4221;
+ }
+
+ .xl\:text-orange-900 {
+ color: #7b341e;
+ }
+
+ .xl\:text-yellow-100 {
+ color: #fffff0;
+ }
+
+ .xl\:text-yellow-200 {
+ color: #fefcbf;
+ }
+
+ .xl\:text-yellow-300 {
+ color: #faf089;
+ }
+
+ .xl\:text-yellow-400 {
+ color: #f6e05e;
+ }
+
+ .xl\:text-yellow-500 {
+ color: #ecc94b;
+ }
+
+ .xl\:text-yellow-600 {
+ color: #d69e2e;
+ }
+
+ .xl\:text-yellow-700 {
+ color: #b7791f;
+ }
+
+ .xl\:text-yellow-800 {
+ color: #975a16;
+ }
+
+ .xl\:text-yellow-900 {
+ color: #744210;
+ }
+
+ .xl\:text-green-100 {
+ color: #f0fff4;
+ }
+
+ .xl\:text-green-200 {
+ color: #c6f6d5;
+ }
+
+ .xl\:text-green-300 {
+ color: #9ae6b4;
+ }
+
+ .xl\:text-green-400 {
+ color: #68d391;
+ }
+
+ .xl\:text-green-500 {
+ color: #48bb78;
+ }
+
+ .xl\:text-green-600 {
+ color: #38a169;
+ }
+
+ .xl\:text-green-700 {
+ color: #2f855a;
+ }
+
+ .xl\:text-green-800 {
+ color: #276749;
+ }
+
+ .xl\:text-green-900 {
+ color: #22543d;
+ }
+
+ .xl\:text-teal-100 {
+ color: #e6fffa;
+ }
+
+ .xl\:text-teal-200 {
+ color: #b2f5ea;
+ }
+
+ .xl\:text-teal-300 {
+ color: #81e6d9;
+ }
+
+ .xl\:text-teal-400 {
+ color: #4fd1c5;
+ }
+
+ .xl\:text-teal-500 {
+ color: #38b2ac;
+ }
+
+ .xl\:text-teal-600 {
+ color: #319795;
+ }
+
+ .xl\:text-teal-700 {
+ color: #2c7a7b;
+ }
+
+ .xl\:text-teal-800 {
+ color: #285e61;
+ }
+
+ .xl\:text-teal-900 {
+ color: #234e52;
+ }
+
+ .xl\:text-blue-100 {
+ color: #ebf8ff;
+ }
+
+ .xl\:text-blue-200 {
+ color: #bee3f8;
+ }
+
+ .xl\:text-blue-300 {
+ color: #90cdf4;
+ }
+
+ .xl\:text-blue-400 {
+ color: #63b3ed;
+ }
+
+ .xl\:text-blue-500 {
+ color: #4299e1;
+ }
+
+ .xl\:text-blue-600 {
+ color: #3182ce;
+ }
+
+ .xl\:text-blue-700 {
+ color: #2b6cb0;
+ }
+
+ .xl\:text-blue-800 {
+ color: #2c5282;
+ }
+
+ .xl\:text-blue-900 {
+ color: #2a4365;
+ }
+
+ .xl\:text-indigo-100 {
+ color: #ebf4ff;
+ }
+
+ .xl\:text-indigo-200 {
+ color: #c3dafe;
+ }
+
+ .xl\:text-indigo-300 {
+ color: #a3bffa;
+ }
+
+ .xl\:text-indigo-400 {
+ color: #7f9cf5;
+ }
+
+ .xl\:text-indigo-500 {
+ color: #667eea;
+ }
+
+ .xl\:text-indigo-600 {
+ color: #5a67d8;
+ }
+
+ .xl\:text-indigo-700 {
+ color: #4c51bf;
+ }
+
+ .xl\:text-indigo-800 {
+ color: #434190;
+ }
+
+ .xl\:text-indigo-900 {
+ color: #3c366b;
+ }
+
+ .xl\:text-purple-100 {
+ color: #faf5ff;
+ }
+
+ .xl\:text-purple-200 {
+ color: #e9d8fd;
+ }
+
+ .xl\:text-purple-300 {
+ color: #d6bcfa;
+ }
+
+ .xl\:text-purple-400 {
+ color: #b794f4;
+ }
+
+ .xl\:text-purple-500 {
+ color: #9f7aea;
+ }
+
+ .xl\:text-purple-600 {
+ color: #805ad5;
+ }
+
+ .xl\:text-purple-700 {
+ color: #6b46c1;
+ }
+
+ .xl\:text-purple-800 {
+ color: #553c9a;
+ }
+
+ .xl\:text-purple-900 {
+ color: #44337a;
+ }
+
+ .xl\:text-pink-100 {
+ color: #fff5f7;
+ }
+
+ .xl\:text-pink-200 {
+ color: #fed7e2;
+ }
+
+ .xl\:text-pink-300 {
+ color: #fbb6ce;
+ }
+
+ .xl\:text-pink-400 {
+ color: #f687b3;
+ }
+
+ .xl\:text-pink-500 {
+ color: #ed64a6;
+ }
+
+ .xl\:text-pink-600 {
+ color: #d53f8c;
+ }
+
+ .xl\:text-pink-700 {
+ color: #b83280;
+ }
+
+ .xl\:text-pink-800 {
+ color: #97266d;
+ }
+
+ .xl\:text-pink-900 {
+ color: #702459;
+ }
+
+ .xl\:hover\:text-transparent:hover {
+ color: transparent;
+ }
+
+ .xl\:hover\:text-black:hover {
+ color: #000;
+ }
+
+ .xl\:hover\:text-white:hover {
+ color: #fff;
+ }
+
+ .xl\:hover\:text-gray-100:hover {
+ color: #f7fafc;
+ }
+
+ .xl\:hover\:text-gray-200:hover {
+ color: #edf2f7;
+ }
+
+ .xl\:hover\:text-gray-300:hover {
+ color: #e2e8f0;
+ }
+
+ .xl\:hover\:text-gray-400:hover {
+ color: #cbd5e0;
+ }
+
+ .xl\:hover\:text-gray-500:hover {
+ color: #a0aec0;
+ }
+
+ .xl\:hover\:text-gray-600:hover {
+ color: #718096;
+ }
+
+ .xl\:hover\:text-gray-700:hover {
+ color: #4a5568;
+ }
+
+ .xl\:hover\:text-gray-800:hover {
+ color: #2d3748;
+ }
+
+ .xl\:hover\:text-gray-900:hover {
+ color: #1a202c;
+ }
+
+ .xl\:hover\:text-red-100:hover {
+ color: #fff5f5;
+ }
+
+ .xl\:hover\:text-red-200:hover {
+ color: #fed7d7;
+ }
+
+ .xl\:hover\:text-red-300:hover {
+ color: #feb2b2;
+ }
+
+ .xl\:hover\:text-red-400:hover {
+ color: #fc8181;
+ }
+
+ .xl\:hover\:text-red-500:hover {
+ color: #f56565;
+ }
+
+ .xl\:hover\:text-red-600:hover {
+ color: #e53e3e;
+ }
+
+ .xl\:hover\:text-red-700:hover {
+ color: #c53030;
+ }
+
+ .xl\:hover\:text-red-800:hover {
+ color: #9b2c2c;
+ }
+
+ .xl\:hover\:text-red-900:hover {
+ color: #742a2a;
+ }
+
+ .xl\:hover\:text-orange-100:hover {
+ color: #fffaf0;
+ }
+
+ .xl\:hover\:text-orange-200:hover {
+ color: #feebc8;
+ }
+
+ .xl\:hover\:text-orange-300:hover {
+ color: #fbd38d;
+ }
+
+ .xl\:hover\:text-orange-400:hover {
+ color: #f6ad55;
+ }
+
+ .xl\:hover\:text-orange-500:hover {
+ color: #ed8936;
+ }
+
+ .xl\:hover\:text-orange-600:hover {
+ color: #dd6b20;
+ }
+
+ .xl\:hover\:text-orange-700:hover {
+ color: #c05621;
+ }
+
+ .xl\:hover\:text-orange-800:hover {
+ color: #9c4221;
+ }
+
+ .xl\:hover\:text-orange-900:hover {
+ color: #7b341e;
+ }
+
+ .xl\:hover\:text-yellow-100:hover {
+ color: #fffff0;
+ }
+
+ .xl\:hover\:text-yellow-200:hover {
+ color: #fefcbf;
+ }
+
+ .xl\:hover\:text-yellow-300:hover {
+ color: #faf089;
+ }
+
+ .xl\:hover\:text-yellow-400:hover {
+ color: #f6e05e;
+ }
+
+ .xl\:hover\:text-yellow-500:hover {
+ color: #ecc94b;
+ }
+
+ .xl\:hover\:text-yellow-600:hover {
+ color: #d69e2e;
+ }
+
+ .xl\:hover\:text-yellow-700:hover {
+ color: #b7791f;
+ }
+
+ .xl\:hover\:text-yellow-800:hover {
+ color: #975a16;
+ }
+
+ .xl\:hover\:text-yellow-900:hover {
+ color: #744210;
+ }
+
+ .xl\:hover\:text-green-100:hover {
+ color: #f0fff4;
+ }
+
+ .xl\:hover\:text-green-200:hover {
+ color: #c6f6d5;
+ }
+
+ .xl\:hover\:text-green-300:hover {
+ color: #9ae6b4;
+ }
+
+ .xl\:hover\:text-green-400:hover {
+ color: #68d391;
+ }
+
+ .xl\:hover\:text-green-500:hover {
+ color: #48bb78;
+ }
+
+ .xl\:hover\:text-green-600:hover {
+ color: #38a169;
+ }
+
+ .xl\:hover\:text-green-700:hover {
+ color: #2f855a;
+ }
+
+ .xl\:hover\:text-green-800:hover {
+ color: #276749;
+ }
+
+ .xl\:hover\:text-green-900:hover {
+ color: #22543d;
+ }
+
+ .xl\:hover\:text-teal-100:hover {
+ color: #e6fffa;
+ }
+
+ .xl\:hover\:text-teal-200:hover {
+ color: #b2f5ea;
+ }
+
+ .xl\:hover\:text-teal-300:hover {
+ color: #81e6d9;
+ }
+
+ .xl\:hover\:text-teal-400:hover {
+ color: #4fd1c5;
+ }
+
+ .xl\:hover\:text-teal-500:hover {
+ color: #38b2ac;
+ }
+
+ .xl\:hover\:text-teal-600:hover {
+ color: #319795;
+ }
+
+ .xl\:hover\:text-teal-700:hover {
+ color: #2c7a7b;
+ }
+
+ .xl\:hover\:text-teal-800:hover {
+ color: #285e61;
+ }
+
+ .xl\:hover\:text-teal-900:hover {
+ color: #234e52;
+ }
+
+ .xl\:hover\:text-blue-100:hover {
+ color: #ebf8ff;
+ }
+
+ .xl\:hover\:text-blue-200:hover {
+ color: #bee3f8;
+ }
+
+ .xl\:hover\:text-blue-300:hover {
+ color: #90cdf4;
+ }
+
+ .xl\:hover\:text-blue-400:hover {
+ color: #63b3ed;
+ }
+
+ .xl\:hover\:text-blue-500:hover {
+ color: #4299e1;
+ }
+
+ .xl\:hover\:text-blue-600:hover {
+ color: #3182ce;
+ }
+
+ .xl\:hover\:text-blue-700:hover {
+ color: #2b6cb0;
+ }
+
+ .xl\:hover\:text-blue-800:hover {
+ color: #2c5282;
+ }
+
+ .xl\:hover\:text-blue-900:hover {
+ color: #2a4365;
+ }
+
+ .xl\:hover\:text-indigo-100:hover {
+ color: #ebf4ff;
+ }
+
+ .xl\:hover\:text-indigo-200:hover {
+ color: #c3dafe;
+ }
+
+ .xl\:hover\:text-indigo-300:hover {
+ color: #a3bffa;
+ }
+
+ .xl\:hover\:text-indigo-400:hover {
+ color: #7f9cf5;
+ }
+
+ .xl\:hover\:text-indigo-500:hover {
+ color: #667eea;
+ }
+
+ .xl\:hover\:text-indigo-600:hover {
+ color: #5a67d8;
+ }
+
+ .xl\:hover\:text-indigo-700:hover {
+ color: #4c51bf;
+ }
+
+ .xl\:hover\:text-indigo-800:hover {
+ color: #434190;
+ }
+
+ .xl\:hover\:text-indigo-900:hover {
+ color: #3c366b;
+ }
+
+ .xl\:hover\:text-purple-100:hover {
+ color: #faf5ff;
+ }
+
+ .xl\:hover\:text-purple-200:hover {
+ color: #e9d8fd;
+ }
+
+ .xl\:hover\:text-purple-300:hover {
+ color: #d6bcfa;
+ }
+
+ .xl\:hover\:text-purple-400:hover {
+ color: #b794f4;
+ }
+
+ .xl\:hover\:text-purple-500:hover {
+ color: #9f7aea;
+ }
+
+ .xl\:hover\:text-purple-600:hover {
+ color: #805ad5;
+ }
+
+ .xl\:hover\:text-purple-700:hover {
+ color: #6b46c1;
+ }
+
+ .xl\:hover\:text-purple-800:hover {
+ color: #553c9a;
+ }
+
+ .xl\:hover\:text-purple-900:hover {
+ color: #44337a;
+ }
+
+ .xl\:hover\:text-pink-100:hover {
+ color: #fff5f7;
+ }
+
+ .xl\:hover\:text-pink-200:hover {
+ color: #fed7e2;
+ }
+
+ .xl\:hover\:text-pink-300:hover {
+ color: #fbb6ce;
+ }
+
+ .xl\:hover\:text-pink-400:hover {
+ color: #f687b3;
+ }
+
+ .xl\:hover\:text-pink-500:hover {
+ color: #ed64a6;
+ }
+
+ .xl\:hover\:text-pink-600:hover {
+ color: #d53f8c;
+ }
+
+ .xl\:hover\:text-pink-700:hover {
+ color: #b83280;
+ }
+
+ .xl\:hover\:text-pink-800:hover {
+ color: #97266d;
+ }
+
+ .xl\:hover\:text-pink-900:hover {
+ color: #702459;
+ }
+
+ .xl\:focus\:text-transparent:focus {
+ color: transparent;
+ }
+
+ .xl\:focus\:text-black:focus {
+ color: #000;
+ }
+
+ .xl\:focus\:text-white:focus {
+ color: #fff;
+ }
+
+ .xl\:focus\:text-gray-100:focus {
+ color: #f7fafc;
+ }
+
+ .xl\:focus\:text-gray-200:focus {
+ color: #edf2f7;
+ }
+
+ .xl\:focus\:text-gray-300:focus {
+ color: #e2e8f0;
+ }
+
+ .xl\:focus\:text-gray-400:focus {
+ color: #cbd5e0;
+ }
+
+ .xl\:focus\:text-gray-500:focus {
+ color: #a0aec0;
+ }
+
+ .xl\:focus\:text-gray-600:focus {
+ color: #718096;
+ }
+
+ .xl\:focus\:text-gray-700:focus {
+ color: #4a5568;
+ }
+
+ .xl\:focus\:text-gray-800:focus {
+ color: #2d3748;
+ }
+
+ .xl\:focus\:text-gray-900:focus {
+ color: #1a202c;
+ }
+
+ .xl\:focus\:text-red-100:focus {
+ color: #fff5f5;
+ }
+
+ .xl\:focus\:text-red-200:focus {
+ color: #fed7d7;
+ }
+
+ .xl\:focus\:text-red-300:focus {
+ color: #feb2b2;
+ }
+
+ .xl\:focus\:text-red-400:focus {
+ color: #fc8181;
+ }
+
+ .xl\:focus\:text-red-500:focus {
+ color: #f56565;
+ }
+
+ .xl\:focus\:text-red-600:focus {
+ color: #e53e3e;
+ }
+
+ .xl\:focus\:text-red-700:focus {
+ color: #c53030;
+ }
+
+ .xl\:focus\:text-red-800:focus {
+ color: #9b2c2c;
+ }
+
+ .xl\:focus\:text-red-900:focus {
+ color: #742a2a;
+ }
+
+ .xl\:focus\:text-orange-100:focus {
+ color: #fffaf0;
+ }
+
+ .xl\:focus\:text-orange-200:focus {
+ color: #feebc8;
+ }
+
+ .xl\:focus\:text-orange-300:focus {
+ color: #fbd38d;
+ }
+
+ .xl\:focus\:text-orange-400:focus {
+ color: #f6ad55;
+ }
+
+ .xl\:focus\:text-orange-500:focus {
+ color: #ed8936;
+ }
+
+ .xl\:focus\:text-orange-600:focus {
+ color: #dd6b20;
+ }
+
+ .xl\:focus\:text-orange-700:focus {
+ color: #c05621;
+ }
+
+ .xl\:focus\:text-orange-800:focus {
+ color: #9c4221;
+ }
+
+ .xl\:focus\:text-orange-900:focus {
+ color: #7b341e;
+ }
+
+ .xl\:focus\:text-yellow-100:focus {
+ color: #fffff0;
+ }
+
+ .xl\:focus\:text-yellow-200:focus {
+ color: #fefcbf;
+ }
+
+ .xl\:focus\:text-yellow-300:focus {
+ color: #faf089;
+ }
+
+ .xl\:focus\:text-yellow-400:focus {
+ color: #f6e05e;
+ }
+
+ .xl\:focus\:text-yellow-500:focus {
+ color: #ecc94b;
+ }
+
+ .xl\:focus\:text-yellow-600:focus {
+ color: #d69e2e;
+ }
+
+ .xl\:focus\:text-yellow-700:focus {
+ color: #b7791f;
+ }
+
+ .xl\:focus\:text-yellow-800:focus {
+ color: #975a16;
+ }
+
+ .xl\:focus\:text-yellow-900:focus {
+ color: #744210;
+ }
+
+ .xl\:focus\:text-green-100:focus {
+ color: #f0fff4;
+ }
+
+ .xl\:focus\:text-green-200:focus {
+ color: #c6f6d5;
+ }
+
+ .xl\:focus\:text-green-300:focus {
+ color: #9ae6b4;
+ }
+
+ .xl\:focus\:text-green-400:focus {
+ color: #68d391;
+ }
+
+ .xl\:focus\:text-green-500:focus {
+ color: #48bb78;
+ }
+
+ .xl\:focus\:text-green-600:focus {
+ color: #38a169;
+ }
+
+ .xl\:focus\:text-green-700:focus {
+ color: #2f855a;
+ }
+
+ .xl\:focus\:text-green-800:focus {
+ color: #276749;
+ }
+
+ .xl\:focus\:text-green-900:focus {
+ color: #22543d;
+ }
+
+ .xl\:focus\:text-teal-100:focus {
+ color: #e6fffa;
+ }
+
+ .xl\:focus\:text-teal-200:focus {
+ color: #b2f5ea;
+ }
+
+ .xl\:focus\:text-teal-300:focus {
+ color: #81e6d9;
+ }
+
+ .xl\:focus\:text-teal-400:focus {
+ color: #4fd1c5;
+ }
+
+ .xl\:focus\:text-teal-500:focus {
+ color: #38b2ac;
+ }
+
+ .xl\:focus\:text-teal-600:focus {
+ color: #319795;
+ }
+
+ .xl\:focus\:text-teal-700:focus {
+ color: #2c7a7b;
+ }
+
+ .xl\:focus\:text-teal-800:focus {
+ color: #285e61;
+ }
+
+ .xl\:focus\:text-teal-900:focus {
+ color: #234e52;
+ }
+
+ .xl\:focus\:text-blue-100:focus {
+ color: #ebf8ff;
+ }
+
+ .xl\:focus\:text-blue-200:focus {
+ color: #bee3f8;
+ }
+
+ .xl\:focus\:text-blue-300:focus {
+ color: #90cdf4;
+ }
+
+ .xl\:focus\:text-blue-400:focus {
+ color: #63b3ed;
+ }
+
+ .xl\:focus\:text-blue-500:focus {
+ color: #4299e1;
+ }
+
+ .xl\:focus\:text-blue-600:focus {
+ color: #3182ce;
+ }
+
+ .xl\:focus\:text-blue-700:focus {
+ color: #2b6cb0;
+ }
+
+ .xl\:focus\:text-blue-800:focus {
+ color: #2c5282;
+ }
+
+ .xl\:focus\:text-blue-900:focus {
+ color: #2a4365;
+ }
+
+ .xl\:focus\:text-indigo-100:focus {
+ color: #ebf4ff;
+ }
+
+ .xl\:focus\:text-indigo-200:focus {
+ color: #c3dafe;
+ }
+
+ .xl\:focus\:text-indigo-300:focus {
+ color: #a3bffa;
+ }
+
+ .xl\:focus\:text-indigo-400:focus {
+ color: #7f9cf5;
+ }
+
+ .xl\:focus\:text-indigo-500:focus {
+ color: #667eea;
+ }
+
+ .xl\:focus\:text-indigo-600:focus {
+ color: #5a67d8;
+ }
+
+ .xl\:focus\:text-indigo-700:focus {
+ color: #4c51bf;
+ }
+
+ .xl\:focus\:text-indigo-800:focus {
+ color: #434190;
+ }
+
+ .xl\:focus\:text-indigo-900:focus {
+ color: #3c366b;
+ }
+
+ .xl\:focus\:text-purple-100:focus {
+ color: #faf5ff;
+ }
+
+ .xl\:focus\:text-purple-200:focus {
+ color: #e9d8fd;
+ }
+
+ .xl\:focus\:text-purple-300:focus {
+ color: #d6bcfa;
+ }
+
+ .xl\:focus\:text-purple-400:focus {
+ color: #b794f4;
+ }
+
+ .xl\:focus\:text-purple-500:focus {
+ color: #9f7aea;
+ }
+
+ .xl\:focus\:text-purple-600:focus {
+ color: #805ad5;
+ }
+
+ .xl\:focus\:text-purple-700:focus {
+ color: #6b46c1;
+ }
+
+ .xl\:focus\:text-purple-800:focus {
+ color: #553c9a;
+ }
+
+ .xl\:focus\:text-purple-900:focus {
+ color: #44337a;
+ }
+
+ .xl\:focus\:text-pink-100:focus {
+ color: #fff5f7;
+ }
+
+ .xl\:focus\:text-pink-200:focus {
+ color: #fed7e2;
+ }
+
+ .xl\:focus\:text-pink-300:focus {
+ color: #fbb6ce;
+ }
+
+ .xl\:focus\:text-pink-400:focus {
+ color: #f687b3;
+ }
+
+ .xl\:focus\:text-pink-500:focus {
+ color: #ed64a6;
+ }
+
+ .xl\:focus\:text-pink-600:focus {
+ color: #d53f8c;
+ }
+
+ .xl\:focus\:text-pink-700:focus {
+ color: #b83280;
+ }
+
+ .xl\:focus\:text-pink-800:focus {
+ color: #97266d;
+ }
+
+ .xl\:focus\:text-pink-900:focus {
+ color: #702459;
+ }
+
+ .xl\:text-xs {
+ font-size: 0.75rem;
+ }
+
+ .xl\:text-sm {
+ font-size: 0.875rem;
+ }
+
+ .xl\:text-base {
+ font-size: 1rem;
+ }
+
+ .xl\:text-lg {
+ font-size: 1.125rem;
+ }
+
+ .xl\:text-xl {
+ font-size: 1.25rem;
+ }
+
+ .xl\:text-2xl {
+ font-size: 1.5rem;
+ }
+
+ .xl\:text-3xl {
+ font-size: 1.875rem;
+ }
+
+ .xl\:text-4xl {
+ font-size: 2.25rem;
+ }
+
+ .xl\:text-5xl {
+ font-size: 3rem;
+ }
+
+ .xl\:text-6xl {
+ font-size: 4rem;
+ }
+
+ .xl\:italic {
+ font-style: italic;
+ }
+
+ .xl\:not-italic {
+ font-style: normal;
+ }
+
+ .xl\:uppercase {
+ text-transform: uppercase;
+ }
+
+ .xl\:lowercase {
+ text-transform: lowercase;
+ }
+
+ .xl\:capitalize {
+ text-transform: capitalize;
+ }
+
+ .xl\:normal-case {
+ text-transform: none;
+ }
+
+ .xl\:underline {
+ text-decoration: underline;
+ }
+
+ .xl\:line-through {
+ text-decoration: line-through;
+ }
+
+ .xl\:no-underline {
+ 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\:tracking-tighter {
+ letter-spacing: -0.05em;
+ }
+
+ .xl\:tracking-tight {
+ letter-spacing: -0.025em;
+ }
+
+ .xl\:tracking-normal {
+ letter-spacing: 0;
+ }
+
+ .xl\:tracking-wide {
+ letter-spacing: 0.025em;
+ }
+
+ .xl\:tracking-wider {
+ letter-spacing: 0.05em;
+ }
+
+ .xl\:tracking-widest {
+ letter-spacing: 0.1em;
+ }
+
+ .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;
+ -ms-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\: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\:visible {
+ visibility: visible;
+ }
+
+ .xl\:invisible {
+ visibility: hidden;
+ }
+
+ .xl\:whitespace-normal {
+ white-space: normal;
+ }
+
+ .xl\:whitespace-no-wrap {
+ 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\:truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+
+ .xl\:w-0 {
+ width: 0;
+ }
+
+ .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-8 {
+ width: 2rem;
+ }
+
+ .xl\:w-10 {
+ width: 2.5rem;
+ }
+
+ .xl\:w-12 {
+ width: 3rem;
+ }
+
+ .xl\:w-16 {
+ width: 4rem;
+ }
+
+ .xl\:w-20 {
+ width: 5rem;
+ }
+
+ .xl\:w-24 {
+ width: 6rem;
+ }
+
+ .xl\:w-32 {
+ width: 8rem;
+ }
+
+ .xl\:w-40 {
+ width: 10rem;
+ }
+
+ .xl\:w-48 {
+ width: 12rem;
+ }
+
+ .xl\:w-56 {
+ width: 14rem;
+ }
+
+ .xl\:w-64 {
+ width: 16rem;
+ }
+
+ .xl\:w-auto {
+ width: auto;
+ }
+
+ .xl\:w-px {
+ width: 1px;
+ }
+
+ .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\: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;
+ }
+}
\ No newline at end of file
diff --git a/client/src/assets/tailwind.css b/client/src/assets/tailwind.css
new file mode 100644
index 0000000..8a90c80
--- /dev/null
+++ b/client/src/assets/tailwind.css
@@ -0,0 +1,5 @@
+@tailwind base;
+
+@tailwind components;
+
+@tailwind utilities;
\ No newline at end of file
diff --git a/client/src/components/AnswerCard.vue b/client/src/components/AnswerCard.vue
new file mode 100644
index 0000000..cdf6859
--- /dev/null
+++ b/client/src/components/AnswerCard.vue
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+ Edit
+
+
+ Delete
+
+
+
by {{ answer.author.username }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/components/AnswerForm.vue b/client/src/components/AnswerForm.vue
new file mode 100644
index 0000000..d75d18e
--- /dev/null
+++ b/client/src/components/AnswerForm.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/components/EditorForm.vue b/client/src/components/EditorForm.vue
new file mode 100644
index 0000000..b769175
--- /dev/null
+++ b/client/src/components/EditorForm.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/components/QuestionCard.vue b/client/src/components/QuestionCard.vue
new file mode 100644
index 0000000..dbec634
--- /dev/null
+++ b/client/src/components/QuestionCard.vue
@@ -0,0 +1,85 @@
+
+
+
+
+ {{ question.upvotes.length }}
+ votes
+
+
+ {{ totalAnswers }}
+ answers
+
+
+
+
+ {{ question.title }}
+
+
+
+
+
+
+ {{ tag }}
+
+
+
+ by {{ question.author.username }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/components/QuestionEditorForm.vue b/client/src/components/QuestionEditorForm.vue
new file mode 100644
index 0000000..90a106a
--- /dev/null
+++ b/client/src/components/QuestionEditorForm.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/components/TheNavbar.vue b/client/src/components/TheNavbar.vue
new file mode 100644
index 0000000..0687d28
--- /dev/null
+++ b/client/src/components/TheNavbar.vue
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+ Log in
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/helpers/errorHandler.js b/client/src/helpers/errorHandler.js
new file mode 100644
index 0000000..d6326b3
--- /dev/null
+++ b/client/src/helpers/errorHandler.js
@@ -0,0 +1,9 @@
+function errorHandler(res) {
+ let msg = ''
+ res.data.errors.forEach(errMsg => (
+ msg += `${errMsg}
`
+ ))
+ return msg
+}
+
+export default errorHandler
\ No newline at end of file
diff --git a/client/src/main.js b/client/src/main.js
new file mode 100644
index 0000000..a5ce78e
--- /dev/null
+++ b/client/src/main.js
@@ -0,0 +1,27 @@
+import Vue from 'vue'
+import App from './App.vue'
+import router from './router'
+import store from './store'
+import './assets/styles.css'
+import Toasted from 'vue-toasted';
+import wysiwyg from "vue-wysiwyg"
+import 'vue-wysiwyg/dist/vueWysiwyg.css'
+import { library } from '@fortawesome/fontawesome-svg-core'
+import { faAngleUp, faAngleDown } from '@fortawesome/free-solid-svg-icons'
+import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
+
+library.add(faAngleUp, faAngleDown)
+
+Vue.component('font-awesome-icon', FontAwesomeIcon)
+
+
+Vue.use(wysiwyg, {})
+Vue.use(Toasted)
+
+Vue.config.productionTip = false
+
+new Vue({
+ router,
+ store,
+ render: h => h(App)
+}).$mount('#app')
diff --git a/client/src/router/index.js b/client/src/router/index.js
new file mode 100644
index 0000000..1ad2f81
--- /dev/null
+++ b/client/src/router/index.js
@@ -0,0 +1,46 @@
+import Vue from 'vue'
+import VueRouter from 'vue-router'
+import Home from '../views/Home.vue'
+
+Vue.use(VueRouter)
+
+const routes = [
+ {
+ path: '/',
+ name: 'home',
+ component: Home
+ },
+ {
+ path: '/login',
+ name: 'login',
+ component: () => import(/* webpackChunkName: "login" */ '../views/Login.vue')
+ },
+ {
+ path: '/register',
+ name: 'register',
+ component: () => import(/* webpackChunkName: "register" */ '../views/Register.vue')
+ },
+ {
+ path: '/questions',
+ name: 'questions',
+ component: () => import(/* webpackChunkName: "quesitions" */ '../views/Questions.vue'),
+ },
+ {
+ path: '/questions/:questionId',
+ name: 'questions-detail',
+ component: () => import(/* webpackChunkName: "question-detail" */ '../views/QuestionDetail.vue'),
+ },
+ {
+ path: '/new-question',
+ name: 'new-question',
+ component: () => import(/* webpackChunkName: "new-question" */ '../views/NewQuestion.vue')
+ },
+]
+
+const router = new VueRouter({
+ mode: 'history',
+ base: process.env.BASE_URL,
+ routes
+})
+
+export default router
diff --git a/client/src/store/index.js b/client/src/store/index.js
new file mode 100644
index 0000000..dffa7d6
--- /dev/null
+++ b/client/src/store/index.js
@@ -0,0 +1,469 @@
+import Vue from 'vue'
+import Vuex from 'vuex'
+import router from '../router'
+import axios from '../../config/server'
+import errorHandler from '../helpers/errorHandler'
+
+Vue.use(Vuex)
+
+export default new Vuex.Store({
+ state: {
+ isLoading: false,
+ questions: [],
+ isLoggedIn: false,
+ error: '',
+ watchedTags: [],
+ userId: ''
+ },
+ mutations: {
+ SET_IS_LOADING(state, value) {
+ state.isLoading = value
+ },
+ PUSH_QUESTIONS(state, questions) {
+ state.questions = questions
+ },
+ SET_IS_LOGGED_IN(state, value) {
+ state.isLoggedIn = value
+ },
+ PUSH_WATCHED_TAGS(state, tags) {
+ console.log(tags, '<<<')
+ state.watchedTags = tags
+ },
+ SET_USERID(state, userId) {
+ state.userId = userId
+ }
+ },
+ actions: {
+ register({ commit }, payload) {
+ const { username, email, password } = payload
+ commit('SET_IS_LOADING', true)
+ axios({
+ method: 'post',
+ url: '/account/register',
+ data: {
+ username,
+ email,
+ password
+ }
+ })
+ .then(({ data }) => {
+ localStorage.setItem('access_token', data.access_token)
+ localStorage.setItem('email', data.email)
+ commit('PUSH_WATCHED_TAGS', data.watchedTags)
+ commit('SET_IS_LOGGED_IN', true)
+ router.push('/questions')
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Successfully registered', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ router.push('/questions')
+ })
+ .catch(({ response }) => {
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ });
+ })
+ },
+
+ login({ dispatch, commit }, payload) {
+ commit('SET_IS_LOADING', true)
+ const { email, password } = payload
+ axios({
+ method: 'post',
+ url: '/account/login',
+ data: {
+ email,
+ password
+ }
+ })
+ .then(({ data }) => {
+ localStorage.setItem('access_token', data.access_token)
+ localStorage.setItem('email', data.email)
+ commit('SET_IS_LOGGED_IN', true)
+ commit('PUSH_WATCHED_TAGS', data.watchedTags)
+ router.push('/questions')
+ dispatch('getProfile')
+ commit('SET_IS_LOADING', false)
+ })
+ .catch(({ response }) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ fetchAllQuestions({ commit }) {
+ commit('SET_IS_LOADING', true)
+ axios({
+ method: 'get',
+ url: `/questions`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ }
+ })
+ .then(({ data }) => {
+ commit('PUSH_QUESTIONS', data)
+ commit('SET_IS_LOADING', false)
+ })
+ .catch(({ response }) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ askQuestion ({ dispatch, commit }, payload) {
+ commit('SET_IS_LOADING', true)
+ const { title, description, tags } = payload
+ axios({
+ method: 'post',
+ url: '/questions',
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ title,
+ description,
+ tags
+ }
+ })
+ .then(({ data }) => {
+ commit('SET_IS_LOADING', false)
+ router.push('/questions')
+ dispatch('fetchAllQuestions')
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response }) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ getProfile({ commit }) {
+ commit('SET_IS_LOADING', true)
+ axios({
+ method: 'get',
+ url: '/account/profile',
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ }
+ })
+ .then(({ data }) => {
+ commit('SET_USERID', data._id)
+ commit('SET_IS_LOADING', false)
+ commit('SET_IS_LOGGED_IN', true)
+ commit('PUSH_WATCHED_TAGS', data.watchedTags)
+ })
+ .catch(({ response }) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ answerQuestion({ dispatch, commit }, payload) {
+ const { questionId, description } = payload
+ commit('SET_IS_LOADING', true)
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'post',
+ url: '/answers',
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ questionId,
+ description
+ }
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ dispatch('fetchAllQuestions')
+ })
+ .catch(({ response }) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+
+ },
+
+ voteQ ({ commit, dispatch }, payload) {
+ const { questionId, value } = payload
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'patch',
+ url: `/questions/${questionId}/vote`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ vote: value
+ }
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response }) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+ },
+
+ voteA ({ commit, dispatch }, payload) {
+ const { answerId, value } = payload
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'patch',
+ url: `/answers/${answerId}/vote`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ vote: value
+ }
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response}) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+ },
+
+ addTags({ dispatch, commit }, payload) {
+ commit('SET_IS_LOADING', true)
+ const { tags } = payload
+ axios({
+ method: 'patch',
+ url: '/account/watchedTags',
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ tags
+ }
+ })
+ .then(({ data }) => {
+ commit('SET_IS_LOADING', false)
+ dispatch('getProfile')
+ })
+ .catch(({ response}) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ removeTag({ dispatch, commit }, tag) {
+ commit('SET_IS_LOADING', true)
+ axios({
+ method: 'delete',
+ url: '/account/watchedTags',
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ tag
+ }
+ })
+ .then(({ data }) => {
+ commit('SET_IS_LOADING', false)
+ dispatch('getProfile')
+ })
+ .catch(({ response}) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+
+ },
+
+ editQuestion({ dispatch, commit }, payload) {
+ commit('SET_IS_LOADING', true)
+ const { description, tags, questionId } = payload
+ axios({
+ method: 'patch',
+ url: `/questions/${questionId}`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ description,
+ tags
+ }
+ })
+ .then(({ data }) => {
+ commit('SET_IS_LOADING', false)
+ router.push('/questions')
+ dispatch('fetchAllQuestions')
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response }) => {
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ },
+
+ editAnswer({ dispatch, commit }, payload) {
+ commit('SET_IS_LOADING', true)
+ const { answerId, questionId, description } = payload
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'patch',
+ url: `/answers/${answerId}/`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ data: {
+ description,
+ questionId
+ }
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Submitted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response}) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+ },
+
+ destroyAnswer({ dispatch, commit }, answerId) {
+ commit('SET_IS_LOADING', true)
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'delete',
+ url: `/answers/${answerId}/`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Deleted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response}) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+ },
+ destroyQuestion({ dispatch, commit }, questionId) {
+ commit('SET_IS_LOADING', true)
+ return new Promise((resolve, reject) => {
+ axios({
+ method: 'delete',
+ url: `/questions/${questionId}/`,
+ headers: {
+ access_token: localStorage.getItem('access_token')
+ },
+ })
+ .then(({ data }) => {
+ resolve(data)
+ commit('SET_IS_LOADING', false)
+ Vue.toasted.success('Deleted', {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ .catch(({ response}) => {
+ reject(response)
+ commit('SET_IS_LOADING', false)
+ let msg = errorHandler(response)
+ Vue.toasted.error(msg, {
+ duration: 3000,
+ position: 'top-center'
+ })
+ })
+ })
+ }
+ },
+ modules: {
+ }
+})
diff --git a/client/src/views/About.vue b/client/src/views/About.vue
new file mode 100644
index 0000000..3fa2807
--- /dev/null
+++ b/client/src/views/About.vue
@@ -0,0 +1,5 @@
+
+
+
This is an about page
+
+
diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue
new file mode 100644
index 0000000..54b2a6f
--- /dev/null
+++ b/client/src/views/Home.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/client/src/views/Login.vue b/client/src/views/Login.vue
new file mode 100644
index 0000000..ec4da32
--- /dev/null
+++ b/client/src/views/Login.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
+
Log in to your account
+
+
+ ©2019 Deprak. All rights reserved.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/views/NewQuestion.vue b/client/src/views/NewQuestion.vue
new file mode 100644
index 0000000..a6da18e
--- /dev/null
+++ b/client/src/views/NewQuestion.vue
@@ -0,0 +1,79 @@
+
+
+
+
+
+
Ask a Questions
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/views/QuestionDetail.vue b/client/src/views/QuestionDetail.vue
new file mode 100644
index 0000000..ccb8ad8
--- /dev/null
+++ b/client/src/views/QuestionDetail.vue
@@ -0,0 +1,209 @@
+
+
+
+
+
+
+
+ Edit
+
+
+ Delete
+
+
+
+
+
+
+
+
+ {{ question.title }}
+
+
+
+
+
+
+ {{ tag }}
+
+
+
+ by {{ question.author.username }}
+
+
+
+
+
+
{{ totalAnswers }} Answer(s)
+
+
+ Answer This Question
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/views/Questions.vue b/client/src/views/Questions.vue
new file mode 100644
index 0000000..417cef6
--- /dev/null
+++ b/client/src/views/Questions.vue
@@ -0,0 +1,143 @@
+
+
+
+
+
+
All Questions
+
+
+ Ask a Question
+
+
+ Watched Tags
+
+
+
+
+
+
+
+
+
{{ tag }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/src/views/Register.vue b/client/src/views/Register.vue
new file mode 100644
index 0000000..9ae12b2
--- /dev/null
+++ b/client/src/views/Register.vue
@@ -0,0 +1,94 @@
+
+
+
+
Register a new account
+
+
+ ©2019 Deprak. All rights reserved.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/tailwind.config.js b/client/tailwind.config.js
new file mode 100644
index 0000000..dd6532c
--- /dev/null
+++ b/client/tailwind.config.js
@@ -0,0 +1,7 @@
+module.exports = {
+ theme: {
+ extend: {}
+ },
+ variants: {},
+ plugins: []
+}
diff --git a/client/vue.config.js b/client/vue.config.js
new file mode 100644
index 0000000..93638a7
--- /dev/null
+++ b/client/vue.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+ lintOnSave: true
+}
\ No newline at end of file
diff --git a/server/app.js b/server/app.js
new file mode 100644
index 0000000..43f34cb
--- /dev/null
+++ b/server/app.js
@@ -0,0 +1,28 @@
+require('dotenv').config()
+
+const express = require('express')
+const app = express()
+const PORT = process.env.PORT || 3000
+const cors = require('cors')
+const morgan = require('morgan')
+const routes = require('./routes')
+const errorHandler = require('./middlewares/errorHandler')
+const mailSender = require('./cron')
+require('./config/mongoose')
+
+mailSender()
+app.use(cors())
+app.use(morgan('dev'))
+app.use(express.json())
+app.use(express.urlencoded({ extended: false }))
+
+app.get('/', (req, res) => {
+ res.send('Hello, there!')
+})
+
+app.use('/', routes)
+app.use(errorHandler)
+
+app.listen(PORT, () => {
+ console.log(`Listening on PORT ${PORT}`)
+})
\ No newline at end of file
diff --git a/server/bin/http.js b/server/bin/http.js
new file mode 100644
index 0000000..e69de29
diff --git a/server/config/mongoose.js b/server/config/mongoose.js
new file mode 100644
index 0000000..c7b60a4
--- /dev/null
+++ b/server/config/mongoose.js
@@ -0,0 +1,19 @@
+const mongoose = require("mongoose");
+let URI = process.env.URI_DB
+
+mongoose.connect(URI,
+ {
+ useNewUrlParser: true ,
+ useUnifiedTopology: true,
+ useFindAndModify: false
+ }
+);
+
+
+const db = mongoose.connection;
+db.on("error", console.error.bind(console, "connection error:"));
+db.once("open", function() {
+ console.log("Connected!")
+});
+
+module.exports = mongoose;
\ No newline at end of file
diff --git a/server/controllers/answerController.js b/server/controllers/answerController.js
new file mode 100644
index 0000000..25cd3d9
--- /dev/null
+++ b/server/controllers/answerController.js
@@ -0,0 +1,92 @@
+const { Answer } = require('../models')
+
+class AnswerController {
+ static create(req, res, next) {
+ const { description, questionId } = req.body
+ const author = req.decoded._id
+ Answer.create({
+ description,
+ author,
+ questionId
+ })
+ .then(answer => {
+ res.status(201).json(answer)
+ })
+ .catch(next)
+ }
+
+ static findAll(req, res, next) {
+ Answer.find({ questionId: req.params.questionId })
+ .populate('author')
+ .populate('upvotes')
+ .populate('downvotes')
+ .then(answers => {
+ res.status(200).json(answers)
+ })
+ .catch(next)
+ }
+
+ static findOne(req, res, next) {
+ Answer.findById(req.params.answerId)
+ .then(answer => {
+ res.status(200).json(answer)
+ })
+ .catch(next)
+ }
+
+ static update(req, res, next) {
+ const update = {}
+ const { questionId, description } = req.body
+ if (description) update.description = description
+ update.questionId = questionId
+ console.log(description, '!!!!!!!!!!')
+ Answer.findByIdAndUpdate(req.params.answerId, update)
+ .then(answer => {
+ console.log(answer, 'OOOOOO')
+ res.status(200).json(answer)
+ })
+ .catch(next)
+ }
+
+ static destroy(req, res, next) {
+ Answer.findByIdAndDelete(req.params.answerId)
+ .then(answer => {
+ res.status(200).json(answer)
+ })
+ .catch(next)
+ }
+
+ static vote(req, res, next) {
+ let vote = req.body.vote
+ let userId = req.decoded._id
+ let answerId = req.params.answerId
+ Answer.findByIdAndUpdate(answerId, {
+ $pull: {
+ downvotes: userId,
+ upvotes: userId
+ }
+ }, { new: true })
+ .then(answer => {
+ if (vote === 'up') {
+ return Answer.findByIdAndUpdate(answerId, {
+ $push: {
+ upvotes: userId
+ }
+ }, { new: true }).populate('upvotes').populate('downvotes')
+ } else {
+ return Answer.findByIdAndUpdate(answerId, {
+ $push: {
+ downvotes: userId
+ }
+ }, { new: true }).populate('upvotes').populate('downvotes')
+ }
+ })
+ .then(answer => {
+ res.status(200).json(answer)
+ })
+ .catch(next)
+ }
+
+}
+
+module.exports = AnswerController
\ No newline at end of file
diff --git a/server/controllers/index.js b/server/controllers/index.js
new file mode 100644
index 0000000..7d0dc24
--- /dev/null
+++ b/server/controllers/index.js
@@ -0,0 +1,5 @@
+module.exports = {
+ answerController: require('./answerController'),
+ questionController: require('./questionController'),
+ userController: require('./userController')
+}
\ No newline at end of file
diff --git a/server/controllers/questionController.js b/server/controllers/questionController.js
new file mode 100644
index 0000000..8139e98
--- /dev/null
+++ b/server/controllers/questionController.js
@@ -0,0 +1,121 @@
+const { Question, Answer } = require('../models')
+const { tagFormatter } = require('../helpers/tagFormatter')
+
+class QuestionController {
+ static create(req, res, next) {
+ let { title, description, tags } = req.body
+ const author = req.decoded._id
+ tags ? (tags = tagFormatter(tags)) : (tags = [])
+ console.log(tags, '{{{')
+ Question.create({
+ title,
+ description,
+ tags,
+ author
+ })
+ .then(question => {
+ res.status(201).json(question)
+ })
+ .catch(next)
+ }
+
+ static findAll(req, res, next) {
+ let queryObj = {}
+ const { tag } = req.query
+ if (tag) {
+ queryObj = { tags: tag }
+ }
+ Question.find(queryObj)
+ .sort({ createdAt: -1 })
+ .populate('author')
+ .populate('upvotes')
+ .populate('downvotes')
+ .then(questions => {
+ res.status(200).json(questions)
+ })
+ .catch(next)
+ }
+
+ static findOne(req, res, next) {
+ Question.findById(req.params.questionId)
+ .populate('author')
+ .populate('upvotes')
+ .populate('downvotes')
+ .then(question => {
+ res.status(200).json(question)
+ })
+ .catch(next)
+ }
+
+ static findMine(req, res, next) {
+ Question.find({ author: req.params.userId})
+ .sort({ createdAt: -1 })
+ .populate('author')
+ .populate('upvotes')
+ .populate('downvotes')
+ .then(questions => {
+ res.status(200).json(questions)
+ })
+ .catch(next)
+ }
+
+ static update(req, res, next) {
+ const update = {}
+ const { title, description, tags } = req.body
+ title && (update.title = title)
+ description && (update.description = description)
+ tags ? (update.tags = tagFormatter(tags)) : (update.tags = [])
+ Question.findByIdAndUpdate(req.params.questionId,
+ update,
+ { new: true, omitUndefined: true })
+ .then(question => {
+ res.status(200).json(question)
+ })
+ .catch(next)
+ }
+
+ static destroy(req, res, next) {
+ Question.findByIdAndDelete(req.params.questionId)
+ .then(() => {
+ return Answer.deleteMany({ questionId: req.params.questionId })
+ })
+ .then((questions) => {
+ res.status(200).json(questions)
+ })
+ .catch(next)
+ }
+
+ static vote(req, res, next) {
+ let vote = req.body.vote
+ let userId = req.decoded._id
+ let questionId = req.params.questionId
+ Question.findByIdAndUpdate(questionId, {
+ $pull: {
+ upvotes: userId,
+ downvotes: userId
+ }
+ }, { new: true })
+ .then(question => {
+ if (vote === 'up') {
+ return Question.findByIdAndUpdate(questionId, {
+ $push: {
+ upvotes: userId
+ }
+ }, { new: true }).populate('upvotes', 'downvotes')
+ } else {
+ return Question.findByIdAndUpdate(questionId, {
+ $push: {
+ downvotes: userId
+ }
+ }, { new: true }).populate('upvotes', 'downvotes')
+ }
+ })
+ .then(question => {
+ res.status(200).json(question)
+ })
+ .catch(next)
+ }
+
+}
+
+module.exports = QuestionController
\ No newline at end of file
diff --git a/server/controllers/userController.js b/server/controllers/userController.js
new file mode 100644
index 0000000..beea3ff
--- /dev/null
+++ b/server/controllers/userController.js
@@ -0,0 +1,77 @@
+const { User, Question } = require("../models");
+const { checkPassword } = require("../helpers/bcrypt");
+const { generateToken } = require("../helpers/jwt");
+const createError = require('http-errors')
+const { tagFormatter } = require('../helpers/tagFormatter')
+
+class userController {
+ static register(req, res, next) {
+ const payload = {}
+ let access_token = ''
+ const { username, email, password } = req.body
+ User.create({ username, email, password })
+ .then(user => {
+ payload._id = user._id
+ payload.email = user.email
+ access_token = generateToken(payload);
+ res.status(201).json({ access_token, email, _id: user._id })
+ })
+ .catch(next)
+ }
+
+ static login(req, res, next) {
+ const payload = {};
+ let access_token = '';
+ const { email, password } = req.body;
+ User.findOne({ email })
+ .then(user => {
+ if (user) {
+ if (checkPassword(password, user.password)) {
+ payload._id = user._id;
+ payload.email = user.email;
+ access_token = generateToken(payload);
+ res.status(200).json({ access_token, email, _id: user._id })
+ } else {
+ throw { code: 400, message: "invalid password" }
+ }
+ } else {
+ throw { code: 400, message: "email is not registered" }
+ }
+ })
+ .catch(next)
+
+ }
+
+ static getProfile(req, res, next) {
+ User.findById(req.decoded._id)
+ .then(user => {
+ res.status(200).json(user)
+ })
+ .catch(next)
+ }
+
+ static addWatchedTags(req, res, next) {
+ let { tags } = req.body
+ tags ? (tags = tagFormatter(tags)) : (tags = [])
+ User.findByIdAndUpdate(req.decoded._id, {
+ $addToSet: { watchedTags: { $each: tags } }
+ }, { new: true })
+ .then(user => {
+ res.status(200).json(user)
+ })
+ .catch(next)
+ }
+
+ static removeWatchedTags(req, res, next) {
+ let { tag } = req.body
+ User.findByIdAndUpdate(req.decoded._id, {
+ $pull: { watchedTags: tag }
+ }, { new: true })
+ .then(user => {
+ res.status(200).json(user)
+ })
+ .catch(next)
+ }
+}
+
+module.exports = userController;
\ No newline at end of file
diff --git a/server/cron.js b/server/cron.js
new file mode 100644
index 0000000..5bd0cbd
--- /dev/null
+++ b/server/cron.js
@@ -0,0 +1,41 @@
+require('dotenv')
+const cron = require('node-cron')
+const nodemailer = require('nodemailer')
+const { User } = require('./models')
+
+module.exports = () => {
+ console.log(process.env.EMAIL)
+ let emails = []
+ User.find()
+ .then(users => {
+ users.forEach(user => {
+ emails.push(user.email)
+ })
+
+ let transporter = nodemailer.createTransport({
+ service: "gmail",
+ auth: {
+ user: process.env.EMAIL,
+ pass: process.env.PASSWORD_CRON
+ }
+ })
+ cron.schedule("31 18 * * *", function() {
+ let mailOptions = {
+ from: "ngulikpustaka@gmail.com",
+ to: emails,
+ subject: 'Hello from HackOverflow!',
+ text: 'A kindly reminder for you to checkout yuckOverflow :)'
+ };
+ transporter.sendMail(mailOptions, function(error, info) {
+ if (error) {
+ throw error
+ } else {
+ console.log("Email sent!")
+ }
+ })
+ })
+ })
+ .catch(err => {
+ console.log(err)
+ })
+}
\ No newline at end of file
diff --git a/server/helpers/bcrypt.js b/server/helpers/bcrypt.js
new file mode 100644
index 0000000..c301be5
--- /dev/null
+++ b/server/helpers/bcrypt.js
@@ -0,0 +1,14 @@
+const bcrypt = require("bcryptjs");
+
+function hashPassword(password) {
+ return bcrypt.hashSync(password, 10);
+}
+
+function checkPassword(password, hash) {
+ return bcrypt.compareSync(password, hash);
+}
+
+module.exports = {
+ hashPassword,
+ checkPassword
+}
diff --git a/server/helpers/jwt.js b/server/helpers/jwt.js
new file mode 100644
index 0000000..f956027
--- /dev/null
+++ b/server/helpers/jwt.js
@@ -0,0 +1,14 @@
+const jwt = require("jsonwebtoken");
+
+function generateToken(payload) {
+ return jwt.sign(payload, process.env.JWT_SECRET);
+};
+
+function decode(token) {
+ return jwt.verify(token, process.env.JWT_SECRET);
+};
+
+module.exports = {
+ generateToken,
+ decode
+}
\ No newline at end of file
diff --git a/server/helpers/tagFormatter.js b/server/helpers/tagFormatter.js
new file mode 100644
index 0000000..ffdaaa0
--- /dev/null
+++ b/server/helpers/tagFormatter.js
@@ -0,0 +1,12 @@
+module.exports = {
+ tagFormatter(tags) {
+ if (!tags) return
+ console.log(tags, '+++++')
+ let rawTags = tags.trim().split(',')
+ let formattedTags = rawTags.map(tag => {
+ return tag.trim().replace(/[`@|=!&\/\\#,+()$~%.'":*?<>{}]/g, '').replace(/\s/g,'')
+ })
+ formattedTags = Array.from(new Set(formattedTags))
+ return formattedTags
+ }
+}
\ No newline at end of file
diff --git a/server/middlewares/auth.js b/server/middlewares/auth.js
new file mode 100644
index 0000000..055d93d
--- /dev/null
+++ b/server/middlewares/auth.js
@@ -0,0 +1,50 @@
+const jwt = require("jsonwebtoken");
+const { User, Question, Answer } = require("../models");
+
+function authentication(req, res, next) {
+ if (req.headers.access_token) {
+ let payload = jwt.verify(req.headers.access_token, process.env.JWT_SECRET)
+ User.findOne({ email: payload.email})
+ .then(user => {
+ if (user) {
+ req.decoded = payload;
+ next()
+ } else {
+ throw { status: 401, message: 'Invalid access token' }
+ }
+ })
+ .catch(next)
+ } else {
+ next({ status: 401, message: 'Invalid access token' })
+ }
+}
+
+function questionAuthorization(req, res, next) {
+ Question.findById(req.params.questionId)
+ .then(question => {
+ if (question.author == req.decoded._id) {
+ next();
+ } else {
+ throw { status: 403, message: "Forbidden access" };
+ }
+ })
+ .catch(next);
+}
+
+function answerAuthorization(req, res, next) {
+ Answer.findById(req.params.answerId)
+ .then(answer => {
+ if (answer.author == req.decoded._id) {
+ next();
+ } else {
+ throw { status: 403, message: "Forbidden access" };
+ }
+ })
+ .catch(next);
+}
+
+module.exports = {
+ authentication,
+ questionAuthorization,
+ answerAuthorization
+}
\ No newline at end of file
diff --git a/server/middlewares/errorHandler.js b/server/middlewares/errorHandler.js
new file mode 100644
index 0000000..c590f81
--- /dev/null
+++ b/server/middlewares/errorHandler.js
@@ -0,0 +1,16 @@
+module.exports = (err, req, res, next) => {
+ let statusCode = 500
+ let errors = []
+ console.log(err.message, '<<<< error')
+
+ if (err.name === 'ValidationError') {
+ for (let key in err.errors) {
+ errors.push(err.errors[key].message)
+ }
+ } else {
+ statusCode = err.statusCode || 500
+ let msg = err.message || 'Internal server error'
+ errors = [msg]
+ }
+ res.status(statusCode).json({ errors })
+}
\ No newline at end of file
diff --git a/server/models/Answer.js b/server/models/Answer.js
new file mode 100644
index 0000000..fe3e7c6
--- /dev/null
+++ b/server/models/Answer.js
@@ -0,0 +1,29 @@
+const mongoose = require('mongoose')
+const { Schema, model } = mongoose
+
+const answerSchema = new Schema({
+ description: {
+ type: String,
+ ref: 'User'
+ },
+ upvotes: [{
+ type: Schema.Types.ObjectId,
+ ref: 'User'
+ }],
+ downvotes: [{
+ type: Schema.Types.ObjectId,
+ ref: 'User'
+ }],
+ questionId: {
+ type: Schema.Types.ObjectId,
+ ref: 'Question'
+ },
+ author: {
+ type: Schema.Types.ObjectId,
+ ref: 'User'
+ }
+}, { timestamps: true })
+
+const Answer = model('Answer', answerSchema)
+
+module.exports = Answer
\ No newline at end of file
diff --git a/server/models/Question.js b/server/models/Question.js
new file mode 100644
index 0000000..8bc4c19
--- /dev/null
+++ b/server/models/Question.js
@@ -0,0 +1,33 @@
+const mongoose = require('mongoose')
+const { Schema, model } = mongoose
+
+const questionSchema = new Schema({
+ title: {
+ type: String,
+ required: [true, 'title must be filled out']
+ },
+ description: {
+ type: String,
+ required: [true, 'description must be filled out']
+ },
+ upvotes: [{
+ type: Schema.Types.ObjectId,
+ ref: 'User'
+ }],
+ downvotes: [{
+ type: Schema.Types.ObjectId,
+ ref: 'User'
+ }],
+ author: {
+ type: Schema.Types.ObjectId,
+ ref: 'User',
+ required: [true, 'user must be filled out']
+ },
+ tags: [{
+ type: String
+ }]
+}, { timestamps: true })
+
+const Question = model('Question', questionSchema)
+
+module.exports = Question
\ No newline at end of file
diff --git a/server/models/Tag.js b/server/models/Tag.js
new file mode 100644
index 0000000..1d6b10a
--- /dev/null
+++ b/server/models/Tag.js
@@ -0,0 +1,10 @@
+// const { Schema, models, model } = require('mongoose')
+
+// const tagSchema = new Schema({
+// name: [{
+// type: String,
+// required: [true, 'Tag name must be filled out'],
+// minlength: [3, 'Minimum tag name is 3 characters']
+// }]
+// })
+
diff --git a/server/models/User.js b/server/models/User.js
new file mode 100644
index 0000000..215d5b7
--- /dev/null
+++ b/server/models/User.js
@@ -0,0 +1,64 @@
+const mongoose = require('mongoose');
+const { Schema, model, models } = mongoose;
+const { hashPassword } = require('../helpers/bcrypt')
+
+const userSchema = new Schema({
+ username: {
+ type: String,
+ required: [true, 'username must be filled out'],
+ validate: {
+ validator: function(v) {
+ return models.User.findOne({ username: v })
+ .then(user => {
+ if (user) {
+ return false;
+ } else {
+ return true;
+ }
+ })
+ },
+ message: 'username has been registered!'
+ }
+ },
+ email: {
+ type: String,
+ required: [true, 'email must be filled out'],
+ validate: [
+ {
+ validator: function(v) {
+ return models.User.findOne({ email: v })
+ .then(user => {
+ if (user) {
+ return false;
+ } else {
+ return true;
+ }
+ })
+ },
+ message: 'email has been registered!'
+ }, {
+ validator: function(v) {
+ return /^(([^<>()\[\]\\.,;:\s@']+(\.[^<>()\[\]\\.,;:\s@']+)*)|('.+'))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(v);
+ },
+ message: 'invalid email input!'
+ }
+ ]
+ },
+ password: {
+ type: String,
+ required: [true, 'password must be filled out'],
+ minlength: [6, 'minimum password character is 6']
+ },
+ watchedTags: [{
+ type: String
+ }]
+});
+
+userSchema.pre('save', function() {
+ this.password = hashPassword(this.password);
+ next();
+});
+
+
+const User = model('User', userSchema);
+module.exports = User;
\ No newline at end of file
diff --git a/server/models/index.js b/server/models/index.js
new file mode 100644
index 0000000..2a51036
--- /dev/null
+++ b/server/models/index.js
@@ -0,0 +1,5 @@
+module.exports = {
+ User: require('./User'),
+ Answer: require('./Answer'),
+ Question: require('./Question')
+}
\ No newline at end of file
diff --git a/server/package-lock.json b/server/package-lock.json
new file mode 100644
index 0000000..7f21be1
--- /dev/null
+++ b/server/package-lock.json
@@ -0,0 +1,771 @@
+{
+ "name": "server",
+ "version": "1.0.0",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "accepts": {
+ "version": "1.3.7",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+ "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+ "requires": {
+ "mime-types": "~2.1.24",
+ "negotiator": "0.6.2"
+ }
+ },
+ "array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
+ },
+ "axios": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.0.tgz",
+ "integrity": "sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==",
+ "requires": {
+ "follow-redirects": "1.5.10",
+ "is-buffer": "^2.0.2"
+ }
+ },
+ "basic-auth": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz",
+ "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
+ "requires": {
+ "safe-buffer": "5.1.2"
+ }
+ },
+ "bcryptjs": {
+ "version": "2.4.3",
+ "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz",
+ "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms="
+ },
+ "bluebird": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
+ "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
+ },
+ "body-parser": {
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
+ "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
+ "requires": {
+ "bytes": "3.1.0",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "http-errors": "1.7.2",
+ "iconv-lite": "0.4.24",
+ "on-finished": "~2.3.0",
+ "qs": "6.7.0",
+ "raw-body": "2.4.0",
+ "type-is": "~1.6.17"
+ },
+ "dependencies": {
+ "http-errors": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
+ "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ }
+ },
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
+ }
+ }
+ },
+ "bson": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-1.1.3.tgz",
+ "integrity": "sha512-TdiJxMVnodVS7r0BdL42y/pqC9cL2iKynVwA0Ho3qbsQYr428veL3l7BQyuqiw+Q5SqqoT0m4srSY/BlZ9AxXg=="
+ },
+ "buffer-equal-constant-time": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
+ "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk="
+ },
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
+ },
+ "content-disposition": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
+ "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
+ "requires": {
+ "safe-buffer": "5.1.2"
+ }
+ },
+ "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=="
+ },
+ "cookie": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
+ "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
+ },
+ "cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
+ },
+ "cors": {
+ "version": "2.8.5",
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
+ "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
+ "requires": {
+ "object-assign": "^4",
+ "vary": "^1"
+ }
+ },
+ "cron": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/cron/-/cron-1.7.2.tgz",
+ "integrity": "sha512-+SaJ2OfeRvfQqwXQ2kgr0Y5pzBR/lijf5OpnnaruwWnmI799JfWr2jN2ItOV9s3A/+TFOt6mxvKzQq5F0Jp6VQ==",
+ "requires": {
+ "moment-timezone": "^0.5.x"
+ }
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
+ },
+ "destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
+ },
+ "dotenv": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
+ "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
+ "dev": true
+ },
+ "ecdsa-sig-formatter": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
+ },
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
+ },
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
+ },
+ "express": {
+ "version": "4.17.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
+ "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
+ "requires": {
+ "accepts": "~1.3.7",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.19.0",
+ "content-disposition": "0.5.3",
+ "content-type": "~1.0.4",
+ "cookie": "0.4.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.1.2",
+ "fresh": "0.5.2",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.5",
+ "qs": "6.7.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.1.2",
+ "send": "0.17.1",
+ "serve-static": "1.14.1",
+ "setprototypeof": "1.1.1",
+ "statuses": "~1.5.0",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ }
+ },
+ "follow-redirects": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
+ "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
+ "requires": {
+ "debug": "=3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ }
+ }
+ },
+ "forwarded": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
+ "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
+ },
+ "http-errors": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+ "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ }
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "ipaddr.js": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz",
+ "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="
+ },
+ "is-buffer": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
+ "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
+ },
+ "jsonwebtoken": {
+ "version": "8.5.1",
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
+ "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
+ "requires": {
+ "jws": "^3.2.2",
+ "lodash.includes": "^4.3.0",
+ "lodash.isboolean": "^3.0.3",
+ "lodash.isinteger": "^4.0.4",
+ "lodash.isnumber": "^3.0.3",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.once": "^4.0.0",
+ "ms": "^2.1.1",
+ "semver": "^5.6.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ }
+ }
+ },
+ "jwa": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
+ "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
+ "requires": {
+ "buffer-equal-constant-time": "1.0.1",
+ "ecdsa-sig-formatter": "1.0.11",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "jws": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
+ "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
+ "requires": {
+ "jwa": "^1.4.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "kareem": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.3.1.tgz",
+ "integrity": "sha512-l3hLhffs9zqoDe8zjmb/mAN4B8VT3L56EUvKNqLFVs9YlFA+zx7ke1DO8STAdDyYNkeSo1nKmjuvQeI12So8Xw=="
+ },
+ "lodash.includes": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
+ "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8="
+ },
+ "lodash.isboolean": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
+ "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY="
+ },
+ "lodash.isinteger": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
+ "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M="
+ },
+ "lodash.isnumber": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
+ "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w="
+ },
+ "lodash.isplainobject": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
+ "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs="
+ },
+ "lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE="
+ },
+ "lodash.once": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
+ "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w="
+ },
+ "media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
+ },
+ "memory-pager": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
+ "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
+ "optional": true
+ },
+ "merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
+ },
+ "methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
+ },
+ "mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+ },
+ "mime-db": {
+ "version": "1.42.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz",
+ "integrity": "sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ=="
+ },
+ "mime-types": {
+ "version": "2.1.25",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.25.tgz",
+ "integrity": "sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==",
+ "requires": {
+ "mime-db": "1.42.0"
+ }
+ },
+ "moment": {
+ "version": "2.24.0",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz",
+ "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="
+ },
+ "moment-timezone": {
+ "version": "0.5.27",
+ "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.27.tgz",
+ "integrity": "sha512-EIKQs7h5sAsjhPCqN6ggx6cEbs94GK050254TIJySD1bzoM5JTYDwAU1IoVOeTOL6Gm27kYJ51/uuvq1kIlrbw==",
+ "requires": {
+ "moment": ">= 2.9.0"
+ }
+ },
+ "mongodb": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.3.5.tgz",
+ "integrity": "sha512-6NAv5gTFdwRyVfCz+O+KDszvjpyxmZw+VlmqmqKR2GmpkeKrKFRv/ZslgTtZba2dc9JYixIf99T5Gih7TIWv7Q==",
+ "requires": {
+ "bson": "^1.1.1",
+ "require_optional": "^1.0.1",
+ "safe-buffer": "^5.1.2",
+ "saslprep": "^1.0.0"
+ }
+ },
+ "mongoose": {
+ "version": "5.8.1",
+ "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.8.1.tgz",
+ "integrity": "sha512-8Cffl52cMK2iBlpLipoRKW/RdrhkxvVzXsy+xVsfbKHQBCWkFiS0T0jU4smYzomTMP4gW0sReJoRA7Gu/7VVgQ==",
+ "requires": {
+ "bson": "~1.1.1",
+ "kareem": "2.3.1",
+ "mongodb": "3.3.5",
+ "mongoose-legacy-pluralize": "1.0.2",
+ "mpath": "0.6.0",
+ "mquery": "3.2.2",
+ "ms": "2.1.2",
+ "regexp-clone": "1.0.0",
+ "safe-buffer": "5.1.2",
+ "sift": "7.0.1",
+ "sliced": "1.0.1"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ }
+ }
+ },
+ "mongoose-legacy-pluralize": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz",
+ "integrity": "sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ=="
+ },
+ "morgan": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz",
+ "integrity": "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==",
+ "requires": {
+ "basic-auth": "~2.0.0",
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "on-finished": "~2.3.0",
+ "on-headers": "~1.0.1"
+ }
+ },
+ "mpath": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.6.0.tgz",
+ "integrity": "sha512-i75qh79MJ5Xo/sbhxrDrPSEG0H/mr1kcZXJ8dH6URU5jD/knFxCVqVC/gVSW7GIXL/9hHWlT9haLbCXWOll3qw=="
+ },
+ "mquery": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/mquery/-/mquery-3.2.2.tgz",
+ "integrity": "sha512-XB52992COp0KP230I3qloVUbkLUxJIu328HBP2t2EsxSFtf4W1HPSOBWOXf1bqxK4Xbb66lfMJ+Bpfd9/yZE1Q==",
+ "requires": {
+ "bluebird": "3.5.1",
+ "debug": "3.1.0",
+ "regexp-clone": "^1.0.0",
+ "safe-buffer": "5.1.2",
+ "sliced": "1.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ }
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "negotiator": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="
+ },
+ "node-cron": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/node-cron/-/node-cron-2.0.3.tgz",
+ "integrity": "sha512-eJI+QitXlwcgiZwNNSRbqsjeZMp5shyajMR81RZCqeW0ZDEj4zU9tpd4nTh/1JsBiKbF8d08FCewiipDmVIYjg==",
+ "requires": {
+ "opencollective-postinstall": "^2.0.0",
+ "tz-offset": "0.0.1"
+ }
+ },
+ "nodemailer": {
+ "version": "6.4.2",
+ "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.4.2.tgz",
+ "integrity": "sha512-g0n4nH1ONGvqYo1v72uSWvF/MRNnnq1LzmSzXb/6EPF3LFb51akOhgG3K2+aETAsJx90/Q5eFNTntu4vBCwyQQ=="
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+ },
+ "on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+ "requires": {
+ "ee-first": "1.1.1"
+ }
+ },
+ "on-headers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
+ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
+ },
+ "opencollective-postinstall": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz",
+ "integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw=="
+ },
+ "parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
+ },
+ "path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
+ },
+ "proxy-addr": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz",
+ "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==",
+ "requires": {
+ "forwarded": "~0.1.2",
+ "ipaddr.js": "1.9.0"
+ }
+ },
+ "qs": {
+ "version": "6.7.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
+ "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
+ },
+ "raw-body": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
+ "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
+ "requires": {
+ "bytes": "3.1.0",
+ "http-errors": "1.7.2",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "dependencies": {
+ "http-errors": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
+ "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ }
+ },
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
+ }
+ }
+ },
+ "regexp-clone": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/regexp-clone/-/regexp-clone-1.0.0.tgz",
+ "integrity": "sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw=="
+ },
+ "require_optional": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz",
+ "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==",
+ "requires": {
+ "resolve-from": "^2.0.0",
+ "semver": "^5.1.0"
+ }
+ },
+ "resolve-from": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz",
+ "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c="
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "saslprep": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz",
+ "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==",
+ "optional": true,
+ "requires": {
+ "sparse-bitfield": "^3.0.3"
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
+ },
+ "send": {
+ "version": "0.17.1",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
+ "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "~1.7.2",
+ "mime": "1.6.0",
+ "ms": "2.1.1",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.1",
+ "statuses": "~1.5.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
+ }
+ }
+ },
+ "serve-static": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
+ "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
+ "requires": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.17.1"
+ }
+ },
+ "setprototypeof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+ "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
+ },
+ "sift": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/sift/-/sift-7.0.1.tgz",
+ "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g=="
+ },
+ "sliced": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz",
+ "integrity": "sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E="
+ },
+ "sparse-bitfield": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
+ "integrity": "sha1-/0rm5oZWBWuks+eSqzM004JzyhE=",
+ "optional": true,
+ "requires": {
+ "memory-pager": "^1.0.2"
+ }
+ },
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
+ },
+ "toidentifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
+ },
+ "type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "requires": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ }
+ },
+ "tz-offset": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/tz-offset/-/tz-offset-0.0.1.tgz",
+ "integrity": "sha512-kMBmblijHJXyOpKzgDhKx9INYU4u4E1RPMB0HqmKSgWG8vEcf3exEfLh4FFfzd3xdQOw9EuIy/cP0akY6rHopQ=="
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
+ },
+ "vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
+ }
+ }
+}
diff --git a/server/package.json b/server/package.json
new file mode 100644
index 0000000..f9b98c1
--- /dev/null
+++ b/server/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "server",
+ "version": "1.0.0",
+ "description": "",
+ "main": "app.js",
+ "bin": {
+ "server": "http.js"
+ },
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "dev": "NODE_ENV=development nodemon app.js"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "dependencies": {
+ "axios": "^0.19.0",
+ "bcryptjs": "^2.4.3",
+ "cors": "^2.8.5",
+ "cron": "^1.7.2",
+ "express": "^4.17.1",
+ "http-errors": "^1.7.3",
+ "jsonwebtoken": "^8.5.1",
+ "mongoose": "^5.8.1",
+ "morgan": "^1.9.1",
+ "node-cron": "^2.0.3",
+ "nodemailer": "^6.4.2"
+ },
+ "devDependencies": {
+ "dotenv": "^8.2.0"
+ }
+}
diff --git a/server/routes/answerRoutes.js b/server/routes/answerRoutes.js
new file mode 100644
index 0000000..048e253
--- /dev/null
+++ b/server/routes/answerRoutes.js
@@ -0,0 +1,15 @@
+const express = require('express')
+const router = express.Router()
+const { answerController } = require('../controllers')
+const { authentication, answerAuthorization } = require('../middlewares/auth')
+
+router.get('/:questionId', answerController.findAll)
+router.get('/answer/:answerId', answerController.findOne)
+
+router.use(authentication)
+router.post('/', answerController.create)
+router.patch('/:answerId/vote', answerController.vote)
+router.patch('/:answerId', answerAuthorization, answerController.update)
+router.delete('/:answerId', answerAuthorization, answerController.destroy)
+
+module.exports = router
\ No newline at end of file
diff --git a/server/routes/index.js b/server/routes/index.js
new file mode 100644
index 0000000..510b492
--- /dev/null
+++ b/server/routes/index.js
@@ -0,0 +1,11 @@
+const express = require('express')
+const router = express.Router()
+const userRouter = require('./userRoutes')
+const questionRouter = require('./questionRoutes')
+const answerRouter = require('./answerRoutes')
+
+router.use('/account', userRouter)
+router.use('/questions', questionRouter)
+router.use('/answers', answerRouter)
+
+module.exports = router
\ No newline at end of file
diff --git a/server/routes/questionRoutes.js b/server/routes/questionRoutes.js
new file mode 100644
index 0000000..be0b2f5
--- /dev/null
+++ b/server/routes/questionRoutes.js
@@ -0,0 +1,15 @@
+const express = require('express')
+const router = express.Router()
+const { questionController } = require('../controllers')
+const { authentication, questionAuthorization } = require('../middlewares/auth')
+
+router.get('/', questionController.findAll)
+router.get('/:questionId', questionController.findOne)
+router.get('/:userId/myquestions', questionController.findMine)
+router.use(authentication)
+router.post('/', questionController.create)
+router.patch('/:questionId/vote', questionController.vote)
+router.patch('/:questionId', questionAuthorization ,questionController.update)
+router.delete('/:questionId', questionAuthorization, questionController.destroy)
+
+module.exports = router
\ No newline at end of file
diff --git a/server/routes/userRoutes.js b/server/routes/userRoutes.js
new file mode 100644
index 0000000..d6371c0
--- /dev/null
+++ b/server/routes/userRoutes.js
@@ -0,0 +1,13 @@
+const express = require('express')
+const router = express.Router()
+const { userController } = require('../controllers')
+const { authentication } = require('../middlewares/auth')
+
+router.post('/register', userController.register)
+router.post('/login', userController.login),
+router.use(authentication)
+router.get('/profile', userController.getProfile)
+router.patch('/watchedTags', userController.addWatchedTags)
+router.delete('/watchedTags', userController.removeWatchedTags)
+
+module.exports = router
\ No newline at end of file